/* ==========================================================================
   LUMINA STUDIOS — DESIGN SYSTEM & ULTRA-CINEMATIC STYLESHEET
   ========================================================================== */

:root {
    /* Color Palette: Deep OLED Darkness & Luxe Gold Accents */
    --bg-dark: #040406;
    --bg-card: #0a0a10;
    --bg-elevated: #11111a;
    --bg-glass: rgba(10, 10, 16, 0.75);

    --gold-primary: #e6c267;
    --gold-bright: #fcd97d;
    --gold-dark: #997825;
    --gold-gradient: linear-gradient(135deg, #fce29c 0%, #d4af37 50%, #997825 100%);
    --text-glow-gold: 0 0 20px rgba(212, 175, 55, 0.4);

    --text-main: #f0f0f5;
    --text-muted: #8a8a9e;
    --text-dim: #555566;

    --border-dim: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.3);

    /* Fonts */
    --font-heading: 'Syne', sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions & Physics */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s var(--ease-out-expo);
    --transition-medium: 0.45s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
}

/* Custom Aperture Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, opacity 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-label {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

body.hovering-interactive .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--gold-primary);
}

body.hovering-interactive .cursor-label {
    opacity: 1;
}

/* Film Grain & Atmospheric Ambient */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.ambient-light-field {
    position: fixed;
    top: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(15, 15, 35, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Utility Layout Classes */
.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--gold-primary);
    font-weight: 600;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center-header {
    text-align: center;
}

.header-tag {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.2rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    line-height: 1.7;
}

.section-header.center-header .section-desc {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-large {
    padding: 1.2rem 2.4rem;
    font-size: 0.9rem;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-meta {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-left: 0.3rem;
    padding-left: 0.6rem;
    border-left: 1px solid currentColor;
}


/* ==========================================================================
   STRICT NAVBAR (Max 5 Items + 1 CTA)
   ========================================================================== */
.studio-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all var(--transition-medium);
}

.studio-header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dim);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    transition: height var(--transition-medium);
}

.studio-header.scrolled .nav-container {
    height: 68px;
}

.studio-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-heading);
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 3px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 5px;
    color: var(--gold-primary);
    margin-top: 2px;
}

/* STRICT 5-ITEM NAVIGATION */
.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Sound Wave Toggle Button */
.sound-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dim);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.sound-toggle-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.sound-wave-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
    display: none;
}

.sound-wave-bars span {
    width: 2px;
    height: 100%;
    background: var(--gold-primary);
    border-radius: 1px;
    animation: waveBar 1.2s ease-in-out infinite alternate;
}

.sound-wave-bars span:nth-child(2) { animation-delay: 0.2s; }
.sound-wave-bars span:nth-child(3) { animation-delay: 0.4s; }
.sound-wave-bars span:nth-child(4) { animation-delay: 0.6s; }

@keyframes waveBar {
    0% { height: 20%; }
    100% { height: 100%; }
}

.sound-toggle-btn.playing #soundIcon { display: none; }
.sound-toggle-btn.playing .sound-wave-bars { display: flex; }

/* STRICT CTA BUTTON */
.primary-cta {
    background: var(--gold-gradient);
    color: #000;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: all var(--transition-fast);
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}


/* ==========================================================================
   1. CINEMATIC HERO SECTION (Redesigned Editorial & Poster Experience)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-vignette-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(4, 4, 6, 0.3) 0%, rgba(4, 4, 6, 0.95) 85%),
                linear-gradient(to bottom, rgba(4, 4, 6, 0.7) 0%, transparent 30%, rgba(4, 4, 6, 1) 100%);
    z-index: 2;
}

.hero-spotlight-field {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    animation: spotlightPulse 8s ease-in-out infinite alternate;
}

@keyframes spotlightPulse {
    0% { transform: scale(1) translateY(0); opacity: 0.7; }
    100% { transform: scale(1.2) translateY(-20px); opacity: 1; }
}

.hero-backdrop-img {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero_keyframe.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) contrast(1.1) blur(3px);
    z-index: 0;
    transform: scale(1.05);
    animation: slowZoom 30s ease-in-out infinite alternate;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    /* Prevent content from going under navbar */
    padding-top: 0;
}

