#baloot-game-container {
  text-align: center;
  margin: 40px auto;
  background: #0a2e13;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 95%;
  max-width: 850px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}
.baloot-table {
  background: radial-gradient(circle, #166d1b, #0a2e13);
  border-radius: 12px;
  padding: 80px;
  margin-top: 20px;
  position: relative;
  min-height: 350px;
}
.player {
  position: absolute;
  font-weight: bold;
  background: #045a0b;
  border: 1px solid #3aff78;
  padding: 10px 15px;
  border-radius: 8px;
  color: #fff;
}
.player-top { top: 10px; left: 50%; transform: translateX(-50%); }
.player-left { left: 10px; top: 50%; transform: translateY(-50%); }
.player-right { right: 10px; top: 50%; transform: translateY(-50%); }
.player-bottom { bottom: 10px; left: 50%; transform: translateX(-50%); }
#cards-area { margin-top: 20px; }
.card-img {
  width: 60px;
  height: 85px;
  margin: 3px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
button {
  margin: 10px;
  background: #f9b234;
  border: none;
  color: #000;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}
