/* ✅ STEP 1 — MOBILE PERFORMANCE MODE */
@media (max-width: 768px) {
  #netflix-intro netflixintro {
    transform-origin: center;
    animation-duration: 2.8s !important;
  }

  /* Reduce zoom intensity */
  @keyframes zoom-in {
    0% { transform: scale(1); }
    100% { transform: scale(8); }
  }

  /* Kill heavy shadows */
  #netflix-intro [class*="helper-"] .effect-brush::before {
    box-shadow: none !important;
  }

  /* Disable half the fur strips */
  #netflix-intro .fur-1, #netflix-intro .fur-2, #netflix-intro .fur-3, #netflix-intro .fur-4, #netflix-intro .fur-5,
  #netflix-intro .fur-6, #netflix-intro .fur-7, #netflix-intro .fur-8, #netflix-intro .fur-9, #netflix-intro .fur-10,
  #netflix-intro .fur-11, #netflix-intro .fur-12, #netflix-intro .fur-13, #netflix-intro .fur-14, #netflix-intro .fur-15 {
    display: none !important;
  }

  /* Reduce lights */
  #netflix-intro .lamp-8, #netflix-intro .lamp-9, #netflix-intro .lamp-10, #netflix-intro .lamp-11, #netflix-intro .lamp-12,
  #netflix-intro .lamp-13, #netflix-intro .lamp-14, #netflix-intro .lamp-15, #netflix-intro .lamp-16, #netflix-intro .lamp-17,
  #netflix-intro .lamp-18, #netflix-intro .lamp-19, #netflix-intro .lamp-20, #netflix-intro .lamp-21, #netflix-intro .lamp-22,
  #netflix-intro .lamp-23, #netflix-intro .lamp-24, #netflix-intro .lamp-25, #netflix-intro .lamp-26, #netflix-intro .lamp-27, #netflix-intro .lamp-28 {
    display: none !important;
  }
}

/* 1. FORCE GPU ACCELERATION & SCOPING */
#netflix-intro,
#netflix-intro #container,
#netflix-intro netflixintro,
#netflix-intro .effect-brush,
#netflix-intro .effect-lumieres,
#netflix-intro [class*="helper-"] {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 2. MAIN CONTAINER & LAYOUT FIX */
#netflix-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  contain: layout paint style;
}

#netflix-intro .netflixintro {
  filter: drop-shadow(0 0 25px #e40913)
          drop-shadow(0 0 60px rgba(228,9,19,0.7));
}

#netflix-intro .effect-brush {
  mix-blend-mode: screen;
  filter: contrast(120%) brightness(120%);
}

#netflix-intro .effect-brush::before {
  box-shadow:
    0 0 20px #e40913,
    0 0 40px #e40913,
    0 0 80px rgba(228,9,19,0.8),
    0 0 160px rgba(228,9,19,0.6);
}

/* REMOVED GLOBAL HTML/BODY STYLES HERE */

/* SCOPED CONTAINER */
#netflix-intro #container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #000000;
  overflow: hidden;
}

#netflix-intro netflixintro {
  display: block;
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  animation-name: zoom-in;
  animation-delay: 0.5s;
  animation-duration: 3.5s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  background-size: 4000px;
  background-position: -1950px 0;
}

#netflix-intro netflixintro::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #000000;
  width: 150%;
  height: 30%;
  left: -25%;
  bottom: -27%;
  border-radius: 50%;
  z-index: 5;
  transform-origin: left center;
  background-size: 4000px;
  background-position: -1950px 0;
}

/* Letter N */
#netflix-intro netflixintro[letter="N"] {
  transform-origin: 30% center;
}

#netflix-intro netflixintro[letter="N"] .helper-1 {
  width: 19.5%;
  height: 100%;
  background-color: rgba(228, 9, 19, 0.5);
  left: 22.4%;
  top: 0;
  transform: rotate(180deg);
  animation-name: fading-lumieres-box;
  animation-duration: 2s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

#netflix-intro netflixintro[letter="N"] .helper-1 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}

#netflix-intro netflixintro[letter="N"] .helper-1 .effect-brush [class*="fur-"] {
  bottom: 0;
  height: 40%;
}

