
/* Hero Title - Modern & Magnificent */
.hero-title {
  font-size: clamp(32px, 4.5vw, 64px); /* Ajusté pour le nouveau texte */
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-24);
  margin-top: var(--space-128);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 22;
  text-shadow: 0 20px 40px rgba(0,0,0,0.5);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
  word-break: normal;
  hyphens: none;
}

/* Texte MRR 2.0 en dégradé lumineux - Utilise les variables du thème */
.text-gradient-purple {
  background: linear-gradient(
    to right, 
    var(--purple-500) 0%, 
    var(--purple-300) 25%, 
    #ffffff 50%, 
    var(--purple-300) 75%, 
    var(--purple-500) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shine-flow 4s linear infinite;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

/* Lueur derrière le texte MRR 2.0 - Utilise les variables rgba du thème */
.text-gradient-purple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--purple-500-rgba-3) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

/* Texte avec effet liquide animé (business) */
.text-highlight-animated {
  color: #ffffff; /* Blanc simple pour "business" pour ne pas voler la vedette au MRR */
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Mise en avant légère IA */
.ai-highlight {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  color: #fff;
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-shadow: 0 0 15px var(--purple-500-rgba-5);
}

/* Badge année futuriste */
.year-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 8px;
  border-radius: 8px;
  color: #fff;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  margin-left: 6px;
  margin-right: 6px;
  box-shadow: 0 0 20px var(--purple-500-rgba-2);
  backdrop-filter: blur(5px);
  transform: translateY(-4px);
}

.year-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: badge-shine 3s infinite;
}

/* --- NOUVELLE SECTION HERO UI --- */

/* Wrapper CTA avec garantie */
.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  margin-bottom: var(--space-24);
}

/* Effet Glow sur le bouton principal */
.btn-glow-pulse {
  position: relative;
  box-shadow: 0 0 20px var(--purple-500-rgba-4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: btn-pulse-glow 3s infinite;
}

@keyframes btn-pulse-glow {
  0% { box-shadow: 0 0 20px var(--purple-500-rgba-4); transform: scale(1); }
  50% { box-shadow: 0 0 35px var(--purple-500-rgba-6); transform: scale(1.02); }
  100% { box-shadow: 0 0 20px var(--purple-500-rgba-4); transform: scale(1); }
}

/* Texte de garantie sous les boutons */
.hero-cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  opacity: 0.8;
  margin-top: 8px;
}

@keyframes shine-flow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes badge-shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

/* Media queries pour différents écrans */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px; /* Taille optimisée pour mobile */
    margin-top: var(--space-96);
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 16px;
    padding: 0 var(--space-16);
    line-height: 1.6;
  }
}

/* Sur les grands écrans, limiter la largeur comme sur un 14 pouces */
@media (min-width: 1400px) {
  .hero-title {
    max-width: 1200px; /* Force la largeur d'un écran 14" standard */
    font-size: 64px; /* Taille maximale fixe */
  }
  
  .hero-subtitle {
    max-width: 800px; /* Limite la largeur du sous-titre */
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
  }
}

/* Sur les très grands écrans (type iMac 27"), on garde la configuration 14" */
@media (min-width: 1920px) {
  .hero-title {
    font-size: 64px; /* Ne grandit plus */
    max-width: 1200px; /* Reste limité en largeur */
  }
}

/* --- HERO VIDEO SECTION --- */

/* Video Bridge Badge */
.hero-video-bridge {
  display: flex;
  justify-content: center;
  margin: var(--space-32) 0 var(--space-16) 0;
}

.video-bridge-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-12);
  background: rgba(30, 30, 35, 0.6); /* Plus transparent */
  backdrop-filter: blur(20px); /* Flou plus intense */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Lumière zénithale */
  border-radius: 100px;
  padding: 5px 24px 5px 5px;
  font-size: 15px;
  color: #ffffff;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.video-bridge-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, var(--purple-500-rgba-1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.video-bridge-badge:hover {
  background: rgba(40, 40, 45, 0.7);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px var(--purple-500-rgba-2); /* Lueur violette au survol */
}

.video-bridge-badge:hover::before {
  opacity: 1;
}

