body {
  font-family: Arial, sans-serif;
  background-color: #f0f8ff; /* Couleur fun */
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  color: #ff4500; /* Orange fun */
}

/* Boutons de choix */
.choice-btn {
  font-size: 1.5em;
  margin: 10px;
  padding: 10px 20px;
  background-color: #4caf50; /* Vert ludique */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease, transform 0.05s ease, opacity 0.2s ease;
}

.choices .choice-btn:hover:not(:disabled) {
  background-color: #45a049;
}

.choices .choice-btn:active:not(:disabled) {
  transform: translateY(1px);
}

/* Pendant le tour: boutons désactivés et masqués si non sélectionnés */
.choices .choice-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.choice-btn.hidden { display: none !important; }
.choice-btn.selected {
  outline: 2px solid #666;
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05) inset;
}

.result {
  font-size: 1.2em;
  margin: 20px 0;
  color: #333;
}

#score {
  font-weight: bold;
  color: #ff4500;
}

/* Animation de l'ordi */
.animation {
  font-size: 2em;
  margin: 20px 0;
  color: #ff4500;
  animation: pulse 0.5s infinite; /* Effet de pulsation */
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}