#netflix-intro netflixintro[letter="N"] .helper-3 {
  width: 19%;
  height: 150%;
  left: 40.5%;
  top: -25%;
  transform: rotate(-19.5deg);
  box-shadow: 0px 0px 35px -12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

#netflix-intro netflixintro[letter="N"] .helper-3 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
}

#netflix-intro netflixintro[letter="N"] .helper-2 {
  width: 19.5%;
  height: 100%;
  left: 57.8%;
  top: 0;
  transform: rotate(180deg);
  overflow: hidden;
}

#netflix-intro netflixintro[letter="N"] .helper-2 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

/* Letter E */
#netflix-intro netflixintro[letter="E"] {
  transform-origin: 30% center;
}

#netflix-intro netflixintro[letter="E"] .helper-1 {
  width: 19.5%;
  height: 100%;
  background-color: rgba(228, 9, 19, 0.5);
  left: 22%;
  top: 0;
  transform: rotate(180deg);
  animation-name: fading-lumieres-box;
  animation-duration: 2s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

#netflix-intro netflixintro[letter="E"] .helper-1 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}

#netflix-intro netflixintro[letter="E"] .helper-1 .effect-brush [class*="fur-"] {
  bottom: 0;
  height: 40%;
}

#netflix-intro netflixintro[letter="E"] .helper-2 {
  width: 17.5%;
  height: 50%;
  left: 38%;
  top: -49px;
  transform: rotate(270deg);
  overflow: hidden;
}

#netflix-intro netflixintro[letter="E"] .helper-2 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
}

#netflix-intro netflixintro[letter="E"] .helper-3 {
  width: 17%;
  height: 39%;
  left: 33%;
  top: 29%;
  transform: rotate(-90deg);
  box-shadow: 0px 0px 35px -12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation-name: fading-out;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

#netflix-intro netflixintro[letter="E"] .helper-3 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}

#netflix-intro netflixintro[letter="E"] .helper-4 {
  width: 17.5%;
  height: 50%;
  left: 38%;
  top: 196px;
  transform: rotate(270deg);
  overflow: hidden;
}

#netflix-intro netflixintro[letter="E"] .helper-4 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

/* Letter T */
#netflix-intro netflixintro[letter="T"] {
  transform-origin: center center;
}

#netflix-intro netflixintro[letter="T"] .helper-1 {
  width: 19.5%;
  height: 100%;
  background-color: rgba(228, 9, 19, 0.5);
  left: 38%;
  top: 0;
  transform: rotate(180deg);
  animation-name: fading-lumieres-box;
  animation-duration: 2s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

#netflix-intro netflixintro[letter="T"] .helper-1 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

#netflix-intro netflixintro[letter="T"] .helper-1 .effect-brush [class*="fur-"] {
  bottom: 0;
  height: 40%;
}

#netflix-intro netflixintro[letter="T"] .helper-2 {
  width: 17.5%;
  height: 54%;
  left: 39%;
  top: -55px;
  transform: rotate(270deg);
  overflow: hidden;
}

#netflix-intro netflixintro[letter="T"] .helper-2 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

/* Letter F */
#netflix-intro netflixintro[letter="F"] {
  transform-origin: 30% center;
}

#netflix-intro netflixintro[letter="F"] .helper-1 {
  width: 19.5%;
  height: 100%;
  background-color: rgba(228, 9, 19, 0.5);
  left: 22%;
  top: 0;
  transform: rotate(180deg);
  animation-name: fading-lumieres-box;
  animation-duration: 2s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

#netflix-intro netflixintro[letter="F"] .helper-1 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}

#netflix-intro netflixintro[letter="F"] .helper-1 .effect-brush [class*="fur-"] {
  bottom: 0;
  height: 40%;
}

#netflix-intro netflixintro[letter="F"] .helper-2 {
  width: 17.5%;
  height: 50%;
  left: 38%;
  top: -49px;
  transform: rotate(270deg);
  overflow: hidden;
}

#netflix-intro netflixintro[letter="F"] .helper-2 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.7s;
}

#netflix-intro netflixintro[letter="F"] .helper-3 {
  width: 17%;
  height: 39%;
  left: 33%;
  top: 29%;
  transform: rotate(-90deg);
  box-shadow: 0px 0px 35px -12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation-name: fading-out;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