.video-bridge-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--purple-500) 0%, var(--purple-600) 100%);
  border-radius: 50%;
  color: white;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
}

/* Cercle de pulse subtil derrière l'icône */
.video-bridge-icon-container::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid var(--purple-500);
  opacity: 0.3;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

.video-bridge-text {
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Video Container - Sort du cadre */
.hero-video-container {
  margin: 0 auto 0 auto; /* Suppression de la marge basse */
  max-width: 1200px;
  width: 100%;
  padding: 0 var(--space-24);
  position: relative;
  z-index: 30; /* Au-dessus de la section suivante */
  transform: translateY(80px); /* Déplace la vidéo vers le bas pour chevaucher */
}

/* Ajustement pour la section suivante pour éviter le chevauchement du contenu */
.hero + .section,
#methode {
  padding-top: 160px !important; /* Espace pour la vidéo qui déborde */
}

.hero-video-section {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* Ratio 16:9 pour format horizontal */
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid var(--purple-400-rgba-15);
  background: rgba(19, 19, 26, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); /* Ombre plus prononcée */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* Indicateur de scroll - Design Award Mouse Style */
.hero-scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: var(--space-24);
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 25;
  height: 64px; /* Espace réservé pour l'animation */
}

.scroll-indicator-track {
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  position: relative;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.scroll-indicator-track:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 30px var(--purple-400-rgba-2);
  transform: translateY(-2px);
}

.hero-scroll-indicator:hover .scroll-indicator-track {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 30px var(--purple-400-rgba-2);
}

.scroll-indicator-dot {
  width: 4px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  animation: scroll-wheel 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  pointer-events: none; /* Le dot ne bloque pas les clics sur le track */
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* Responsive pour le débordement */
@media (max-width: 768px) {
  .hero-video-container {
    transform: translateY(40px); /* Moins de décalage sur mobile */
    padding: 0 var(--space-16);
  }
  
  .hero + .section,
  #methode {
    padding-top: 100px !important;
  }
}

.hero-video-section:hover {
  border-color: var(--purple-400-rgba-4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}

.hero-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  touch-action: none;
  background-color: rgba(19, 19, 26, 0.95);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Overlay Card for First Play */
.hero-overlay-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 420px;
  background: rgba(15, 15, 20, 0.85);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  z-index: 20;
  box-shadow: 
    0 0 0 1000px rgba(0, 0, 0, 0.6),
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 30px var(--purple-400-rgba-05);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Adaptation Mobile de la Carte Overlay */
@media (max-width: 768px) {
  .hero-overlay-card {
    /* Approche différente : utiliser left/right au lieu de width avec transform */
    left: 15% !important;
    right: 15% !important;
    width: auto !important;
    max-width: none !important;
    max-height: 70vh !important;
    height: auto;
    top: 50% !important;
    transform: translateY(-50%) !important; /* Seulement translateY, pas translateX */
    padding: 10px 8px !important;
    gap: 6px !important;
    border-radius: 10px !important;
    background: rgba(15, 15, 20, 0.92) !important;
    overflow: hidden;
  }
  
  .hero-overlay-text-top {
    font-size: 11px; /* Texte réduit à 11px */
    line-height: 1.2;
    margin: 0;
  }
  
  .hero-overlay-icon {
    margin: 0;
  }
  
  .hero-overlay-icon svg {
    width: 20px; /* Icône encore plus réduite */
    height: 20px;
  }
  
  .hero-overlay-text-bottom {
    font-size: 10px; /* Texte encore plus petit */
    line-height: 1.2;
    opacity: 0.9;
    margin: 0;
  }
}

.hero-overlay-card.visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6), 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px var(--purple-400-rgba-05); border-color: var(--purple-400-rgba-2); }
  50% { box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6), 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px var(--purple-400-rgba-1); border-color: var(--purple-400-rgba-4); }
  100% { box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6), 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px var(--purple-400-rgba-05); border-color: var(--purple-400-rgba-2); }
}

.hero-overlay-card:hover {
  transform: translate(-50%, -50%) scale(1.02);
  background: rgba(20, 20, 28, 0.9);
}