/* Left Content: Editorial Typography */
.hero-left-content {
    max-width: 640px;
}

.hero-small-label {
    font-size: 0.8rem;
    letter-spacing: 5px;
    font-weight: 800;
    color: var(--gold-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.2rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    line-height: 1.1;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 400;
}

.hero-cta-buttons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Right Visual: Large Cinematic Poster Card */
.hero-right-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-poster-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(212, 175, 55, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    /* Prevent poster from being wider than its container */
    box-sizing: border-box;
}

.hero-poster-frame:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.98), 0 0 60px rgba(212, 175, 55, 0.35);
}

.hero-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-poster-frame:hover .hero-poster-img {
    transform: scale(1.06);
}

.poster-cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(4, 4, 6, 0.85) 100%);
    pointer-events: none;
}

/* Floating Film Frame Card */
.floating-film-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 10, 16, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transition: transform var(--transition-fast);
}

.floating-film-card:hover {
    transform: translateY(-3px);
    background: rgba(15, 15, 24, 0.95);
}

.film-card-thumb {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.film-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-card-play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background var(--transition-fast);
}

.film-card-play:hover {
    background: rgba(212, 175, 55, 0.85);
    color: #000;
}

.film-card-info {
    display: flex;
    flex-direction: column;
}

.film-card-tag {
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--gold-primary);
}

.film-card-title {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
    margin: 2px 0;
}

.film-card-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Glass Accent Badge */
.hero-glass-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.4rem 0.85rem;
    background: rgba(10, 10, 16, 0.75);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.glass-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}

.hero-scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 3px;
    transition: color var(--transition-fast);
}

.hero-scroll-down:hover {
    color: var(--gold-primary);
}


/* ==========================================================================
   2. FEATURED PRODUCTIONS SECTION
   ========================================================================== */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dim);
    color: var(--text-muted);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 2.5rem;
}

.poster-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dim);
    overflow: hidden;
    transition: all var(--transition-medium);
    position: relative;
}

.poster-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.15);
}

.poster-media {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #000;
}

.poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.poster-card:hover .poster-img {
    transform: scale(1.08);
}

.poster-art-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.poster-art-neon {
    background-image: linear-gradient(180deg, rgba(10, 10, 20, 0.2), rgba(5, 5, 12, 0.9)), radial-gradient(circle at 50% 30%, #00f2ff 0%, #ff007f 70%, #000000 100%);
}

.poster-art-chrono {
    background-image: linear-gradient(180deg, rgba(10, 10, 20, 0.2), rgba(5, 5, 12, 0.9)), radial-gradient(circle at 50% 40%, #ff9900 0%, #5500aa 70%, #000000 100%);
}

.poster-art-silent {
    background-image: linear-gradient(180deg, rgba(10, 10, 20, 0.2), rgba(5, 5, 12, 0.9)), radial-gradient(circle at 50% 50%, #445566 0%, #111122 70%, #000000 100%);
}

.poster-art-abyssal {
    background-image: linear-gradient(180deg, rgba(10, 10, 20, 0.2), rgba(5, 5, 12, 0.9)), radial-gradient(circle at 50% 50%, #00aaff 0%, #002244 70%, #000000 100%);
}

.art-title-overlay {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.9);
}

.poster-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 6, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.poster-card:hover .poster-hover-overlay {
    opacity: 1;
}

.poster-hover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.play-preview-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transition: transform var(--transition-fast);
}

.play-preview-btn:hover {
    transform: scale(1.15);
}

.hover-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 700;
}

.poster-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.badge-imax {
    background: rgba(0, 119, 255, 0.8);
    color: #fff;
}

.badge-award {
    background: rgba(212, 175, 55, 0.85);
    color: #000;
}

.badge-score {
    background: rgba(10, 10, 16, 0.85);
    border: 1px solid var(--border-dim);
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-gold {
    background: var(--gold-gradient);
    color: #000;
}

.badge-series {
    background: rgba(168, 85, 247, 0.8);
    color: #fff;
}

.badge-doc {
    background: rgba(14, 165, 233, 0.8);
    color: #fff;
}

.poster-details {
    padding: 1.5rem;
}

.poster-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.poster-title {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.poster-director {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.poster-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-dim);
}

.quick-view-btn {
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: opacity var(--transition-fast);
}

.quick-view-btn:hover {
    opacity: 0.8;
}

.icon-action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dim);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.icon-action-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}


