body {
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
  background-size: cover;
  background-position: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
}

h1 {
  text-align: center;
  color: #2c3e50;
}

.scene-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}

.choices {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #3498db;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s;
}

.choice:hover {
  background: #2980b9;
}

.choice img {
  width: 200px;
  margin: 10px;
}

/* Animation pour les transitions */
.choice {
  transform: scale(1);
  transition: transform 0.2s;
}

.choice:hover {
  transform: scale(1.05);
}

/* Style pour les choix désactivés */
.choice[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Style pour le texte descriptif */
p {
  line-height: 1.6;
  font-size: 1.1em;
  color: #34495e;
  text-align: justify;
  margin: 20px 0;
}

/* Style pour l'audio player */
audio {
  visibility: hidden;
}

/* Animation pour les images au chargement */
.scene-image {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

