@font-face {
  font-family: 'Montserrat-Regular';
  src: url('./font/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mistral';
  src: url('./font/MISTRAL.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

::selection {
  background-color: #000;
  color: #EC1D31;
}

/* ============================================
   CURSEUR CUSTOM
   ============================================ */
.custom-cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #EC1D31;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  z-index: 100001;
}

.cursor-ring {
  position: fixed;
  width: 45px;
  height: 45px;
  border: 2px solid #EC1D31;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  z-index: 100000;
}

/* État hover sur éléments cliquables */
.custom-cursor.is-hovering .cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

.custom-cursor.is-hovering .cursor-ring {
  width: 60px;
  height: 60px;
  background-color: rgba(236, 29, 49, 0.1);
  border-width: 3px;
}

/* État hover sur texte */
.custom-cursor.is-text .cursor-dot {
  width: 3px;
  height: 25px;
  border-radius: 2px;
}

.custom-cursor.is-text .cursor-ring {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}

/* État pressed */
.custom-cursor.is-pressing .cursor-ring {
  transform: translate(-50%, -50%) scale(0.8);
  background-color: rgba(236, 29, 49, 0.2);
}

/* État caché (quand souris sort de la fenêtre) */
.custom-cursor.is-hidden .cursor-dot,
.custom-cursor.is-hidden .cursor-ring {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* Masquer le curseur par défaut */
body,
body * {
  cursor: none !important;
}

/* Sur mobile/tablette, ne pas afficher le curseur custom */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
  
  body,
  body * {
    cursor: auto !important;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'mongoose', sans-serif;
  background-color: #0A0A0A;
  overflow-x: hidden;
}

header {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #0A0A0A;
}

/* Empêcher le scroll quand on est dans la hero */
body.in-hero {
  overflow: hidden;
}

.entry-logo {
  width: 400px;
  height: auto;
  margin-top: 0px;
  margin-bottom: 40px;
  filter: drop-shadow(0 0 30px rgba(236, 29, 49, 0.6));
  animation: logoGlowPulse 3s ease-in-out infinite;
}

@keyframes logoGlowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(236, 29, 49, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(236, 29, 49, 0.9)) 
            drop-shadow(0 0 80px rgba(236, 29, 49, 0.4));
  }
}

.hero-section {
  width: 100%;
  height: 100vh;
  padding: 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #0A0A0A;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.image-container img {
  display: block;
  width: calc(100vw + 160px);
  max-width: none;
  height: auto;
  margin: 0 -80px;
  object-fit: cover;
}

.image-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   CARROUSEL
   ============================================ */
.carousel-row {
  position: absolute;
  width: 100%;
  overflow: hidden;
  left: 0;
}

.back-row {
  bottom: 0px;
  opacity: 1;
  z-index: 1;
  transform: translateY(40px);
}

.front-row {
  bottom: 0px;
  z-index: 2;
}

.carousel-track {
  display: flex;
  gap: 100px;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.back-row .carousel-track {
  animation: scrollLeft 140s linear infinite;
}

.front-row .carousel-track {
  animation: scrollLeft 120s linear infinite;
}

/* Pause du carrousel quand un personnage est survolé */
.carousel-row.is-paused .carousel-track,
.carousel-row:hover .carousel-track {
  animation-play-state: paused;
}

.front-row .person-card {
  margin-left: -80px;
  z-index: 2;
  --base-y: 0px;
}

.front-row .person-card:nth-child(3n+1) {
  margin-left: 0;
  --base-y: 220px;
  z-index: 3;
}

.front-row .person-card:nth-child(3n+2) {
  --base-y: 178px;
  z-index: 4;
}

.front-row .person-card:nth-child(3n) {
  --base-y: 166px;
  z-index: 2;
}

.back-row .person-card {
  margin-left: -40px;
  --base-y: 0px;
}

.back-row .person-card:nth-child(3n+1) {
  --base-y: 62px;
  margin-left: 140px;
}

.back-row .person-card:nth-child(3n+2) {
  --base-y: 68px;
}

.back-row .person-card:nth-child(3n) {
  --base-y: 80px;
}

.person-card {
  width: 700px;
  height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
  background-color: transparent;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
  transform: translateY(var(--base-y, 0px));
  pointer-events: none;
  /* Désactivé - géré par JS */
}

/* Hover géré par JS */
.person-card.is-hovered {
  transform: translateY(calc(var(--base-y, 0px) - 30px)) scale(1.08);
  z-index: 10;
}

.person-card img {
  width: 340%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

@keyframes scrollLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ============================================
   PANEL INFO PERSONNAGE
   ============================================ */
.character-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  pointer-events: none;
}

.character-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.character-info {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 550px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 20, 20, 0.85) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-left: 5px solid #EC1D31;
  padding: 50px 45px 45px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 100px rgba(236, 29, 49, 0.03);
}

.character-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('img/graf-under.svg') repeat;
  background-size: 150px;
  opacity: 0.02;
  pointer-events: none;
}