/* ==========================================================================
   3. DIRECTOR SHOWCASE SECTION
   ========================================================================== */
.directors-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #08080e 100%);
}

.director-feature-block {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.director-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.director-card.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.director-card.reverse .director-image-container {
    order: 2;
}

.director-image-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.director-portrait {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: grayscale(30%) contrast(1.1);
}

.portrait-marcus {
    background-image: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%), radial-gradient(circle at top right, #d4af37 0%, #111122 70%);
}

.portrait-elena {
    background-image: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%), radial-gradient(circle at top left, #a855f7 0%, #0a0a16 70%);
}

.portrait-light-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
}

.director-stats-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: rgba(10, 10, 16, 0.85);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-dim);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    display: block;
    line-height: 1;
}

.stat-lbl {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.director-title-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
}

.director-name {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    color: #fff;
    margin-bottom: 1.2rem;
}

.director-bio {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.director-quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    border-left: 2px solid var(--gold-primary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.filmo-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.filmo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.filmo-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dim);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-main);
}


/* ==========================================================================
   4. BEHIND THE SCENES & VFX SLIDER SECTION
   ========================================================================== */
.vfx-slider-container {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    cursor: col-resize;
    user-select: none;
    margin-bottom: 3rem;
}

.vfx-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vfx-image-mockup {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.after-img {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), radial-gradient(circle at 60% 40%, #ff9900 0%, #004488 60%, #000011 100%);
}

.before-img {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), radial-gradient(circle at 60% 40%, #00ff66 0%, #006622 60%, #001105 100%);
}

.vfx-before {
    width: 50%;
    overflow: hidden;
    border-right: 2px solid var(--gold-bright);
    z-index: 2;
}

.vfx-before .vfx-image-mockup {
    width: 1380px; /* Locked width so picture doesn't stretch when sliding */
}

.vfx-scene-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.scene-badge {
    padding: 0.5rem 1rem;
    background: rgba(10, 10, 16, 0.85);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.badge-raw {
    border-color: #22c55e;
    color: #22c55e;
}

.vfx-drag-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.handle-line {
    flex: 1;
    width: 2px;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px var(--gold-bright);
}

.handle-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

.bts-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.spec-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: border-color var(--transition-fast);
}

.spec-card:hover {
    border-color: var(--border-gold);
}

.spec-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.spec-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.spec-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ==========================================================================
   5. AWARDS & RECOGNITION SECTION
   ========================================================================== */
.awards-section {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.04) 0%, var(--bg-dark) 70%);
}

.trophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.trophy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.trophy-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
}

.trophy-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trophy-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

.trophy-icon {
    width: 36px;
    height: 36px;
    color: var(--gold-primary);
    position: relative;
    z-index: 2;
}

.trophy-count {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trophy-name {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.4rem;
}

.trophy-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.laurels-ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem;
    background: rgba(10, 10, 16, 0.6);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-full);
}

.laurel-badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.laurel-icon {
    font-size: 1.8rem;
}

.l-title {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--gold-primary);
    display: block;
}

.l-film {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
}


/* ==========================================================================
   6. UPCOMING RELEASES & COUNTDOWN
   ========================================================================== */
.upcoming-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}

.upcoming-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.upcoming-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.time-block {
    text-align: center;
}

.time-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-bright);
    line-height: 1;
    display: block;
    min-width: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dim);
    padding: 0.8rem 0;
    border-radius: var(--radius-sm);
}

.time-lbl {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-top: 0.4rem;
    display: block;
}

.time-sep {
    font-size: 2.5rem;
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

.upcoming-actions {
    display: flex;
    gap: 1.2rem;
}

.film-reel-card {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    background: radial-gradient(circle at center, #ff9900 0%, #330066 60%, #05050a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--border-dim);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

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

.art-title {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold-primary);
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.art-date {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
}


/* ==========================================================================
   7. GLOBAL REACH & TECHNOLOGY
   ========================================================================== */
.global-stats-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.matrix-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.8rem;
    position: relative;
    transition: transform var(--transition-fast);
}

.matrix-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
}

.matrix-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.matrix-lbl {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.matrix-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* ==========================================================================
   8. STREAMING EXPERIENCE PREVIEW
   ========================================================================== */
.streaming-player-box {
    background: #000;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 40px rgba(212, 175, 55, 0.15);
}

.player-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-dim);
}

