body {
  font-family: sans-serif;
  background: linear-gradient(to bottom, #000, #222);
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 500px;
  margin: auto;
}

input, button, select {
  padding: 10px;
  margin: 5px;
  font-size: 1em;
  border-radius: 8px;
  border: none;
}

button {
  background: #ffcc00;
  cursor: pointer;
}

.controls {
  margin-bottom: 10px;
}

.wheel {
  width: 120px;
  height: 120px;
  margin: 20px auto;
  border-radius: 50%;
  background: conic-gradient(#ff4d4d, #ffcc00, #66ff66, #4da6ff, #cc66ff);
  animation: spin 2s linear infinite;
}

.pointer {
  font-size: 2em;
  color: #ffcc00;
  margin-top: -10px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#winnerDisplay {
  font-size: 1.5em;
  margin-top: 20px;
}

#goldenPlaque {
  background: gold;
  color: #000;
  font-weight: bold;
  padding: 15px;
  margin-top: 20px;
  border-radius: 10px;
  font-size: 1.5em;
}

.hidden {
  display: none;
}

.fade {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#historyList {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

#counterDisplay, #statsDisplay {
  margin-top: 10px;
  font-size: 1.2em;
  color: #ffcc00;
}
.welcome-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom right, #000, #400);
  color: gold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: fadeIn 2s ease;
  text-align: center;
}

.welcome-screen img {
  width: 150px;
  margin-bottom: 20px;
  animation: bounce 1s ease;
}

.welcome-screen h1 {
  font-size: 2em;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.welcome-screen p {
  font-size: 1.2em;
  margin-bottom: 20px;
  font-style: italic;
}

.welcome-screen button {
  padding: 10px 20px;
  font-size: 1em;
  background: gold;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.welcome-screen button:hover {
  background: #ffcc00;
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}
.admin {
  background: #111;
  border: 1px solid #444;
  padding: 10px;
  margin: 10px auto;
  max-width: 400px;
  border-radius: 10px;
  color: #ffcc00;
}