.character-info.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.character-info-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.character-info-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.character-info-close svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  stroke-width: 2;
}

.character-info .character-name {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(36px, 8vw, 48px);
  font-weight: 700;
  color: #EC1D31;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  position: relative;
}

.character-info .character-role {
  font-family: 'mongoose', sans-serif;
  font-size: 16px;
  color: #EC1D31;
  opacity: 0.8;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.character-info .character-bio {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  z-index: 9999;
  background-color: #EC1D31;
  border-radius: 50%;
  padding: 17px;
  transition: all 0.5s ease, bottom 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 60px;
  height: 60px;
  max-width: 60px;
  font-family: "mongoose", sans-serif;
  font-weight: 700;
  font-style: normal;
  outline: 7px solid #00000065;
  box-shadow: none;
}

.navbar:hover,
.navbar.open {
  padding: 20px 20px;
  width: auto;
  height: auto;
  max-width: 1000px;
  border-radius: 20px;
  background-color: #00000065;
  outline: 0px solid #00000065;
}

.burger-icon {
  /* Conteneur centré pour le SVG du logo */
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: absolute;
}

/* Si tu gardes des spans (3 traits), ils restent stylés mais cachés par défaut */
.burger-icon span {
  width: 100%;
  height: 3.5px;
  background-color: #61060f;
  border-radius: 1000px;
  display: none;
}

/* SVG du logo : garder le ratio et s'adapter au conteneur */
.burger-icon svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.navbar:hover .burger-icon,
.navbar.open .burger-icon {
  opacity: 0;
  pointer-events: none;
}

.nav-links {
  text-transform: uppercase;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  position: relative;
}

.nav-indicator {
  position: absolute;
  height: calc(100% + 16px);
  top: -8px;
  background-color: #EC1D31;
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.navbar:hover .nav-links,
.navbar.open .nav-links {
  opacity: 1;
  transition: opacity 0.3s ease 0.1s;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 26px;
  background-color: transparent;
  border-radius: 10px;
  padding: 10px 15px;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-links a:hover {
  color: #61060f;
}

/* ============================================
   BOUTON MUTE/UNMUTE
   ============================================ */
.sound-toggle {
  background-color: #EC1D31;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #61060f;
  transition: all 0.3s ease;
  flex-shrink: 0;
  opacity: 0;
  width: 0;
  overflow: hidden;
  margin: 0;
}

.navbar:hover .sound-toggle,
.navbar.open .sound-toggle {
  opacity: 1;
  width: 44px;
  height: 44px;
  margin-right: 15px;
}

.sound-toggle svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.sound-toggle .icon-sound-on {
  display: none;
}

.sound-toggle .icon-sound-off {
  display: block;
}

.sound-toggle:not(.muted) .icon-sound-on {
  display: block;
}

.sound-toggle:not(.muted) .icon-sound-off {
  display: none;
}

.sound-toggle:hover {
  color: #FFFFFF;
}

.sound-toggle:hover svg {
  transform: scale(1.1);
}

/* ============================================
   SECTIONS HORIZONTALES
   ============================================ */
.horizontal-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #101010;
}

/* Parallax layers */
.parallax-layers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.parallax-set {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.parallax-set.active {
  opacity: 1;
}

.layer-bg {
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.layer-main {
  will-change: transform;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.horizontal-track {
  display: flex;
  align-items: center;
  gap: 300px;
  height: 100vh;
  padding-left: 50vw;
  padding-right: 50vw;
  position: relative;
  will-change: transform;
  z-index: 5;
}

.track-spacer {
  flex-shrink: 0;
  width: 50vw;
  height: 1px;
}

/* ============================================
   BLOCS DE CONTENU - STYLE AFFICHES STREET
   ============================================ */

/* === TEXTURES PERSONNALISÉES === */
:root {
  --texture-1: url('img/texture-paper-1.jpg');
  --texture-2: url('img/texture-paper-2.jpg');
  --texture-3: url('img/texture-paper-3.jpg');
  --texture-4: url('img/texture-paper-4.jpg');
}

.content-block {
  flex-shrink: 0;
  width: 500px;
  padding: 45px 28px 30px;
  margin-right: 500px;
  /* Espacement équilibré entre les blocs */
  position: relative;
  z-index: 10;
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.6)) 
          drop-shadow(12px 12px 16px rgba(0, 0, 0, 0.4));
  overflow: visible;
  /* Pour que le titre puisse dépasser */
}

/* === TITRE QUI DÉPASSE === */
.content-block-title {
  position: absolute;
  top: -15px;
  left: -10px;
  font-family: 'Mistral', cursive;
  font-size: 72px;
  text-transform: uppercase;
  color: #EC1D31;
  font-style: normal;
  transform: rotate(-8deg);
  z-index: 25;
  white-space: nowrap;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
}

/* === TITRE DÉTACHÉ (hors du bloc) === */
.title-detached {
  letter-spacing: 1.5px;
  position: absolute;
  font-family: 'Mistral', cursive;
  font-size: 72px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #EC1D31;
  transform: rotate(-18deg) skewY(-15deg);
  z-index: 9999;
  white-space: nowrap;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.0);
  pointer-events: none;
  mix-blend-mode: normal;
}

/* Variations de rotation pour les titres détachés */
.content-block:nth-child(odd)~.title-detached {
  transform: rotate(-10deg) skewY(-1deg);
}

.content-block:nth-child(even)~.title-detached {
  transform: rotate(-deg) skewY(-deg);
}

.content-block:nth-child(3n)~.title-detached {
  transform: rotate(-deg) skewY(-deg);
}

/* Variation de rotation des titres */
.content-block:nth-child(odd) .content-block-title {
  transform: rotate(-12deg);
  left: -15px;
}

.content-block:nth-child(even) .content-block-title {
  transform: rotate(8deg);
  left: 5px;
  top: -18px;
}

.content-block:nth-child(3n) .content-block-title {
  transform: rotate(-6deg);
}

/* === TEXTURE 1 - Bords très déchirés === */
.content-block:nth-child(4n+1) {
  background: var(--texture-1) center/cover no-repeat;
  clip-path: polygon(3% 2%, 8% 0%, 15% 3%, 22% 1%, 30% 4%, 38% 0%, 45% 2%, 52% 0%,
      60% 3%, 68% 1%, 75% 4%, 82% 0%, 90% 2%, 95% 0%, 100% 3%,
      99% 12%, 100% 25%, 98% 40%, 100% 55%, 99% 70%, 100% 85%, 98% 95%,
      95% 100%, 88% 97%, 80% 100%, 72% 98%, 65% 100%, 58% 97%, 50% 100%,
      42% 98%, 35% 100%, 28% 97%, 20% 100%, 12% 98%, 5% 100%, 0% 97%,
      2% 85%, 0% 70%, 2% 55%, 0% 40%, 2% 25%, 0% 12%);
  --block-rotation: -2deg;
}

/* === TEXTURE 2 - Coin arraché + froissé === */
.content-block:nth-child(4n+2) {
  background: var(--texture-2) center/cover no-repeat;
  clip-path: polygon(0% 5%, 5% 0%, 70% 0%, 72% 2%, 75% 0%, 78% 3%, 82% 0%,
      100% 0%, 100% 100%,
      95% 98%, 90% 100%, 85% 97%, 80% 100%, 75% 98%, 70% 100%,
      60% 97%, 50% 100%, 40% 98%, 30% 100%, 20% 97%, 10% 100%, 0% 98%);
  --block-rotation: 1.5deg;
}

.content-block:nth-child(4n+2)::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 25%;
  transform: rotate(-10deg);
  width: 70px;
  height: 22px;
  background: rgba(200, 185, 150, 0.5);
  z-index: 20;
}

/* === TEXTURE 3 - Très abîmé, scotch visible === */
.content-block:nth-child(4n+3) {
  background: var(--texture-3) center/cover no-repeat;
  clip-path: polygon(2% 0%, 10% 3%, 20% 0%, 30% 2%, 40% 0%, 50% 3%, 60% 0%,
      70% 2%, 80% 0%, 90% 3%, 98% 0%,
      100% 8%, 98% 20%, 100% 35%, 97% 50%, 100% 65%, 98% 80%, 100% 92%,
      97% 100%, 85% 96%, 70% 100%, 55% 97%, 40% 100%, 25% 96%, 10% 100%, 0% 97%,
      3% 80%, 0% 60%, 3% 40%, 0% 20%);
  --block-rotation: -1deg;
}

.content-block:nth-child(4n+3)::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
  width: 85px;
  height: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(190, 175, 140, 0.45) 100%);
  z-index: 20;
}

