﻿:root {
    --primary-color: #ff9a9e;
    --secondary-color: #fad0c4;
    --accent-color: #ffecd2;
    --text-color: #4a4a4a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Mali', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Screens */
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    transition: opacity 1s ease;
}

.screen.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.screen.active {
    opacity: 1;
    pointer-events: all;
    display: flex;
}

/* Intro Screen */
#intro-screen {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    z-index: 100;
}

/* Password Screen */
#password-screen {
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
    z-index: 200;
}

.password-container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.password-title {
    font-family: var(--font-body);
    color: #4a4a4a;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

#password-input {
    padding: 10px 15px;
    font-size: 1.2rem;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    width: 200px;
    text-align: center;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

#password-input:focus {
    border-color: #ff9a9e;
}

#btn-check-password {
    padding: 10px 25px;
    font-size: 1.1rem;
    background: #ff9a9e;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.3s;
}

#btn-check-password:hover {
    background: #ff6b6b;
}

.error-message {
    color: #ff5252;
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 1;
    transition: opacity 0.3s;
}

.error-message.hidden {
    opacity: 0;
}

/* Love Question */
.love-container {
    text-align: center;
    z-index: 101;
    transition: opacity 0.5s ease;
}

.love-container.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.love-question {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

button {
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-love {
    background: #ff6b6b;
    color: white;
}

.btn-love:hover {
    transform: scale(1.1);
    background: #ff5252;
}

.btn-no-love {
    background: #fff;
    color: #ff6b6b;
}

.btn-no-love:hover {
    background: #f0f0f0;
}

/* Gift Box */
.gift-container {
    text-align: center;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.gift-container.hidden {
    display: none;
    opacity: 0;
}

.gift-box {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    animation: float 3s ease-in-out infinite;
}

.box {
    width: 100%;
    height: 100%;
    background: #ff6b6b;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.lid {
    width: 110%;
    height: 25%;
    background: #ff5252;
    position: absolute;
    top: -10%;
    left: -5%;
    border-radius: 5px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.ribbon {
    position: absolute;
    width: 20px;
    height: 100%;
    background: #ffd700;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.lid::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 100%;
    background: #ffd700;
    left: 50%;
    transform: translateX(-50%);
}

.gift-container:hover .gift-box {
    animation: shake 0.5s infinite;
}

.gift-container.open .lid {
    transform: translateY(-60px) rotate(-10deg);
}

.tap-text {
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

/* Main Content */
#main-content {
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

#main-content.active {
    display: block;
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    color: #fff;
}

/* Gallery */
.gallery {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.photo-card {
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(var(--rotation, 0deg));
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
}

.photo-card:nth-child(1) {
    --rotation: -3deg;
}

.photo-card:nth-child(2) {
    --rotation: 2deg;
}

.photo-card:nth-child(3) {
    --rotation: -1deg;
}

.img-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.photo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* Message Card */
.message-card {
    max-width: 600px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.card-inner h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.card-inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

footer {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0) rotate(var(--rotation, 0deg));
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shake {
    animation: shake 0.5s;
}

/* Music Toggle */
.music-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.music-toggle:hover {
    transform: scale(1.1);
    background: white;
}

.music-toggle.hidden {
    display: none;
}

/* Music Player Screen */
#music-player-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    color: white;
    overflow: hidden;
}

.player-container {
    width: 100%;
    max-width: 350px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.player-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-icon {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.album-art-container {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 20px 0;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-info {
    text-align: center;
    width: 100%;
}

.song-info h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.song-info p {
    font-size: 1rem;
    opacity: 0.7;
}

.progress-container {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    appearance: none;
    outline: none;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.6;
}

.controls {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 10px 0;
}

.btn-control {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.btn-control:active {
    transform: scale(0.9);
}

.btn-control.sm svg {
    opacity: 0.8;
}

.btn-control.lg svg {
    width: 64px;
    height: 64px;
}

.volume-control {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    appearance: none;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

/* Netflix Intro Animation */
#netflix-intro-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #000000;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

#netflix-intro-container.hidden {
    opacity: 0;
    pointer-events: none;
}

#netflix-intro-container 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-container 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;
}

#netflix-intro-container netflixintro[letter=N] {
    transform-origin: 30% center;
}

#netflix-intro-container 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-container 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-container netflixintro[letter=N] .helper-1 .effect-brush [class*=fur-] {
    bottom: 0;
    height: 40%;
}

#netflix-intro-container 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-container netflixintro[letter=N] .helper-3 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
}

#netflix-intro-container netflixintro[letter=N] .helper-2 {
    width: 19.5%;
    height: 100%;
    left: 57.8%;
    top: 0;
    transform: rotate(180deg);
    overflow: hidden;
}

#netflix-intro-container netflixintro[letter=N] .helper-2 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

#netflix-intro-container netflixintro[letter=E] {
    transform-origin: 30% center;
}

#netflix-intro-container 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-container 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-container netflixintro[letter=E] .helper-1 .effect-brush [class*=fur-] {
    bottom: 0;
    height: 40%;
}

#netflix-intro-container netflixintro[letter=E] .helper-2 {
    width: 17.5%;
    height: 50%;
    left: 38%;
    top: -49px;
    transform: rotate(270deg);
    overflow: hidden;
}

#netflix-intro-container netflixintro[letter=E] .helper-2 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
}

