body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle, #2c2c2c, #111);
  color: white;
  text-align: center;
}

/* SCREENS */
.screen {
  display: none;
  min-height: 100vh;
  padding: 20px;
}
.screen.active {
  display: block;
}

/* BUTTONS */
button {
  padding: 10px 18px;
  margin: 8px;
  font-size: 16px;
  cursor: pointer;
  background: #0b8457;
  border: none;
  border-radius: 6px;
  color: white;
}
button:hover {
  background: #0ea371;
}

/* INPUTS */
input {
  padding: 8px;
  font-size: 16px;
  width: 160px;
  margin: 10px;
}

/* HANDS */
.hand {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 20px;
}

/* CARDS */
.card {
  width: 60px;
  height: 90px;
  background: white;
  color: black;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
}

/* SELECTED CARD (for Poker discard) */
.card.selected {
  border: 3px solid yellow;
}

/* MENU */
.menu-buttons {
  margin: 20px 0;
}

/* BROOM */
.broom-area {
  margin-top: 30px;
}
#broom {
  width: 120px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* HAND SECTION */
.hand-section h3 {
  margin-bottom: 5px;
}

/* CONTROLS */
.controls {
  margin: 10px 0;
}