/* === TEXTURE 4 - Collé direct, bords usés === */
.content-block:nth-child(4n+4) {
  background: var(--texture-4) center/cover no-repeat;
  clip-path: polygon(5% 3%, 12% 0%, 25% 2%, 40% 0%, 55% 3%, 70% 0%, 85% 2%, 95% 0%,
      100% 5%, 98% 15%, 100% 30%, 97% 50%, 100% 70%, 98% 85%, 100% 95%,
      92% 100%, 75% 97%, 55% 100%, 35% 97%, 15% 100%, 3% 97%,
      0% 90%, 3% 70%, 0% 50%, 3% 30%, 0% 10%);
  --block-rotation: 2.5deg;
}

/* Pas de scotch sur cette variation - juste collé */

/* Rotations appliquées */
.content-block:nth-child(4n+1) {
  transform: translateY(var(--base-y, 0)) rotate(-2deg);
}

.content-block:nth-child(4n+2) {
  transform: translateY(var(--base-y, 0)) rotate(1.5deg);
}

.content-block:nth-child(4n+3) {
  transform: translateY(var(--base-y, 0)) rotate(-1deg);
}

.content-block:nth-child(4n+4) {
  transform: translateY(var(--base-y, 0)) rotate(2.5deg);
}



/* Positions Y variées - les rotations sont gérées par les variations de texture */
#chapitre1 .content-block:nth-child(1) {
  --base-y: -100px;
}

