/* Video Preview Specific Styles */
:root {
    --vh: 1vh;
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #000;
}

.video-container {
    position: relative;
    width: 100%;
}

.scene {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scene-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.scene-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.scene-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    color: #fff;
}

.scene-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(50px);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.scene-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.8);
}

/* Scene Specific Backgrounds */
#scene1 .scene-bg { background-image: url('assets/images/video/scene1.png'); }
#scene2 .scene-bg { background-image: url('assets/images/video/scene2.png'); }
#scene3 .scene-bg { background-image: url('assets/images/video/scene3.png'); }

/* Navigation Indicator */
.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--google-blue, #4285F4);
    transform: scale(1.3);
}

/* Back to Top / Call to Action */
.cta-container {
    padding: 100px 0;
    background: #000;
    text-align: center;
    color: #fff;
}

.apply-button {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: var(--google-blue, #4285F4);
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
    transition: all 0.3s ease;
}

.apply-button:hover {
    transform: translateY(-5px);
    background: #3367d6;
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.6);
}

/* Navigation & Control */
.video-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-film-btn {
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-film-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.play-film-btn.playing {
    background: var(--google-red, #EA4335);
    border-color: transparent;
}

/* Infographic Sections */
.infographic-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    min-width: 160px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--google-blue, #4285F4);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Background IDs for new scenes */
#scene4 .scene-bg { background-image: url('assets/images/video/scene4.png'); }
#scene5 .scene-bg { background-image: url('assets/images/video/scene5.png'); }

/* Cinematic Lens Flare */
.lens-flare {
    position: absolute;
    top: 20%;
    left: 70%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* --- FOMO & CURIOSITY EXTENSIONS --- */

/* Partner Marquee */
.partner-marquee {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 100;
    overflow: hidden;
    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 10px 0;
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 40s linear infinite;
    gap: 60px;
    padding-left: 100%;
}

.partner-item {
    color: rgba(255,255,255,0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Urgency Badge */
.urgency-badge {
    position: fixed;
    top: 90px;
    right: 30px;
    z-index: 101;
    background: var(--google-red, #EA4335);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(234, 67, 53, 0.4);
    animation: urgency-pulse 2s infinite ease-in-out;
}

@keyframes urgency-pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Seats Remaining Section */
#scene6 .scene-bg { background-image: url('assets/images/video/fomo_seats.png'); }

.seats-counter {
    font-size: 8rem;
    font-weight: 800;
    color: var(--google-red, #EA4335);
    text-shadow: 0 0 40px rgba(234, 67, 53, 0.6);
    line-height: 1;
    margin: 20px 0;
    font-family: 'Poppins', sans-serif;
}

/* Cinematic Curiosity Text (Advanced GSAP) */
.scene-title.glitch {
    filter: blur(10px);
    transition: filter 0.8s ease-out;
}

.scene.active .scene-title.glitch {
    filter: blur(0);
}

@media (max-width: 768px) {
    .scene-title { font-size: 2.5rem; }
    .scene-desc { font-size: 1.1rem; }
    .video-controls { bottom: 20px; }
    .infographic-container { flex-direction: column; gap: 15px; }
    .seats-counter { font-size: 5rem; }
}
