body {
  font-family: Arial;
  margin: 0;
  background: radial-gradient(circle at top, #1b1f2a, #0b0d12);
  color: white;
  text-align: center;
}

h1 {
  margin: 10px;
  font-size: 20px;
}

/* login/admin */
#login, #admin {
  margin: 8px;
}

input {
  padding: 6px;
  border-radius: 6px;
  border: none;
  margin: 3px;
  background: #222;
  color: white;
}

button {
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  background: #3a7bd5;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  transform: scale(1.05);
  background: #5a9bff;
}

/* scoreboard */
#players {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  padding: 10px;
}

.player {
  background: #1e2230;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.player span {
  display: block;
  margin: 5px 0;
  color: #00e5ff;
  font-weight: bold;
}

/* wheel button */
#wheelBtn {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #ff4d6d;
  z-index: 999;
}

/* wheel overlay */
#wheelOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

#wheelBox {
  background: #1c1f2a;
  padding: 20px;
  border-radius: 12px;
  width: 320px;
}

#wheelResult {
  margin: 15px 0;
  min-height: 60px;
  color: #00e5ff;
}