#chapitre1 .content-block:nth-child(2) {
  --base-y: 80px;
}

#chapitre1 .content-block:nth-child(3) {
  --base-y: -50px;
}

#chapitre1 .content-block:nth-child(4) {
  --base-y: 120px;
}

#chapitre1 .content-block:nth-child(5) {
  --base-y: -80px;
}

#chapitre1 .content-block:nth-child(6) {
  --base-y: 60px;
}

#chapitre2 .content-block:nth-child(1) {
  --base-y: 90px;
}

#chapitre2 .content-block:nth-child(2) {
  --base-y: -70px;
}

#chapitre2 .content-block:nth-child(3) {
  --base-y: 50px;
}

#chapitre2 .content-block:nth-child(4) {
  --base-y: -130px;
}

#chapitre2 .content-block:nth-child(5) {
  --base-y: 60px;
}

#chapitre2 .content-block:nth-child(6) {
  --base-y: -90px;
}

#chapitre3 .content-block:nth-child(1) {
  --base-y: -60px;
}

#chapitre3 .content-block:nth-child(2) {
  --base-y: 100px;
}

#chapitre3 .content-block:nth-child(3) {
  --base-y: -120px;
}

#chapitre3 .content-block:nth-child(4) {
  --base-y: 40px;
}

#chapitre3 .content-block:nth-child(5) {
  --base-y: -30px;
}