@media (max-width: 768px) {
  .hero-overlay-card:hover {
    transform: translateY(-50%) scale(1.02) !important; /* Adapter le hover pour mobile */
  }
}

.hero-overlay-text-top {
  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.hero-overlay-icon {
  color: white;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
  transition: transform 0.3s ease;
}

.hero-overlay-card:hover .hero-overlay-icon {
  transform: scale(1.1) rotate(-5deg);
}

.hero-overlay-text-bottom {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.hero-overlay-card:hover .hero-overlay-text-bottom {
  color: white;
}

.hero-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  background: rgba(19, 19, 26, 0.3);
  z-index: 2;
}

.hero-play-pause-button,
.hero-sound-button,
.hero-fullscreen-button {
  position: absolute;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--purple-400-rgba-1), var(--purple-400-rgba-05), transparent);
  border: 1px solid var(--purple-400-rgba-2);
  backdrop-filter: blur(4px);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 1;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: none;
  /* Forcer la couleur du texte à blanc pour que currentColor fonctionne correctement */
  color: #ffffff !important;
}

.hero-play-pause-button {
  bottom: 16px;
  left: var(--space-16);
  top: auto;
}

.hero-sound-button {
  bottom: 16px;
  left: calc(var(--space-16) + 48px); /* À droite du bouton play (40px + 8px gap) */
  top: auto;
}

.hero-fullscreen-button {
  bottom: 16px;
  right: var(--space-16);
  top: auto;
}

.hero-play-pause-button:hover,
.hero-sound-button:hover,
.hero-fullscreen-button:hover {
  border-color: var(--purple-400-rgba-4);
  background: linear-gradient(to right, var(--purple-400-rgba-2), var(--purple-400-rgba-1), transparent);
  transform: none;
  opacity: 1;
  box-shadow: 0 0 15px var(--purple-400-rgba-1);
}

.hero-play-pause-button.playing {
  opacity: 0.8;
}

/* Icon styling unified */
.hero-play-icon,
.hero-pause-icon,
.hero-sound-on-icon,
.hero-sound-off-icon,
.hero-fullscreen-enter-icon,
.hero-fullscreen-exit-icon {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
  object-fit: contain;
  opacity: 0.9;
  /* Forcer toutes les icônes à être blanches */
  fill: #ffffff !important;
  stroke: #ffffff !important;
  color: #ffffff !important;
}

  .hero-play-pause-button:hover .hero-play-icon,
  .hero-play-pause-button:hover .hero-pause-icon,
  .hero-sound-button:hover .hero-sound-on-icon,
  .hero-sound-button:hover .hero-sound-off-icon,
  .hero-fullscreen-button:hover .hero-fullscreen-enter-icon,
  .hero-fullscreen-button:hover .hero-fullscreen-exit-icon {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--purple-400-rgba-4));
    /* Maintenir le blanc au survol */
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
  }

/* Specific icon adjustments */
.hero-sound-icon-wrapper,
.hero-fullscreen-icon-wrapper {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-fullscreen-enter-icon,
.hero-fullscreen-exit-icon {
  stroke: #ffffff !important;
  fill: #ffffff !important;
  color: #ffffff !important;
}

.hero-fullscreen-button:hover .hero-fullscreen-enter-icon,
.hero-fullscreen-button:hover .hero-fullscreen-exit-icon {
  stroke: #ffffff !important;
  fill: #ffffff !important;
  color: #ffffff !important;
}

/* Barre de progression */
.hero-progress-container {
  position: absolute;
  bottom: 24px; /* Centré verticalement par rapport aux boutons de 40px (16px + (40-24)/2) */
  left: calc(var(--space-16) + 96px); /* Après les deux boutons (16px + 40px play + 8px gap + 40px son + 8px gap) */
  right: calc(var(--space-16) + 48px); /* Laisse la place au bouton fullscreen (40px + 8px gap) */
  width: auto;
  height: 24px; /* Plus épais pour le conteneur style input */
  background: linear-gradient(to right, var(--purple-400-rgba-1), var(--purple-400-rgba-05), transparent);
  border: 1px solid var(--purple-400-rgba-2);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  z-index: 5;
  cursor: default; /* Non cliquable */
  pointer-events: none; /* Non interactif */
  transition: border-color 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0 4px;
}

.hero-progress-container:hover {
  border-color: var(--purple-400-rgba-4);
  height: 24px; /* Reste fixe */
}

.hero-progress-bar {
  height: 8px; /* Barre interne plus épaisse */
  background: linear-gradient(to right, var(--purple-500), var(--purple-500));
  width: 0%;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--purple-500-rgba-3);
  transition: width 0.1s linear;
}

