body {
  font-family: var(--font-family);
  background: var(
    --bg
  ); /* Utiliser la variable du thème au lieu de --dark-bg */
  color: var(--light); /* Utiliser la variable du thème au lieu de --white */
  line-height: 1.6;
}

/* movie-detail.css */
.movie-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--bg);
  color: var(--light);
}

.movie-banner {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.movie-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

/* Ajoutez ici tous les autres styles de la page qui utilisent des variables CSS */

/* Styles pour les horaires */
.showtimes-container {
  margin-bottom: 20px;
}

.showtime-card {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 8px;
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-surface-2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.showtime-card:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--glow);
}
.showtime-version {
  font-size: 0.8rem;
  background: var(--primary); /* Utiliser la couleur primaire du thème */
  color: white; /* Ou une variable pour le texte sur fond primaire */
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 3px;
  font-weight: 600;
  transition: var(
    --transition
  ); /* Ajouter une transition pour les changements de thème */
}

/* Style au survol */
.showtime-card:hover .showtime-version {
  background: white; /* Inversé au survol */
  color: var(--primary); /* Inversé au survol */
}
/* etc. */