#chapitre3 .content-block:nth-child(6) {
  --base-y: 110px;
}

#chapitre4 .content-block:nth-child(1) {
  --base-y: 70px;
}

#chapitre4 .content-block:nth-child(2) {
  --base-y: -90px;
}

#chapitre4 .content-block:nth-child(3) {
  --base-y: 30px;
}

#chapitre4 .content-block:nth-child(4) {
  --base-y: -60px;
}

#chapitre4 .content-block:nth-child(5) {
  --base-y: 100px;
}

#chapitre4 .content-block:nth-child(6) {
  --base-y: -40px;
}

#chapitre5 .content-block:nth-child(1) {
  --base-y: -80px;
}

#chapitre5 .content-block:nth-child(2) {
  --base-y: 60px;
}

#chapitre5 .content-block:nth-child(3) {
  --base-y: -100px;
}

#chapitre5 .content-block:nth-child(4) {
  --base-y: 80px;
}

#chapitre5 .content-block:nth-child(5) {
  --base-y: -50px;
}

#chapitre5 .content-block:nth-child(6) {
  --base-y: 120px;
}

.content-block:hover {
  filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.5)) 
          drop-shadow(10px 10px 12px rgba(0, 0, 0, 0.35));
}

.content-block h2 {
  color: #1a1a1a;
  font-size: 24px;
  margin: 0 0 15px 0;
  font-family: 'mongoose', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.content-block p {
  mix-blend-mode: normal;
  opacity: 0.9;
  color: #000000;
  font-size: 28px;
  letter-spacing: 1.5px;
  line-height: 1.6;
  margin: 0;
  font-family: 'Mistral', cursive;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  text-align: left;
}

/* Liens définitions */
.definition {
  text-decoration: none;
  background-image: url('img/graf-under.svg');
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 8px;
  padding-bottom: 4px;
  cursor: help;
  color: #61060F;
  -webkit-text-stroke-color: #61060F;
  transition: color 0.2s ease, background-image 0.2s ease;
}

.definition:hover {
  color: #EC1D31;
  background-image: url('img/graf-under-hover.svg');
}

/* ============================================
   TRANSITION RIDEAU
   ============================================ */
.curtain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9998;
  /* Juste en dessous de la navbar */
  pointer-events: none;
  overflow: hidden;
}

.curtain {
  position: absolute;
  top: 0;
  width: 51%;
  /* Légèrement plus de 50% pour éviter un gap */
  height: 100%;
  z-index: 10;
  will-change: transform;
}

.curtain-left {
  left: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, #000000 0%, #0a0a0a 100%);
}

.curtain-right {
  right: 0;
  transform: translateX(100%);
  background: linear-gradient(-90deg, #000000 0%, #0a0a0a 100%);
}

.curtain-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 15;
  opacity: 0;
  white-space: nowrap;
}

.curtain-title {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(60px, 15vw, 200px);
  color: #EC1D31;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 10px;
  text-shadow: 0 0 40px rgba(236, 29, 49, 0.5);
}

.curtain-subtitle {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(18px, 3vw, 32px);
  color: #ffffff;
  margin: 20px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  opacity: 0.8;
}

/* ============================================
   TRANSITION NAVIGATION (slide left to right)
   ============================================ */
.nav-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9998;
  pointer-events: none;
  overflow: hidden;
}

.nav-transition-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000000 0%, #0a0a0a 100%);
  transform: translateX(-100%);
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-transition-content {
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  will-change: opacity, transform;
}