.hero-progress-bar::after {
  content: '';
  position: absolute;
  right: -9px; /* Centré sur le bout (18/2) */
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--purple-500);
  border-radius: 50%;
  border: 1px solid var(--purple-400-rgba-2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 1; /* Toujours visible comme dans l'app */
}

.hero-progress-container:hover .hero-progress-bar::after {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 15px var(--purple-500-rgba-4), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-play-pause-button,
  .hero-sound-button,
  .hero-fullscreen-button {
    width: 40px;
    height: 40px;
    /* Utiliser les variables CSS du thème */
    background: linear-gradient(to right, var(--purple-400-rgba-1), var(--purple-400-rgba-05), transparent) !important;
    border: 1px solid var(--purple-400-rgba-2) !important;
  }
  
  .hero-play-pause-button:hover,
  .hero-sound-button:hover,
  .hero-fullscreen-button:hover {
    border-color: var(--purple-400-rgba-4) !important;
    background: linear-gradient(to right, var(--purple-400-rgba-2), var(--purple-400-rgba-1), transparent) !important;
  }
  
  /* Utiliser les variables CSS du thème pour la barre de progression */
  .hero-progress-container {
    background: linear-gradient(to right, var(--purple-400-rgba-1), var(--purple-400-rgba-05), transparent) !important;
    border: 1px solid var(--purple-400-rgba-2) !important;
  }
  
  .hero-progress-bar {
    background: linear-gradient(to right, var(--purple-500), var(--purple-500)) !important;
  }
  
  .hero-progress-bar::after {
    background: var(--purple-500) !important;
    border: 1px solid var(--purple-400-rgba-2) !important;
  }
  
  .hero-play-pause-button {
    bottom: 12px;
    left: var(--space-12);
    top: auto;
  }
  
  .hero-sound-button {
    bottom: 12px;
    left: calc(var(--space-12) + 48px);
    top: auto;
  }
  
  .hero-fullscreen-button {
    bottom: 12px;
    right: var(--space-12);
    top: auto;
  }
  
  .hero-progress-container {
      left: calc(var(--space-12) + 96px);
      right: calc(var(--space-12) + 48px);
      bottom: 20px;
  }
  
  /* Forcer toutes les icônes des contrôles vidéo à être blanches sur mobile */
  .hero-play-icon,
  .hero-pause-icon,
  .hero-sound-on-icon,
  .hero-sound-off-icon,
  .hero-fullscreen-enter-icon,
  .hero-fullscreen-exit-icon {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
  }
  
  .hero-play-pause-button:hover .hero-play-icon,
  .hero-play-pause-button:hover .hero-pause-icon,
  .hero-sound-button:hover .hero-sound-on-icon,
  .hero-sound-button:hover .hero-sound-off-icon,
  .hero-fullscreen-button:hover .hero-fullscreen-enter-icon,
  .hero-fullscreen-button:hover .hero-fullscreen-exit-icon {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
  }
  
  .hero-play-icon,
  .hero-pause-icon,
  .hero-sound-on-icon,
  .hero-sound-off-icon,
  .hero-fullscreen-enter-icon,
  .hero-fullscreen-exit-icon {
    width: 20px;
    height: 20px;
  }
  
  .video-bridge-badge {
    font-size: 12px;
    padding: 8px 12px;
    width: 95%;
    max-width: none;
    flex-direction: column; /* Empiler verticalement sur mobile */
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    height: auto;
    min-height: auto;
  }
  
  .video-bridge-icon-container {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  
  .video-bridge-icon-container svg {
    width: 14px;
    height: 14px;
  }

  .video-bridge-text {
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
    padding: 0 4px;
  }
}