#netflix-intro netflixintro[letter="F"] .helper-3 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

/* Letter L */
#netflix-intro netflixintro[letter="L"] {
  transform-origin: 30% center;
}

#netflix-intro netflixintro[letter="L"] .helper-1 {
  width: 19.5%;
  height: 100%;
  background-color: rgba(228, 9, 19, 0.5);
  left: 22%;
  top: 0;
  transform: rotate(180deg);
  animation-name: fading-lumieres-box;
  animation-duration: 2s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

#netflix-intro netflixintro[letter="L"] .helper-1 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
}

#netflix-intro netflixintro[letter="L"] .helper-1 .effect-brush [class*="fur-"] {
  bottom: 0;
  height: 40%;
}

#netflix-intro netflixintro[letter="L"] .helper-2 {
  width: 17.5%;
  height: 50%;
  left: 38%;
  top: 196px;
  transform: rotate(270deg);
  overflow: hidden;
}

#netflix-intro netflixintro[letter="L"] .helper-2 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}

/* Letter I */
#netflix-intro netflixintro[letter="I"] {
  transform-origin: center center;
}

#netflix-intro netflixintro[letter="I"] .helper-1 {
  width: 19.5%;
  height: 100%;
  background-color: rgba(228, 9, 19, 0.5);
  left: 38%;
  top: 0;
  transform: rotate(180deg);
  animation-name: fading-lumieres-box;
  animation-duration: 2s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

#netflix-intro netflixintro[letter="I"] .helper-1 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

#netflix-intro netflixintro[letter="I"] .helper-1 .effect-brush [class*="fur-"] {
  bottom: 0;
  height: 40%;
}

/* Letter X */
#netflix-intro netflixintro[letter="X"] {
  transform-origin: center center;
}

#netflix-intro netflixintro[letter="X"] .helper-1 {
  width: 19%;
  height: 150%;
  left: 40.5%;
  top: -25%;
  transform: rotate(-19.5deg);
  animation-name: fading-lumieres-box;
  animation-duration: 2s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

#netflix-intro netflixintro[letter="X"] .helper-1 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}

#netflix-intro netflixintro[letter="X"] .helper-1 .effect-brush [class*="fur-"] {
  bottom: 0;
  height: 40%;
}

#netflix-intro netflixintro[letter="X"] .helper-2 {
  width: 19%;
  height: 150%;
  left: 40.5%;
  top: -25%;
  transform: rotate(19.5deg);
  overflow: hidden;
}

#netflix-intro netflixintro[letter="X"] .helper-2 .effect-brush {
  animation-name: brush-moving;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

/* Helpers General */
#netflix-intro [class*="helper-"] {
  position: absolute;
}

#netflix-intro [class*="helper-"] .effect-brush {
  position: absolute;
  width: 100%;
  height: 300%;
  top: 0;
  overflow: hidden;
}

#netflix-intro [class*="helper-"] .effect-brush::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #e40913;
  width: 100%;
  height: 70%;
  /* 2. REDUCE GLOW (Fix applied here) */
  box-shadow: 0px 0px 12px 6px #e40913;
}

#netflix-intro [class*="helper-"] .effect-brush [class*="fur-"] {
  display: block;
  position: absolute;
  bottom: 10%;
  height: 30%;
}