.nav-transition-title {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(40px, 10vw, 120px);
  color: #EC1D31;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 0 0 40px rgba(236, 29, 49, 0.5);
}

.nav-transition-subtitle {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(16px, 2.5vw, 28px);
  color: #ffffff;
  margin: 15px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.8;
}

/* ============================================
   PLACEHOLDER
   ============================================ */
.placeholder-section {
  height: 100vh;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.placeholder-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

/* ============================================
   TRANSITION ENTRE CHAPITRES
   ============================================ */
.chapter-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9997;
  pointer-events: none;
  overflow: hidden;
}

.chapter-transition-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: scaleY(0);
  transform-origin: center center;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chapter-transition-content {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

.chapter-transition-title {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(50px, 12vw, 150px);
  color: #EC1D31;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 0 0 60px rgba(236, 29, 49, 0.6),
    0 0 120px rgba(236, 29, 49, 0.3);
  animation: none;
}

.chapter-transition-title.pulse {
  animation: chapterTitlePulse 1.5s ease-in-out infinite;
}

@keyframes chapterTitlePulse {

  0%,
  100% {
    text-shadow: 0 0 60px rgba(236, 29, 49, 0.6),
      0 0 120px rgba(236, 29, 49, 0.3);
  }

  50% {
    text-shadow: 0 0 100px rgba(236, 29, 49, 0.9),
      0 0 180px rgba(236, 29, 49, 0.5);
  }
}

.chapter-transition-subtitle {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(18px, 3vw, 36px);
  color: #ffffff;
  margin: 25px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 6px;
  opacity: 0.7;
}

/* ============================================
   BARRE DE PROGRESSION
   ============================================ */
.progress-bar-container {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}

.progress-bar-container.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.progress-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.progress-chapter-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-chapter-number {
  font-family: 'mongoose', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #EC1D31;
  text-shadow: 0 0 20px rgba(236, 29, 49, 0.5);
  letter-spacing: 2px;
}

.progress-chapter-name {
  font-family: 'mongoose', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.progress-track {
  position: relative;
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: visible;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #EC1D31 0%, #ff4757 100%);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(236, 29, 49, 0.6);
  transition: width 0.1s ease-out;
}

.progress-chapters-markers {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  z-index: 100000;
}

.progress-marker {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgb(63, 63, 63);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

.progress-marker:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%) scale(1.5);
}

/* Position des marqueurs - calibrés avec la progression (5 chapitres = 20% chacun) */
.progress-marker[data-chapter="1"] {
  left: 0%;
}

.progress-marker[data-chapter="2"] {
  left: 20%;
}

.progress-marker[data-chapter="3"] {
  left: 40%;
}

.progress-marker[data-chapter="4"] {
  left: 60%;
}

.progress-marker[data-chapter="5"] {
  left: 80%;
}

.progress-marker::before {
  content: attr(data-chapter);
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'mongoose', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-marker.active {
  background: #EC1D31;
  box-shadow: 0 0 10px rgba(236, 29, 49, 0.8);
  transform: translate(-50%, -50%) scale(1.3);
}

.progress-marker.active:hover {
  transform: translate(-50%, -50%) scale(1.5);
}

.progress-marker.active::before {
  opacity: 1;
  color: #EC1D31;
}

.progress-marker.passed {
  background: #EC1D31;
}

/* Responsive */
@media (max-width: 768px) {
  .progress-bar-container {
    top: 20px;
  }

  .progress-track {
    width: 200px;
  }

  .progress-chapter-number {
    font-size: 22px;
  }

  .progress-chapter-name {
    font-size: 12px;
  }
}

/* ============================================
   HIDE SCROLLBARS
   ============================================ */
html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none;
}

/* ============================================
   ECRAN D'ENTRÉE (Splash Screen)
   ============================================ */
.entry-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: transparent;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.entry-overlay.hidden {
  pointer-events: none;
}

.entry-content {
  height: 100vh;
  width: 100vw;  
  text-align: center;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.entry-overlay.hidden .entry-content {
  pointer-events: none;
}

.entry-title {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(80px, 20vw, 250px);
  color: #EC1D31;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 10px;
  text-shadow: 0 0 60px rgba(236, 29, 49, 0.6);
  animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {

  0%,
  100% {
    text-shadow: 0 0 60px rgba(236, 29, 49, 0.6);
  }

  50% {
    text-shadow: 0 0 100px rgba(236, 29, 49, 0.9), 0 0 150px rgba(236, 29, 49, 0.4);
  }
}

.entry-subtitle {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(18px, 4vw, 36px);
  color: #ffffff;
  margin: 20px 0 60px 0;
  text-transform: uppercase;
  letter-spacing: 8px;
  opacity: 0.7;
}

.entry-button {
  background-color: #EC1D31;
  border: none;
  border-radius: 60px;
  padding: 20px 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.entry-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.entry-button:hover::before {
  left: 100%;
}

.entry-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(236, 29, 49, 0.5);
}

.entry-button-text {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.entry-button-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
  animation: playPulse 1.5s ease-in-out infinite;
}

@keyframes playPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.entry-hint {
  font-family: 'mongoose', sans-serif;
  font-size: 14px;
  color: #ffffff;
  margin-top: 30px;
  opacity: 0.4;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* État initial : masquer carrousel et navbar quand site-locked */
body.site-locked {
  overflow: hidden !important;
  position: relative;
}

html:has(body.site-locked) {
  overflow: hidden !important;
}

body.site-locked .person-card {
  opacity: 0 !important;
}

/* Animation d'entrée de la navbar */
body.site-locked .navbar {
  opacity: 0;
  pointer-events: none;
}

/* ============================================
   BOUTON FIXE TOURNÉE
   ============================================ */
.tour-fixed-button {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #EC1D31;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 50px;
  font-family: 'mongoose', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 25px rgba(236, 29, 49, 0.4);
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  overflow: hidden;
}

.tour-fixed-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.tour-fixed-button:hover::before {
  left: 100%;
}

body:not(.site-locked) .tour-fixed-button {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: tourButtonPulse 3s ease-in-out infinite;
}

.tour-fixed-button:hover {
  padding: 12px 26px;
  box-shadow: 0 10px 40px rgba(236, 29, 49, 0.6);
}

.tour-fixed-button svg {
  width: 18px;
  height: 18px;
  animation: playPulse 1.5s ease-in-out infinite;
}

@keyframes tourButtonPulse {
  0%, 100% {
    box-shadow: 0 5px 25px rgba(236, 29, 49, 0.4);
  }
  50% {
    box-shadow: 0 5px 35px rgba(236, 29, 49, 0.7);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .tour-fixed-button {
    top: 20px;
    right: 20px;
    padding: 10px 18px;
    font-size: 12px;
  }
  
  .tour-fixed-button .tour-fixed-text {
    display: none;
  }
  
  .tour-fixed-button svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   LOGO FIXE HOME
   ============================================ */
.home-fixed-logo {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all 0.4s ease;
}

body:not(.site-locked) .home-fixed-logo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-fixed-logo svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 15px rgba(236, 29, 49, 0.4));
  transition: all 0.3s ease;
}

.home-fixed-logo:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 25px rgba(236, 29, 49, 0.6));
}

/* Responsive */
@media (max-width: 768px) {
  .home-fixed-logo {
    top: 20px;
    left: 20px;
  }
  
  .home-fixed-logo svg {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   ICÔNE CHAPITRE FIXE
   ============================================ */
.chapter-icon-fixed {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 9997;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

body:not(.site-locked) .chapter-icon-fixed {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Masquer quand on est dans la hero */
body.in-hero .chapter-icon-fixed {
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
}

.chapter-icon-fixed img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(236, 29, 49, 0.3));
  transition: filter 0.4s ease;
}

/* Animation de rotation vinyle */
@keyframes vinylSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Quand la musique joue - rotation active */
.chapter-icon-fixed.is-playing img {
  animation: vinylSpin 4s linear infinite;
}

/* Quand la musique est en pause - rotation arrêtée */
.chapter-icon-fixed.is-paused img {
  animation: vinylSpin 4s linear infinite;
  animation-play-state: paused;
}

/* Quand on scrub le vinyle */
.chapter-icon-fixed.is-scrubbing {
  transform: translateY(0) scale(1.15);
}

.chapter-icon-fixed.is-scrubbing img {
  animation: none !important;
  filter: drop-shadow(0 0 30px rgba(236, 29, 49, 0.6));
  transition: none;
}

.chapter-icon-fixed.is-changing img {
  opacity: 0;
  transform: scale(0.5) rotate(-10deg);
}

.chapter-icon-fixed:hover img {
  filter: drop-shadow(0 0 25px rgba(236, 29, 49, 0.5));
}

/* Responsive */
@media (max-width: 768px) {
  .chapter-icon-fixed {
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
  }
}

/* ============================================
   ICÔNE DANS TRANSITION CHAPITRE
   ============================================ */
.chapter-transition-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 30px;
  opacity: 0;
  transform: scale(0.5) rotate(-15deg);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 30px rgba(236, 29, 49, 0.4));
}

.chapter-transition-overlay.is-visible .chapter-transition-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.2s;
}

/* Animation pulse sur l'icône de transition */
@keyframes transitionIconPulse {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(236, 29, 49, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(236, 29, 49, 0.7));
  }
}