#netflix-intro-container 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-container netflixintro[letter=E] .helper-3 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
}

#netflix-intro-container netflixintro[letter=E] .helper-4 {
    width: 17.5%;
    height: 50%;
    left: 38%;
    top: 196px;
    transform: rotate(270deg);
    overflow: hidden;
}

#netflix-intro-container netflixintro[letter=E] .helper-4 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
    animation-delay: 0.5s;
}

#netflix-intro-container netflixintro[letter=T] {
    transform-origin: center center;
}

#netflix-intro-container 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-container netflixintro[letter=T] .helper-1 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

#netflix-intro-container netflixintro[letter=T] .helper-1 .effect-brush [class*=fur-] {
    bottom: 0;
    height: 40%;
}

#netflix-intro-container netflixintro[letter=T] .helper-2 {
    width: 17.5%;
    height: 54%;
    left: 39%;
    top: -55px;
    transform: rotate(270deg);
    overflow: hidden;
}

#netflix-intro-container netflixintro[letter=T] .helper-2 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

#netflix-intro-container netflixintro[letter=F] {
    transform-origin: 30% center;
}

#netflix-intro-container 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-container 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-container netflixintro[letter=F] .helper-1 .effect-brush [class*=fur-] {
    bottom: 0;
    height: 40%;
}

#netflix-intro-container netflixintro[letter=F] .helper-2 {
    width: 17.5%;
    height: 50%;
    left: 38%;
    top: -49px;
    transform: rotate(270deg);
    overflow: hidden;
}

#netflix-intro-container netflixintro[letter=F] .helper-2 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
}

#netflix-intro-container 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-container netflixintro[letter=F] .helper-3 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

#netflix-intro-container netflixintro[letter=L] {
    transform-origin: 30% center;
}

#netflix-intro-container 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-container 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-container netflixintro[letter=L] .helper-1 .effect-brush [class*=fur-] {
    bottom: 0;
    height: 40%;
}

#netflix-intro-container netflixintro[letter=L] .helper-2 {
    width: 17.5%;
    height: 50%;
    left: 38%;
    top: 196px;
    transform: rotate(270deg);
    overflow: hidden;
}

#netflix-intro-container netflixintro[letter=L] .helper-2 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
}

#netflix-intro-container netflixintro[letter=I] {
    transform-origin: center center;
}

#netflix-intro-container 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-container netflixintro[letter=I] .helper-1 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

#netflix-intro-container netflixintro[letter=I] .helper-1 .effect-brush [class*=fur-] {
    bottom: 0;
    height: 40%;
}

#netflix-intro-container netflixintro[letter=X] {
    transform-origin: center center;
}

#netflix-intro-container 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-container 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-container netflixintro[letter=X] .helper-1 .effect-brush [class*=fur-] {
    bottom: 0;
    height: 40%;
}

#netflix-intro-container netflixintro[letter=X] .helper-2 {
    width: 19%;
    height: 150%;
    left: 40.5%;
    top: -25%;
    transform: rotate(19.5deg);
    overflow: hidden;
}

#netflix-intro-container netflixintro[letter=X] .helper-2 .effect-brush {
    animation-name: brush-moving;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

#netflix-intro-container netflixintro [class*=helper-] {
    position: absolute;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-brush {
    position: absolute;
    width: 100%;
    height: 300%;
    top: 0;
    overflow: hidden;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-brush::before {
    display: block;
    content: "";
    position: absolute;
    background-color: #e40913;
    width: 100%;
    height: 70%;
    box-shadow: 0px 0px 29px 24px #e40913;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-brush [class*=fur-] {
    display: block;
    position: absolute;
    bottom: 10%;
    height: 30%;
}

#netflix-intro-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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-container netflixintro [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%);
}

#netflix-intro-container netflixintro [class*=helper-] .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-container netflixintro [class*=helper-] .effect-lumieres [class*=lamp-] {
    position: absolute;
    display: block;
    height: 100%;
    box-shadow: 0px 0px 10px 0px rgba(228, 9, 19, 0.75);
    background: var(--color);
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres [class*=lamp-]::before {
    position: absolute;
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color);
    box-shadow: 0px 0px 10px 0px rgba(228, 9, 19, 0.75);
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-1 {
    --color: #ff0100;
    z-index: 6;
    left: 0.7%;
    width: 1%;
    animation-delay: 1.47s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-1::before {
    left: 189%;
    animation-delay: 1.28s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-2 {
    --color: #ffde01;
    left: 2.2%;
    width: 1.4%;
    animation-delay: 1.49s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-2::before {
    left: 154%;
    animation-delay: 0.96s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-3 {
    --color: #ff00cc;
    left: 5.8%;
    width: 2.1%;
    animation-delay: 0.49s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-3::before {
    left: 96%;
    animation-delay: 1.59s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-4 {
    --color: #04fd8f;
    left: 10.1%;
    width: 2%;
    animation-delay: 0.38s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-4::before {
    left: 23%;
    animation-delay: 0.42s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-5 {
    --color: #ff0100;
    left: 12.9%;
    width: 1.4%;
    animation-delay: 0.45s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-5::before {
    left: 192%;
    animation-delay: 0.22s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-6 {
    --color: #ff9600;
    left: 15.3%;
    width: 2.8%;
    animation-delay: 0.59s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-6::before {
    left: 114%;
    animation-delay: 1.93s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-7 {
    --color: #0084ff;
    left: 21.2%;
    width: 2.5%;
    animation-delay: 1s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-7::before {
    left: 163%;
    animation-delay: 0.89s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-8 {
    --color: #f84006;
    left: 25%;
    width: 2.5%;
    animation-delay: 1.47s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-8::before {
    left: 113%;
    animation-delay: 0.3s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-9 {
    --color: #ffc601;
    left: 30.5%;
    width: 3%;
    animation-delay: 1.25s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-9::before {
    left: 97%;
    animation-delay: 1.51s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-10 {
    --color: #ff4800;
    left: 36.3%;
    width: 3%;
    animation-delay: 0.74s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-10::before {
    left: 67%;
    animation-delay: 1.62s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-11 {
    --color: #fd0100;
    left: 41%;
    width: 2.2%;
    animation-delay: 0.48s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-11::before {
    left: 10%;
    animation-delay: 0.74s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-12 {
    --color: #01ffff;
    left: 44.2%;
    width: 2.6%;
    animation-delay: 1.15s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-12::before {
    left: 188%;
    animation-delay: 0.6s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-13 {
    --color: #ffc601;
    left: 51.7%;
    width: 0.5%;
    animation-delay: 0.18s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-13::before {
    left: 56%;
    animation-delay: 0.25s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-14 {
    --color: #ffc601;
    left: 52.1%;
    width: 1.8%;
    animation-delay: 0.77s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-14::before {
    left: 31%;
    animation-delay: 1.61s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-15 {
    --color: #0078fe;
    left: 53.8%;
    width: 2.3%;
    animation-delay: 0.32s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-15::before {
    left: 194%;
    animation-delay: 1.97s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-16 {
    --color: #0080ff;
    left: 57.2%;
    width: 2%;
    animation-delay: 0.41s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-16::before {
    left: 102%;
    animation-delay: 0.69s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-17 {
    --color: #ffae01;
    left: 62.3%;
    width: 2.9%;
    animation-delay: 0.08s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-17::before {
    left: 143%;
    animation-delay: 0.24s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-18 {
    --color: #ff00bf;
    left: 65.8%;
    width: 1.7%;
    animation-delay: 1.96s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-18::before {
    left: 186%;
    animation-delay: 0.46s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-19 {
    --color: #a601f4;
    left: 72.8%;
    width: 0.8%;
    animation-delay: 1.11s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-19::before {
    left: 170%;
    animation-delay: 0.95s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-20 {
    --color: #f30b34;
    left: 74.3%;
    width: 2%;
    animation-delay: 1.9s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-20::before {
    left: 46%;
    animation-delay: 0.4s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-21 {
    --color: #ff00bf;
    left: 79.8%;
    width: 2%;
    animation-delay: 1.55s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-21::before {
    left: 148%;
    animation-delay: 1.37s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-22 {
    --color: #04fd8f;
    left: 78.2%;
    width: 2%;
    animation-delay: 1.66s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-22::before {
    left: 154%;
    animation-delay: 0.35s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-23 {
    --color: #01ffff;
    left: 78.5%;
    width: 2%;
    animation-delay: 1.95s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-23::before {
    left: 54%;
    animation-delay: 0.53s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-24 {
    --color: #a201ff;
    left: 85.3%;
    width: 1.1%;
    animation-delay: 0.71s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-24::before {
    left: 195%;
    animation-delay: 1.74s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-25 {
    --color: #ec0014;
    left: 86.9%;
    width: 1.1%;
    animation-delay: 1.6s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-25::before {
    left: 73%;
    animation-delay: 1.88s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-26 {
    --color: #0078fe;
    left: 88.8%;
    width: 2%;
    animation-delay: 0.3s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-26::before {
    left: 91%;
    animation-delay: 1.15s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-27 {
    --color: #ff0036;
    left: 92.4%;
    width: 2.4%;
    animation-delay: 1.5s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-27::before {
    left: 5%;
    animation-delay: 1.45s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-28 {
    --color: #06f98c;
    left: 96.2%;
    width: 2.1%;
    animation-delay: 0.83s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-28::before {
    left: 140%;
    animation-delay: 1.08s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-1,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-3,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-5,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-7,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-9,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-11,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-13,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-15,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-17,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-19,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-21,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-23,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-25,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-27 {
    animation-name: lumieres-moving-left;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-1::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-3::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-5::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-7::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-9::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-11::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-13::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-15::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-17::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-19::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-21::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-23::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-25::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-27::before {
    animation-name: lumieres-moving-left;
    animation-duration: 5.5s;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-2,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-4,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-6,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-8,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-10,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-12,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-14,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-16,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-18,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-20,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-22,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-24,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-26,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-28 {
    animation-name: lumieres-moving-right;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-2::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-4::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-6::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-8::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-10::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-12::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-14::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-16::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-18::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-20::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-22::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-24::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-26::before,
#netflix-intro-container netflixintro [class*=helper-] .effect-lumieres .lamp-28::before {
    animation-name: lumieres-moving-right;
    animation-duration: 5.5s;
}

@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);
    }

    100% {
        transform: scale(15);
    }
}

@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);
    }
}

/* Countdown Screen */
#countdown-screen {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #000;
    /* Netflix Black */
    z-index: 9999;
    /* Highest priority */
    color: white;
}

#netflix-intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9000;
    display: none;
    /* Hidden by default, shown by script */
}

.countdown-container {
    text-align: center;
    padding: 20px;
}

.countdown-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 40px;
    color: #E50914;
    /* Netflix Red */
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.time-box span:first-child {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 5px;
}

.time-box .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.countdown-message {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

@media (max-width: 600px) {
    .countdown-timer {
        gap: 10px;
    }

    .time-box {
        min-width: 70px;
        padding: 15px 10px;
    }

    .time-box span:first-child {
        font-size: 2rem;
    }

    .countdown-title {
        font-size: 2rem;
    }
}