/* Fur Gradients */
#netflix-intro [class*="helper-"] .effect-brush .fur-1 {
  left: 0%;
  width: 3.8%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 15%, rgba(0, 0, 0, 0) 81%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-2 {
  left: 3.8%;
  width: 2.8%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 10%, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-3 {
  left: 6.6%;
  width: 4.8%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 37%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-4 {
  left: 11.4%;
  width: 4%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 23%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-5 {
  left: 15.4%;
  width: 4%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 15%, rgba(0, 0, 0, 0) 86%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-6 {
  left: 19.4%;
  width: 2.5%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 27%, rgba(0, 0, 0, 0) 89%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-7 {
  left: 21.9%;
  width: 4%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 20%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-8 {
  left: 25.9%;
  width: 2%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 30%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-9 {
  left: 27.9%;
  width: 4%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 35%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-10 {
  left: 31.9%;
  width: 3.5%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 39%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-11 {
  left: 35.4%;
  width: 2%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 34%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-12 {
  left: 37.4%;
  width: 2.6%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 22%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-13 {
  left: 40%;
  width: 6%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 47%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-14 {
  left: 46%;
  width: 2%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 36%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-15 {
  left: 48%;
  width: 5.5%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 29%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-16 {
  left: 53.5%;
  width: 3%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 39%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-17 {
  left: 56.5%;
  width: 4.1%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 45%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-18 {
  left: 60.6%;
  width: 2.4%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 34%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-19 {
  left: 63%;
  width: 4%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 47%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-20 {
  left: 67%;
  width: 1.5%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 27%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-21 {
  left: 68.5%;
  width: 2.8%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 37%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-22 {
  left: 71.3%;
  width: 2.3%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 9%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-23 {
  left: 73.6%;
  width: 2.2%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 28%, rgba(0, 0, 0, 0) 92%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-24 {
  left: 75.8%;
  width: 1%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 37%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-25 {
  left: 76.8%;
  width: 2.1%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 28%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-26 {
  left: 78.9%;
  width: 4.1%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 34%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-27 {
  left: 83%;
  width: 2.5%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 21%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-28 {
  left: 85.5%;
  width: 4.5%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 39%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-29 {
  left: 90%;
  width: 2.8%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 30%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-30 {
  left: 92.8%;
  width: 3.5%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 19%, rgba(0, 0, 0, 0) 100%);
}
#netflix-intro [class*="helper-"] .effect-brush .fur-31 {
  left: 96.3%;
  width: 3.7%;
  background: linear-gradient(to bottom, #e40913 0%, #e40913 37%, rgba(0, 0, 0, 0) 100%);
}

/* Lumieres (Lights) */
#netflix-intro netflixintro .effect-lumieres {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation-name: showing-lumieres;
  animation-duration: 2s;
  animation-delay: 1.6s;
  animation-fill-mode: forwards;
}

#netflix-intro netflixintro .effect-lumieres [class*="lamp-"] {
  position: absolute;
  display: block;
  height: 100%;
  /* 2. REDUCE GLOW (Fix applied here) */
  box-shadow: 0px 0px 6px rgba(228, 9, 19, 0.6);
  background: var(--color);
}

#netflix-intro netflixintro .effect-lumieres [class*="lamp-"]::before {
  position: absolute;
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color);
  /* 2. REDUCE GLOW (Fix applied here) */
  box-shadow: 0px 0px 6px rgba(228, 9, 19, 0.6);
}

/* Manually compiled random values for lamps. 
   Original SCSS used: (random(200) / 100) + s for delays
   and percentage((random(200) / 100)) for positions.
*/

#netflix-intro .lamp-1 { --color: #ff0100; z-index: 6; left: 0.7%; width: 1%; animation-delay: 0.82s; }
#netflix-intro .lamp-1::before { left: 45%; animation-delay: 1.1s; }

#netflix-intro .lamp-2 { --color: #ffde01; left: 2.2%; width: 1.4%; animation-delay: 1.5s; }
#netflix-intro .lamp-2::before { left: 12%; animation-delay: 0.3s; }

#netflix-intro .lamp-3 { --color: #ff00cc; left: 5.8%; width: 2.1%; animation-delay: 0.4s; }
#netflix-intro .lamp-3::before { left: 78%; animation-delay: 1.8s; }

#netflix-intro .lamp-4 { --color: #04fd8f; left: 10.1%; width: 2%; animation-delay: 1.9s; }
#netflix-intro .lamp-4::before { left: 33%; animation-delay: 0.5s; }

#netflix-intro .lamp-5 { --color: #ff0100; left: 12.9%; width: 1.4%; animation-delay: 0.7s; }
#netflix-intro .lamp-5::before { left: 91%; animation-delay: 1.2s; }

#netflix-intro .lamp-6 { --color: #ff9600; left: 15.3%; width: 2.8%; animation-delay: 1.1s; }
#netflix-intro .lamp-6::before { left: 15%; animation-delay: 0.9s; }

#netflix-intro .lamp-7 { --color: #0084ff; left: 21.2%; width: 2.5%; animation-delay: 0.3s; }
#netflix-intro .lamp-7::before { left: 55%; animation-delay: 1.6s; }

#netflix-intro .lamp-8 { --color: #f84006; left: 25%; width: 2.5%; animation-delay: 1.4s; }
#netflix-intro .lamp-8::before { left: 22%; animation-delay: 0.8s; }

#netflix-intro .lamp-9 { --color: #ffc601; left: 30.5%; width: 3%; animation-delay: 0.9s; }
#netflix-intro .lamp-9::before { left: 66%; animation-delay: 1.3s; }

#netflix-intro .lamp-10 { --color: #ff4800; left: 36.3%; width: 3%; animation-delay: 1.7s; }
#netflix-intro .lamp-10::before { left: 41%; animation-delay: 0.2s; }

#netflix-intro .lamp-11 { --color: #fd0100; left: 41%; width: 2.2%; animation-delay: 0.5s; }
#netflix-intro .lamp-11::before { left: 88%; animation-delay: 1.5s; }

#netflix-intro .lamp-12 { --color: #01ffff; left: 44.2%; width: 2.6%; animation-delay: 1.3s; }
#netflix-intro .lamp-12::before { left: 5%; animation-delay: 0.7s; }

#netflix-intro .lamp-13 { --color: #ffc601; left: 51.7%; width: 0.5%; animation-delay: 1.6s; }
#netflix-intro .lamp-13::before { left: 30%; animation-delay: 0.4s; }

#netflix-intro .lamp-14 { --color: #ffc601; left: 52.1%; width: 1.8%; animation-delay: 0.2s; }
#netflix-intro .lamp-14::before { left: 70%; animation-delay: 1.9s; }

#netflix-intro .lamp-15 { --color: #0078fe; left: 53.8%; width: 2.3%; animation-delay: 1.0s; }
#netflix-intro .lamp-15::before { left: 10%; animation-delay: 1.4s; }

#netflix-intro .lamp-16 { --color: #0080ff; left: 57.2%; width: 2%; animation-delay: 0.6s; }
#netflix-intro .lamp-16::before { left: 50%; animation-delay: 0.8s; }

#netflix-intro .lamp-17 { --color: #ffae01; left: 62.3%; width: 2.9%; animation-delay: 1.8s; }
#netflix-intro .lamp-17::before { left: 85%; animation-delay: 0.3s; }

#netflix-intro .lamp-18 { --color: #ff00bf; left: 65.8%; width: 1.7%; animation-delay: 1.2s; }
#netflix-intro .lamp-18::before { left: 25%; animation-delay: 1.5s; }

#netflix-intro .lamp-19 { --color: #a601f4; left: 72.8%; width: 0.8%; animation-delay: 0.4s; }
#netflix-intro .lamp-19::before { left: 60%; animation-delay: 0.9s; }

#netflix-intro .lamp-20 { --color: #f30b34; left: 74.3%; width: 2%; animation-delay: 1.5s; }
#netflix-intro .lamp-20::before { left: 95%; animation-delay: 0.6s; }

#netflix-intro .lamp-21 { --color: #ff00bf; left: 79.8%; width: 2%; animation-delay: 0.7s; }
#netflix-intro .lamp-21::before { left: 35%; animation-delay: 1.7s; }

#netflix-intro .lamp-22 { --color: #04fd8f; left: 78.2%; width: 2%; animation-delay: 1.9s; }
#netflix-intro .lamp-22::before { left: 80%; animation-delay: 0.2s; }

#netflix-intro .lamp-23 { --color: #01ffff; left: 78.5%; width: 2%; animation-delay: 0.3s; }
#netflix-intro .lamp-23::before { left: 15%; animation-delay: 1.1s; }

#netflix-intro .lamp-24 { --color: #a201ff; left: 85.3%; width: 1.1%; animation-delay: 1.4s; }
#netflix-intro .lamp-24::before { left: 55%; animation-delay: 0.5s; }

#netflix-intro .lamp-25 { --color: #ec0014; left: 86.9%; width: 1.1%; animation-delay: 0.8s; }
#netflix-intro .lamp-25::before { left: 40%; animation-delay: 1.3s; }

#netflix-intro .lamp-26 { --color: #0078fe; left: 88.8%; width: 2%; animation-delay: 1.6s; }
#netflix-intro .lamp-26::before { left: 90%; animation-delay: 0.4s; }

#netflix-intro .lamp-27 { --color: #ff0036; left: 92.4%; width: 2.4%; animation-delay: 0.5s; }
#netflix-intro .lamp-27::before { left: 20%; animation-delay: 1.8s; }

#netflix-intro .lamp-28 { --color: #06f98c; left: 96.2%; width: 2.1%; animation-delay: 1.3s; }
#netflix-intro .lamp-28::before { left: 75%; animation-delay: 0.7s; }

/* Animation Assignments */
#netflix-intro .lamp-1, #netflix-intro .lamp-3, #netflix-intro .lamp-5, #netflix-intro .lamp-7, #netflix-intro .lamp-9, #netflix-intro .lamp-11, #netflix-intro .lamp-13, 
#netflix-intro .lamp-15, #netflix-intro .lamp-17, #netflix-intro .lamp-19, #netflix-intro .lamp-21, #netflix-intro .lamp-23, #netflix-intro .lamp-25, #netflix-intro .lamp-27 {
  animation-name: lumieres-moving-left;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

#netflix-intro .lamp-1::before, #netflix-intro .lamp-3::before, #netflix-intro .lamp-5::before, #netflix-intro .lamp-7::before, 
#netflix-intro .lamp-9::before, #netflix-intro .lamp-11::before, #netflix-intro .lamp-13::before, #netflix-intro .lamp-15::before, 
#netflix-intro .lamp-17::before, #netflix-intro .lamp-19::before, #netflix-intro .lamp-21::before, #netflix-intro .lamp-23::before, 
#netflix-intro .lamp-25::before, #netflix-intro .lamp-27::before {
  animation-name: lumieres-moving-left;
  animation-duration: 5.5s;
}

#netflix-intro .lamp-2, #netflix-intro .lamp-4, #netflix-intro .lamp-6, #netflix-intro .lamp-8, #netflix-intro .lamp-10, #netflix-intro .lamp-12, #netflix-intro .lamp-14, 
#netflix-intro .lamp-16, #netflix-intro .lamp-18, #netflix-intro .lamp-20, #netflix-intro .lamp-22, #netflix-intro .lamp-24, #netflix-intro .lamp-26, #netflix-intro .lamp-28 {
  animation-name: lumieres-moving-right;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

#netflix-intro .lamp-2::before, #netflix-intro .lamp-4::before, #netflix-intro .lamp-6::before, #netflix-intro .lamp-8::before, 
#netflix-intro .lamp-10::before, #netflix-intro .lamp-12::before, #netflix-intro .lamp-14::before, #netflix-intro .lamp-16::before, 
#netflix-intro .lamp-18::before, #netflix-intro .lamp-20::before, #netflix-intro .lamp-22::before, #netflix-intro .lamp-24::before, 
#netflix-intro .lamp-26::before, #netflix-intro .lamp-28::before {
  animation-name: lumieres-moving-right;
  animation-duration: 5.5s;
}

/* Keyframes */
@keyframes brush-moving {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

@keyframes fading-out {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes lumieres-moving-right {
  0% { transform: translate(0); }
  40% { transform: translate(-10px) scaleX(1); }
  50% { transform: translate(-60px); }
  100% { transform: translate(-120px) scaleX(3); }
}

@keyframes lumieres-moving-left {
  0% { transform: translate(0); }
  40% { transform: translate(10px) scaleX(1); }
  50% { transform: translate(60px); }
  100% { transform: translate(120px) scaleX(3); }
}

@keyframes zoom-in {
  0% { transform: scale(1); }
  /* 3. REDUCE ZOOM SCALE (Fix applied here) */
  100% { transform: scale(8); }
}

@keyframes showing-lumieres {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fading-lumieres-box {
  0% { background-color: rgba(228, 9, 19, 0.5); }
  100% { background-color: rgba(228, 9, 19, 0); }
}

/* STEP 1 — ADD FADE OUT CSS */
#netflix-intro.fade-out {
  animation: introFadeOut 0.8s ease forwards;
}

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