body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.start-screen,
.main-screen {
  display: none;
  flex-direction: column;
  align-items: center;
}

.start-screen {
  display: flex;
}

.winner-message {
  display: none;
  font-size: 20px;
  margin: 10px 0;
}

.stand {
  width: 120px;
  height: 20px;
  background: #333;
  border-radius: 10px;
  top: -15px;
}

canvas {
  border: 5px solid #333;
  border-radius: 50%;
  max-width: 80vw;
  max-height: 80vw;
  cursor: pointer;
}

.buttons-container,
.name-input-container {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
}

button {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

button:hover {
  background: linear-gradient(135deg, #fad0c4, #ff9a9e);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

input[type="text"] {
  padding: 8px;
  font-size: 16px;
  border: 2px solid #333;
  border-radius: 5px;
  width: 60%;
  max-width: 200px;
}

.confetti {
  position: absolute;
  top: -10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: fall linear forwards;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}