.chapter-transition-overlay.is-visible .chapter-transition-icon {
  animation: transitionIconPulse 1.5s ease-in-out infinite;
  animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 768px) {
  .chapter-transition-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
}

/* ============================================
   SECTION FINALE CTA TOURNÉE
   ============================================ */
.final-cta-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0A0A0A;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.final-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.final-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(236, 29, 49, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(236, 29, 49, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0A0A0A 0%, #151515 50%, #0A0A0A 100%);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
}

.final-tribute {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0 0 30px 0;
}

.final-title {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(60px, 15vw, 150px);
  color: #EC1D31;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 0.9;
  text-shadow: 0 0 80px rgba(236, 29, 49, 0.5);
  animation: finalTitleGlow 3s ease-in-out infinite;
}

@keyframes finalTitleGlow {
  0%, 100% {
    text-shadow: 0 0 80px rgba(236, 29, 49, 0.5);
  }
  50% {
    text-shadow: 0 0 120px rgba(236, 29, 49, 0.8), 0 0 200px rgba(236, 29, 49, 0.3);
  }
}

.final-subtitle {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(24px, 5vw, 42px);
  color: #ffffff;
  margin: 20px 0 40px 0;
  text-transform: uppercase;
  letter-spacing: 6px;
  opacity: 0.8;
}

.final-description {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0 auto 40px;
  max-width: 700px;
}

.final-members {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.final-members span {
  font-family: 'mongoose', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.final-members .separator {
  color: #EC1D31;
  font-size: 14px;
}

.final-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.final-cta-primary,
.final-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 60px;
  font-family: 'mongoose', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.final-cta-primary {
  background: #EC1D31;
  color: #ffffff;
  border: none;
}

.final-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.final-cta-primary:hover::before {
  left: 100%;
}

.final-cta-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(236, 29, 49, 0.5);
}

.final-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.final-cta-secondary:hover {
  border-color: #EC1D31;
  color: #EC1D31;
  transform: scale(1.05);
}

.final-cta-primary svg,
.final-cta-secondary svg {
  width: 20px;
  height: 20px;
}

.final-dates {
  font-family: 'mongoose', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta-content {
    padding: 40px 20px;
  }
  
  .final-description {
    font-size: 14px;
  }
  
  .final-members span {
    font-size: 14px;
  }
  
  .final-cta-primary,
  .final-cta-secondary {
    padding: 15px 30px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
  
  .final-dates {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */