@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@700&family=Roboto+Condensed:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: 
        repeating-linear-gradient(
            90deg,
            #4A0000 0px,
            #5A0000 2px,
            #4A0000 4px
        ),
        linear-gradient(
            135deg,
            #2A0000 0%,
            #3A0000 25%,
            #4A0000 50%,
            #3A0000 75%,
            #2A0000 100%
        );
    background-size: 4px 100%, 100% 100%;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.curtain-left,
.curtain-right {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 100;
    background: 
        repeating-linear-gradient(
            90deg,
            #4A0000 0px,
            #5A0000 2px,
            #4A0000 4px
        ),
        linear-gradient(
            135deg,
            #2A0000 0%,
            #3A0000 25%,
            #4A0000 50%,
            #3A0000 75%,
            #2A0000 100%
        );
    background-size: 4px 100%, 100% 100%;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    animation: curtainOpen 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

.curtain-left {
    left: 0;
    transform-origin: left;
}

.curtain-right {
    right: 0;
    transform-origin: right;
}

@keyframes curtainOpen {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}

.stage-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse 1000px 600px at 50% 40%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
}

.container {
    text-align: center;
    z-index: 2;
    position: relative;
}

.giant-no {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(100px, 25vw, 320px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 25px;
    animation: electricPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.giant-no:hover {
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.7),
        0 0 60px rgba(255, 215, 0, 0.5),
        0 0 90px rgba(255, 215, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.8);
}

@keyframes electricPulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.5),
            0 0 40px rgba(255, 215, 0, 0.3),
            0 0 60px rgba(255, 215, 0, 0.2),
            0 5px 15px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.6),
            0 0 50px rgba(255, 215, 0, 0.4),
            0 0 70px rgba(255, 215, 0, 0.25),
            0 5px 15px rgba(0, 0, 0, 0.8);
    }
}

.premiere-info {
    margin-bottom: 30px;
}

.premiere-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d4af37;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 4vw, 40px);
    margin-top: 20px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.countdown-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
    min-width: clamp(60px, 10vw, 120px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: clamp(10px, 2vw, 20px);
    transition: all 0.3s ease;
}

.countdown-number:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.countdown-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.tickets-button {
    display: inline-block;
    margin-top: 30px;
    padding: 20px 50px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.15) 100%);
    border: 3px solid rgba(212, 175, 55, 0.6);
    border-radius: 8px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tickets-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.5s ease;
}

.tickets-button:hover {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.5) 0%, rgba(212, 175, 55, 0.3) 100%);
    border-color: rgba(212, 175, 55, 0.9);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.6),
        0 10px 40px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

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

.tickets-button:active {
    transform: translateY(0);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 5px 20px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.reveal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    overflow-y: auto;
    padding: 40px 20px;
}

.reveal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.close-button {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.close-button:hover {
    background: rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
}

.reveal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 100%;
}

.reveal-text {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 8vw, 120px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.6),
        0 0 90px rgba(255, 215, 0, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 0 20px;
    animation: revealGlow 2s ease-in-out infinite;
}

.trailer-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    border: 3px solid rgba(212, 175, 55, 0.5);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.8);
}

.trailer-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes revealGlow {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 215, 0, 0.6),
            0 0 90px rgba(255, 215, 0, 0.4),
            0 5px 20px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(255, 215, 0, 1),
            0 0 80px rgba(255, 215, 0, 0.8),
            0 0 120px rgba(255, 215, 0, 0.6),
            0 5px 20px rgba(0, 0, 0, 0.9);
    }
}

@media (max-width: 768px) {
    .countdown {
        gap: 15px;
    }
    
    .giant-no {
        margin-bottom: 30px;
    }
    
    .premiere-info {
        margin-bottom: 30px;
    }
    
    .close-button {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
}
