    :root {
        --bg-primary: #0a0a0a;
        --bg-overlay: rgba(0, 0, 0, 0.6);
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --accent: #D4A500;
        --accent-glow: rgba(212, 165, 0, 0.4);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--bg-primary);
        color: var(--text-primary);
        overflow-x: hidden;
    }

    /* Immersive Full-Page Hero with Poster */
    .film-hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    }

    .film-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.15;
        filter: blur(30px);
    }

    .film-hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .film-hero-container {
        position: relative;
        z-index: 10;
        max-width: 1400px;
        margin: 0 auto;
        padding: 120px 60px 80px;
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 80px;
        align-items: center;
    }

    /* Poster - Full Display with Glow */
    .hero-poster {
        position: relative;
        display: inline-flex;
        margin: auto;
        max-width: 100%;
    }

    .hero-poster img {
        display: block;
        max-width: 100%;
        width: auto;
        height: auto;
        max-height: 500px;
        border-radius: 16px;
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.8),
            0 0 60px rgba(212, 165, 0, 0.2);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .hero-poster:hover img {
        transform: scale(1.03) translateY(-10px);
        box-shadow:
            0 50px 100px rgba(0, 0, 0, 0.9),
            0 0 100px rgba(212, 165, 0, 0.4);
    }

    .hero-poster::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
        opacity: 0.1;
        border-radius: 24px;
        z-index: -1;
        animation: posterGlow 4s ease-in-out infinite alternate;
    }

    @keyframes posterGlow {
        from {
            opacity: 0.05;
        }

        to {
            opacity: 0.15;
        }
    }

    .film-hero-content {
        color: var(--text-primary);
    }

    .film-synopsis-hero {
        font-size: 18px;
        line-height: 1.8;
        color: var(--text-secondary);
        margin-top: 30px;
        max-width: 600px;
    }

    @media (max-width: 1024px) {
        .film-hero-container {
            grid-template-columns: 300px 1fr;
            gap: 50px;
            padding: 120px 40px 60px;
        }
    }

    @media (max-width: 768px) {
        .film-hero-container {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 100px 30px 60px;
            text-align: center;
        }

        .hero-poster {
            max-width: 280px;
            margin: 0 auto;
        }

        .film-meta-pills {
            justify-content: center;
        }

        .film-synopsis-hero {
            margin: 30px auto 0;
        }
    }

    /* Back Button - Floating */
    .back-btn {
        position: fixed;
        top: 100px;
        left: 40px;
        z-index: 100;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        color: var(--text-primary);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .back-btn:hover {
        background: rgba(212, 165, 0, 0.2);
        border-color: var(--accent);
        color: var(--accent);
        transform: translateX(-5px);
    }

    /* Film Title - Massive Cinematic */
    .film-title {
        font-size: clamp(48px, 10vw, 120px);
        font-weight: 900;
        line-height: 0.95;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, #fff 0%, #ccc 50%, #fff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
        animation: titleReveal 1s ease-out;
    }

    @keyframes titleReveal {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Meta Tags - Pills */
    .film-meta-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 40px;
        animation: fadeInUp 1s ease-out 0.2s both;
    }

    .meta-pill {
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 30px;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .meta-pill.accent {
        background: var(--accent);
        color: #000;
        border-color: var(--accent);
        font-weight: 600;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Credits Section - Modern Grid */
    .credits-section {
        background: linear-gradient(180deg, var(--bg-primary) 0%, #111 100%);
        padding: 100px 60px;
    }

    .credits-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .credits-title {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--accent);
        margin-bottom: 50px;
        font-weight: 600;
    }

    .credits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }

    .credit-item {
        padding: 30px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        transition: all 0.3s ease;
    }

    .credit-item:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(212, 165, 0, 0.3);
        transform: translateY(-5px);
    }

    .credit-label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--text-secondary);
        margin-bottom: 12px;
    }

    .credit-value {
        font-size: 20px;
        font-weight: 600;
        color: var(--text-primary);
    }

    /* Navbar - Minimal */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 20px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
        transition: background 0.3s ease;
    }

    .navbar.scrolled {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
    }

    .nav-logo img {
        height: 50px;
    }

    .nav-menu {
        display: flex;
        gap: 35px;
        list-style: none;
    }

    .nav-link {
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent);
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .nav-lang {
        font-size: 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .lang-btn {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.3s;
    }

    .lang-btn.active {
        color: var(--text-primary);
        font-weight: 600;
    }

    .lang-btn:hover {
        color: var(--accent);
    }

    .social-link {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .social-link:hover {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
    }

    .social-link svg {
        width: 18px;
        height: 18px;
        fill: white;
    }

    /* Footer - Standard (Matches Contact Page) */
    .footer {
        position: relative;
        z-index: 1;
        padding: 40px 20px;
        background: rgba(10, 10, 10, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-logo img {
        height: 40px;
        width: auto;
        transition: opacity 0.3s ease;
    }

    .footer-links {
        display: flex;
        gap: 20px;
        list-style: none;
    }

    .footer-links a {
        color: #808080;
        /* var(--text-muted) */
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s ease;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .footer-copyright {
        color: #808080;
        /* var(--text-muted) */
        font-size: 13px;
    }

    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-links {
            flex-wrap: wrap;
            justify-content: center;
        }
    }



    /* Mobile Toggle */
    .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .nav-toggle span {
        width: 25px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .credits-section {
            padding: 60px 30px;
        }
    }

    @media (max-width: 768px) {
        .nav-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.98);
            flex-direction: column;
            padding: 20px;
            gap: 15px;
        }

        .nav-menu.active {
            display: flex;
        }

        .nav-toggle {
            display: flex;
        }

        .footer-links {
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
    }

    /* Scroll Progress Indicator */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), #FFD700);
        z-index: 1001;
        transform-origin: left;
        transform: scaleX(0);
    }