.player-film-title {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-left: 1rem;
    color: #fff;
}

.player-audio-badge {
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.player-screen-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #050508;
    overflow: hidden;
}

.lumina-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audio-equalizer-canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.65;
}

.player-overlay-controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity var(--transition-fast);
}

.player-screen-container.playing .player-overlay-controls {
    opacity: 0;
    pointer-events: none;
}

.center-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    transition: transform var(--transition-fast);
}

.center-play-btn:hover {
    transform: scale(1.15);
}

.player-controls-bar {
    padding: 1.2rem 2rem;
    background: var(--bg-elevated);
}

.time-scrubber-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.time-scrubber {
    width: 100%;
    accent-color: var(--gold-primary);
    cursor: pointer;
}

.controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.controls-left, .controls-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.p-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.p-btn:hover {
    color: var(--gold-primary);
}

.p-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.controls-center {
    display: flex;
    gap: 0.6rem;
}

.mode-chip {
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
}

.mode-chip.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}


/* ==========================================================================
   9. TESTIMONIALS & PRESS ACCLAIM
   ========================================================================== */
.press-carousel {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    position: relative;
    min-height: 200px;
}

.press-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
    pointer-events: none;
    text-align: center;
}

.press-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.press-quote-icon {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: -2rem;
}

.press-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    color: #fff;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-name {
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 800;
    color: var(--gold-primary);
    display: block;
}

.author-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.press-nav-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.press-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.press-dot.active {
    background: var(--gold-gradient);
    transform: scale(1.3);
}


/* ==========================================================================
   10. CTA SECTION
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 10rem 0;
    background: radial-gradient(circle at center, #1a1505 0%, var(--bg-dark) 70%);
    text-align: center;
    border-top: 1px solid var(--border-gold);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.cta-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}


/* ==========================================================================
   11. FOOTER SECTION
   ========================================================================== */
.studio-footer {
    background: #020203;
    border-top: 1px solid var(--border-dim);
    padding: 6rem 0 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 1.2rem 0 2rem;
    max-width: 360px;
    line-height: 1.6;
}

.studio-hubs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hub-item {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-heading {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-nav-col a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 3rem;
    border-top: 1px solid var(--border-dim);

}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--gold-primary);
}


/* ==========================================================================
   MODALS & TOAST NOTIFICATIONS
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(25px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-elevated);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 960px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,0.9);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-dim);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

.modal-close-btn:hover {
    background: var(--gold-gradient);
    color: #000;
}

.modal-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.trailer-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-trailer-info {
    padding: 2rem;
}

.modal-trailer-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-trailer-info p {
    color: var(--text-muted);
}

.quick-view-body {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    padding: 2.5rem;
}

.quick-view-poster {
    width: 100%;
    border-radius: var(--radius-md);
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.quick-view-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.quick-view-synopsis {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 1.5rem 0;
}

.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: rgba(10, 10, 16, 0.95);
    border: 1px solid var(--border-gold);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    animation: toastIn 0.4s var(--ease-out-expo);
}

@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES — COMPLETE MOBILE-FIRST SYSTEM
   Breakpoints: 320-480 | 481-767 | 768-1024 | 1025-1440 | 1441+
   ========================================================================== */

/* ─── LARGE MONITORS (1441px+) ─────────────────────────────────────────── */
@media (min-width: 1441px) {
    .section-padding { padding: 10rem 0; }
    .container { max-width: 1520px; }
    .hero-headline { font-size: 5.5rem; }
    .section-title { font-size: 4rem; }
}

/* ─── LAPTOP / DESKTOP (1025px – 1440px) ───────────────────────────────── */
/* Default styles already handle this range */

/* ─── TABLET (768px – 1024px) ──────────────────────────────────────────── */
@media (max-width: 1024px) {

    /* === NAVBAR === */
    .studio-header { padding: 0; }
    .studio-header .nav-container { height: 72px; }
    .studio-header.scrolled { padding: 0; }
    .studio-header.scrolled .nav-container { height: 68px; }

    .main-nav { display: none; }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.05);
        border: 1px solid var(--border-dim);
        border-radius: var(--radius-sm);
        color: #fff;
        font-size: 1.4rem;
        cursor: pointer;
        flex-shrink: 0;
        transition: all var(--transition-fast);
    }
    .mobile-menu-toggle:hover {
        border-color: var(--gold-primary);
        color: var(--gold-primary);
        background: rgba(212,175,55,0.1);
    }

    /* Mobile Nav Drawer — Full Screen */
    .main-nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        height: 100vh;
        background: rgba(4, 4, 6, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 80px 2rem 2rem;
        border: none;
        overflow-y: auto;
    }

    .main-nav.mobile-open .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .main-nav.mobile-open .nav-list li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .main-nav.mobile-open .nav-link {
        display: block;
        padding: 1.4rem 1rem;
        font-size: 1.2rem;
        letter-spacing: 4px;
        width: 100%;
    }

    .main-nav.mobile-open .nav-link::after { display: none; }

    .main-nav.mobile-open .mobile-nav-cta {
        display: flex !important;
        margin-top: 2.5rem;
        width: 100%;
        max-width: 340px;
    }

    /* Hide CTA from nav-actions on tablet (show in drawer) */
    .nav-actions .primary-cta { display: none; }

    /* === SECTION SPACING === */
    .section-padding { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }

    /* === SECTION TITLES === */
    .section-title { font-size: clamp(2rem, 4.5vw, 2.8rem); }

    /* === HERO — single column, poster above text on tablet === */
    .hero-section {
        padding: 5rem 0 3rem;
        min-height: auto !important;
        align-items: center;
    }
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .hero-left-content { max-width: 100%; order: 2; }
    .hero-right-visual { justify-content: center; order: 1; }
    .hero-cta-buttons { justify-content: center; flex-wrap: wrap; gap: 1rem; }
    .hero-subheadline { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-poster-frame { max-width: 380px; }
    .hero-scroll-down { display: none; }
    /* Hide the floating film card on tablet — clips inside overflow:hidden poster frame */
    .floating-film-card { display: none; }

    /* === PRODUCTIONS GRID — 2 columns on tablet === */
    .productions-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* === FILTER BAR === */
    .filter-bar { gap: 0.6rem; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.75rem; min-height: 44px; }

    /* === DIRECTORS === */
    .director-card,
    .director-card.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .director-card.reverse .director-image-container { order: 1; }
    .director-image-container { max-height: 380px; }
    .director-quote { font-size: 1.15rem; }

    /* === BTS / VFX SLIDER === */
    .vfx-slider-container { height: 360px; }
    .bts-spec-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* === AWARDS === */
    .trophy-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .trophy-count { font-size: 2.8rem; }
    .laurels-ticker { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

    /* === UPCOMING === */
    .upcoming-banner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }
    .upcoming-title { font-size: clamp(2rem, 5vw, 3rem); }
    .upcoming-actions { flex-wrap: wrap; }
    .film-reel-card { max-width: 320px; margin: 0 auto; }

    /* === GLOBAL STATS === */
    .global-stats-matrix { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .matrix-val { font-size: 2.5rem; }

    /* === STREAMING PLAYER === */
    .player-top-bar { padding: 1rem 1.2rem; flex-wrap: wrap; gap: 0.8rem; }
    .player-film-title { font-size: 0.75rem; }
    .controls-center { display: none; }
    .player-controls-bar { padding: 1rem 1.2rem; }

    /* === FOOTER === */
    .studio-footer { padding: 4rem 0 2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 1.2rem; text-align: center; }

    /* === QUICK VIEW MODAL === */
    .quick-view-body { grid-template-columns: 1fr; padding: 1.5rem; }
    .quick-view-poster { max-height: 280px; object-fit: cover; }
    .quick-view-title { font-size: 1.6rem; }

    /* === CTA SECTION === */
    .cta-section { padding: 6rem 0; }
    .cta-button-group { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .cta-title { font-size: clamp(2rem, 5vw, 3rem); }
}

/* ─── LARGE PHONES (481px – 767px) ─────────────────────────────────────── */
@media (max-width: 767px) {

    /* === NAVBAR === */
    .studio-header .nav-container { height: 68px; padding: 0 1.2rem; }
    .logo-text { font-size: 1.1rem; letter-spacing: 2px; }
    .logo-mark { width: 32px; height: 32px; font-size: 1.1rem; }
    /* Hide sound toggle on phones — too crowded */
    .sound-toggle-btn { display: none; }
    /* Keep CTA hidden on mobile (in drawer) — already handled */
    .nav-actions { gap: 0.6rem; }

    /* === SECTION SPACING === */
    .section-padding { padding: 4rem 0; }
    .container { padding: 0 1.2rem; }
    .section-header { margin-bottom: 2.5rem; }

    /* === TYPOGRAPHY === */
    .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .hero-headline { font-size: clamp(2rem, 7vw, 2.8rem); }

    /* === HERO — phones, poster above text === */
    .hero-section {
        padding: 4.5rem 0 2rem;
        min-height: auto !important;
        align-items: center;
    }
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        text-align: center;
    }
    .hero-left-content { max-width: 100%; order: 2; }
    .hero-right-visual { justify-content: center; order: 1; }
    .hero-cta-buttons { justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
    .hero-subheadline { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-poster-frame { max-width: 280px; }
    /* floating-film-card clips inside overflow:hidden — hide it */
    .floating-film-card { display: none !important; }
    .hero-scroll-down { display: none; }
    /* Hide Watch Trailer from nav on phones — it's in the mobile drawer */
    .nav-actions .primary-cta,
    .nav-actions .cta-btn { display: none !important; }

    /* === PRODUCTIONS — 1 column on small tablets/large phones === */
    .productions-grid { grid-template-columns: 1fr; gap: 1.2rem; }

    /* === FILTER BAR === */
    .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
    .filter-bar::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; white-space: nowrap; }

    /* === DIRECTORS === */
    .director-card { padding: 1.5rem; }
    .director-name { font-size: clamp(1.8rem, 5vw, 2.4rem); }
    .director-bio { font-size: 0.95rem; }
    .director-quote { font-size: 1.05rem; }
    .director-feature-block { gap: 3rem; }

    /* === VFX SLIDER === */
    .vfx-slider-container { height: 280px; }
    .bts-spec-grid { grid-template-columns: 1fr; gap: 1rem; }

    /* === AWARDS === */
    .trophy-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .trophy-card { padding: 1.8rem 1rem; }
    .trophy-count { font-size: 2.4rem; }
    .trophy-name { font-size: 0.7rem; }
    .laurels-ticker { flex-direction: column; gap: 1rem; text-align: center; border-radius: var(--radius-md); }

    /* === UPCOMING === */
    .upcoming-banner { padding: 2rem 1.5rem; }
    .countdown-wrapper { gap: 0.7rem; flex-wrap: wrap; justify-content: center; }
    .time-num { font-size: 2.2rem; min-width: 60px; }
    .upcoming-actions { flex-direction: column; }
    .upcoming-actions .btn { width: 100%; justify-content: center; min-height: 52px; }

    /* === GLOBAL STATS === */
    .global-stats-matrix { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .matrix-val { font-size: 2rem; }

    /* === STREAMING PLAYER === */
    .player-top-bar { padding: 0.8rem 1rem; }
    .player-film-title { display: none; }
    .controls-row { flex-wrap: wrap; gap: 0.8rem; }
    .controls-right { margin-left: auto; }

    /* === PRESS CAROUSEL === */
    .press-carousel { min-height: 260px; }
    .press-quote { font-size: clamp(1.1rem, 4vw, 1.5rem); }

    /* === CTA SECTION === */
    .cta-section { padding: 4rem 0; }
    .cta-button-group { flex-direction: column; align-items: center; gap: 1rem; }
    .cta-button-group .btn { width: 100%; max-width: 360px; justify-content: center; min-height: 52px; }
    .cta-desc { font-size: 1rem; }

    /* === FOOTER === */
    .studio-footer { padding: 3.5rem 0 2rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: auto; }
    .footer-tagline { max-width: 100%; }

    /* === BUTTONS TOUCH TARGETS === */
    .btn { min-height: 48px; }
    .btn-large { min-height: 52px; }
    .filter-btn { min-height: 44px; }
    .icon-action-btn { width: 44px; height: 44px; }

    /* === MODALS === */
    .modal-backdrop { padding: 1rem; align-items: flex-end; }
    .modal-content { border-radius: var(--radius-md) var(--radius-md) 0 0; max-height: 90vh; overflow-y: auto; }
}

/* ─── MOBILE PHONES (320px – 480px) ────────────────────────────────────── */
@media (max-width: 480px) {

    /* === NAVBAR === */
    .studio-header .nav-container { height: 60px; padding: 0 1rem; }
    .logo-text { font-size: 0.95rem; letter-spacing: 2px; }
    .logo-mark { width: 28px; height: 28px; font-size: 0.95rem; flex-shrink: 0; }
    .nav-actions { gap: 0.5rem; }
    /* Ensure sound toggle is hidden on small phones */
    .sound-toggle-btn { display: none; }
    .mobile-menu-toggle { width: 40px; height: 40px; }

    /* === HERO — full mobile treatment === */
    .hero-section {
        padding: 4.5rem 0 2rem;
        min-height: auto;
        align-items: flex-start;
    }
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        text-align: center;
    }
    .hero-left-content { order: 2; max-width: 100%; }
    .hero-right-visual { order: 1; justify-content: center; }
    .hero-poster-frame {
        max-width: 260px;
        /* Reduce shadow intensity on mobile for perf */
        box-shadow: 0 12px 30px rgba(0,0,0,0.9), 0 0 20px rgba(212,175,55,0.15);
    }
    /* Hide floating film card below 480px — clutters small screens */
    .floating-film-card { display: none; }
    .hero-glass-badge { top: 0.6rem; right: 0.6rem; font-size: 0.5rem; padding: 0.3rem 0.6rem; }
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    .hero-cta-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }
    .hero-scroll-down { display: none; }

    /* === SECTION SPACING === */
    .section-padding { padding: 3.5rem 0; }
    .container { padding: 0 1rem; }
    .section-header { margin-bottom: 2rem; }

    /* === TYPOGRAPHY === */
    .section-title { font-size: clamp(1.6rem, 7vw, 2rem); line-height: 1.15; }
    .hero-headline { font-size: clamp(1.9rem, 8vw, 2.4rem); }
    .hero-subheadline { font-size: 0.95rem; }
    .header-tag { font-size: 0.65rem; letter-spacing: 3px; }

    /* === HERO (≤480px additions) === */
    .hero-section {
        padding: 4rem 0 2rem;
        min-height: auto !important;
    }
    .hero-small-label { font-size: 0.65rem; letter-spacing: 3px; }
    .hero-headline { font-size: clamp(1.8rem, 8vw, 2.2rem); }
    .hero-subheadline { font-size: 0.92rem; }
    .hero-poster-frame { max-width: 240px; }
    .hero-cta-buttons { flex-direction: column; width: 100%; gap: 0.75rem; }
    .hero-cta-buttons .btn { width: 100%; justify-content: center; min-height: 52px; }

    /* === POSTER CARDS === */
    .poster-card:hover { transform: none; }
    .poster-card:hover .poster-img { transform: none; }
    .poster-title { font-size: 1.15rem; }

    /* === DIRECTORS === */
    .director-card { padding: 1.2rem; gap: 1.5rem; }
    .director-title-tag { font-size: 0.65rem; }
    .director-name { font-size: clamp(1.6rem, 6vw, 2rem); }
    .director-bio { font-size: 0.9rem; }
    .director-quote { font-size: 0.95rem; padding-left: 1rem; }
    .director-stats-overlay { flex-direction: column; gap: 0.8rem; padding: 0.8rem; }
    .stat-num { font-size: 1.2rem; }
    .filmo-tags { flex-direction: column; }

    /* === VFX SLIDER === */
    .vfx-slider-container { height: 220px; }
    .scene-badge { font-size: 0.65rem; padding: 0.35rem 0.7rem; }
    .handle-button { width: 40px; height: 40px; }
    .bts-spec-grid { gap: 0.8rem; }
    .spec-card { padding: 1.5rem; }

    /* === AWARDS === */
    .trophy-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .trophy-card { padding: 1.5rem 0.8rem; }
    .trophy-count { font-size: 2rem; }
    .trophy-name { font-size: 0.65rem; letter-spacing: 1px; }
    .trophy-sub { font-size: 0.65rem; }
    .laurels-ticker { padding: 1rem; gap: 0.8rem; }

    /* === UPCOMING === */
    .upcoming-banner { padding: 1.5rem 1rem; }
    .upcoming-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .upcoming-desc { font-size: 0.95rem; }
    .countdown-wrapper { gap: 0.5rem; margin-bottom: 2rem; }
    .time-num { font-size: 1.8rem; min-width: 50px; padding: 0.6rem 0; }
    .time-sep { font-size: 1.8rem; }
    .time-lbl { font-size: 0.55rem; }
    .film-reel-card { max-width: 240px; aspect-ratio: 4/3; }
    .art-date { font-size: 1.2rem; }

    /* === GLOBAL STATS === */
    .global-stats-matrix { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .matrix-card { padding: 1.5rem 1rem; }
    .matrix-val { font-size: 1.8rem; }
    .matrix-lbl { font-size: 0.9rem; }
    .matrix-sub { font-size: 0.78rem; }

    /* === STREAMING PLAYER === */
    .streaming-player-box { border-radius: var(--radius-md); }
    .player-top-bar { padding: 0.7rem 0.8rem; }
    .player-audio-badge { display: none; }
    .player-controls-bar { padding: 0.8rem; }
    .mode-chip { font-size: 0.6rem; padding: 0.3rem 0.6rem; }
    .controls-center { display: none; }
    .center-play-btn { width: 60px; height: 60px; font-size: 1.5rem; }

    /* === PRESS CAROUSEL === */
    .press-carousel { min-height: 320px; }
    .press-quote-icon { font-size: 3.5rem; margin-bottom: -1.5rem; }
    .press-quote { font-size: clamp(1rem, 4vw, 1.3rem); }
    .author-name { font-size: 0.75rem; }

    /* === CTA === */
    .cta-section { padding: 3.5rem 0; }
    .cta-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .cta-desc { font-size: 0.95rem; }

    /* === FOOTER === */
    .studio-footer { padding: 3rem 0 1.5rem; }
    .footer-heading { font-size: 0.7rem; }
    .footer-nav-col a { font-size: 0.8rem; }
    .footer-copyright { font-size: 0.65rem; text-align: center; line-height: 1.6; }
    .hub-item { font-size: 0.65rem; }
    .studio-hubs { gap: 0.6rem; }

    /* === MODALS === */
    .modal-trailer-info h3 { font-size: 1.1rem; }
    .quick-view-body { padding: 1rem; }
    .quick-view-title { font-size: 1.3rem; }
    .modal-close-btn { top: 1rem; right: 1rem; width: 40px; height: 40px; }

    /* === TOAST === */
    .toast-container { bottom: 1rem; right: 1rem; left: 1rem; }
    .toast { width: 100%; padding: 0.8rem 1rem; }
}

/* ─── VERY SMALL PHONES (< 360px) ─────────────────────────────────────── */
@media (max-width: 359px) {
    .hero-headline { font-size: 1.75rem; }
    .section-title { font-size: 1.5rem; }
    .trophy-grid { grid-template-columns: 1fr; }
    .global-stats-matrix { grid-template-columns: 1fr; }
    .countdown-wrapper { justify-content: center; }
    .time-num { font-size: 1.5rem; min-width: 42px; }
}

/* ─── REDUCED MOTION ACCESSIBILITY ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-backdrop-img { animation: none; transform: none; }
    .hero-spotlight-field { animation: none; }
    .floating-film-card { transition: none; }
    .poster-card:hover { transform: none; }
    .director-card:hover { transform: none; }
}

/* ─── OVERFLOW CONTAINMENT — GLOBAL SAFETY NET ──────────────────────────── */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, video, iframe, canvas {
    max-width: 100%;
}

* {
    word-break: break-word;
}

