body {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 20px;
  margin: 0;
}

h1 {
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 2px 2px #00000044;
  margin-bottom: 10px;
}

.subtitle {
  color: #222;
  margin-bottom: 20px;
  font-weight: bold;
}

.choices {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.choice {
  background: #fff;
  border: 3px solid #444;
  border-radius: 15px;
  padding: 15px 25px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.choice:hover {
  transform: scale(1.2) rotate(-5deg);
  background: #ffeaa7;
}

.result-container {
  margin-top: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

#winner {
  font-size: 1.8rem;
  margin-top: 15px;
  color: #d63031;
  animation: pulse 1s infinite;
}

.scoreboard {
  margin-top: 25px;
  background: #ffffffaa;
  padding: 15px;
  border-radius: 15px;
  font-weight: bold;
  display: inline-block;
}

.controls {
  margin-top: 20px;
}

#toggle-music {
  background: #2ecc71;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}

#toggle-music:hover {
  background: #27ae60;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  .choice { font-size: 1rem; padding: 10px 18px; }
}
