/* =========================================================
   MELHYPER - Main Stylesheet
   Cinematic Dark Design | v1
   Fonts: Bebas Neue (local) + Raleway (local)
   ========================================================= */

/* ── Font Faces (Local) ──────────────────────────────────── */
@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebas-neue/BebasNeue-Regular.woff2') format('woff2'),
         url('../fonts/bebas-neue/BebasNeue-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    --bg-primary:   #080c14;
    --bg-secondary: #0f1520;
    --bg-card:      #141b2a;
    --bg-hover:     #1a2235;
    --gold:         #c9a84c;
    --gold-light:   #e8c97a;
    --gold-dark:    #9a7a30;
    --white:        #f0eadc;
    --white-dim:    #b8b0a0;
    --white-faint:  #6a6258;
    --red-accent:   #8b1a1a;
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body:    'Raleway', 'Trebuchet MS', sans-serif;
    --transition:   0.3s ease;
    --radius:       4px;
    --shadow-card:  0 8px 32px rgba(0,0,0,0.6);
    --shadow-hover: 0 16px 48px rgba(0,0,0,0.8), 0 0 24px rgba(201,168,76,0.15);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg-primary);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Selection ───────────────────────────────────────────── */
::selection { background: var(--gold-dark); color: var(--white); }

/* ── Grain Overlay ───────────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ── Header / Nav ────────────────────────────────────────── */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
    background: rgba(8, 12, 20, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 0 rgba(201,168,76,0.15);
    backdrop-filter: blur(12px);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 1;
}

.logo-text span {
    display: block;
    font-size: 0.55rem;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── Main Navigation ─────────────────────────────────────── */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.main-nav > li { position: relative; }

.main-nav > li > a {
    display: block;
    padding: 0 1.2rem;
    height: 70px;
    line-height: 70px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: color var(--transition);
    white-space: nowrap;
}

.main-nav > li > a:hover,
.main-nav > li.active > a { color: var(--gold); }

/* Section divider in nav */
.nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(201,168,76,0.25);
    margin: 0 0.5rem;
}

/* Section switcher buttons */
.nav-section-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: all var(--transition);
    margin-left: 0.5rem;
}

.nav-section-btn:hover,
.nav-section-btn.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

/* ── Lang Switcher ───────────────────────────────────────── */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 1.5rem;
}

.lang-btn {
    padding: 4px 8px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white-faint);
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--gold);
    border-color: rgba(201,168,76,0.4);
}

/* ── Mobile Hamburger ────────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-slides-wrapper {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video-container video,
.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* cinematic vignette */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8,12,20,0.92) 0%,
        rgba(8,12,20,0.5) 50%,
        rgba(8,12,20,0.1) 100%
    ),
    linear-gradient(
        to top,
        rgba(8,12,20,0.95) 0%,
        rgba(8,12,20,0.2) 40%,
        transparent 70%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 3rem 4rem;
    max-width: 650px;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 12px;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--white-dim);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: var(--radius);
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--bg-primary);
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(240,234,220,0.4);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--white-dim);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ── Hero Nav Dots ───────────────────────────────────────── */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
}

.hero-dot {
    width: 3px;
    height: 24px;
    background: rgba(240,234,220,0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    height: 36px;
}

/* ── Section General ─────────────────────────────────────── */
.section {
    padding: 5rem 2.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1.05;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--white-dim);
    font-weight: 300;
    margin-top: 0.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Film Grid ───────────────────────────────────────────── */
#films-section { background: var(--bg-primary); }

.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.film-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    aspect-ratio: 2/3;
}

.film-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.film-card-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.film-card:hover .film-card-poster { transform: scale(1.06); }

.film-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,12,20,0.98) 0%, rgba(8,12,20,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.film-card-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(8,12,20,0.95) 0%, transparent 100%);
}

.film-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--white);
}

.film-card-date {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-top: 4px;
    font-weight: 500;
}

.film-card-genre {
    font-size: 0.65rem;
    color: var(--white-dim);
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.film-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    text-transform: uppercase;
    border-radius: 2px;
}

.film-card-badge.now { background: var(--red-accent); color: var(--white); }

.film-card-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 16px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background var(--transition);
}

.film-card-btn:hover { background: var(--gold-light); color: var(--bg-primary); }

/* ── Events Grid ─────────────────────────────────────────── */
#events-section { background: var(--bg-secondary); }

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-card);
}

.event-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.event-card-poster {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.event-card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-card-body { padding: 1.5rem; }

.event-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.event-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.event-card-location {
    font-size: 0.8rem;
    color: var(--white-dim);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.2rem;
}

.event-card-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1rem;
}

/* ── Film Detail Page ────────────────────────────────────── */
.film-detail-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-top: 70px;
}

.film-detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
}

.film-detail-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8,12,20,0.97) 0%,
        rgba(8,12,20,0.7) 55%,
        rgba(8,12,20,0.3) 100%
    ),
    linear-gradient(
        to top,
        rgba(8,12,20,1) 0%,
        rgba(8,12,20,0.6) 40%,
        transparent 80%
    );
}

.film-detail-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: end;
}

.film-detail-poster {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    overflow: hidden;
}

.film-detail-poster img { width: 100%; display: block; }

.film-detail-info {}

.film-detail-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.film-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.film-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.film-meta-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.film-meta-value {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

.film-detail-desc {
    font-size: 0.95rem;
    color: var(--white-dim);
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2rem;
}

.film-detail-body {
    background: var(--bg-primary);
    padding: 4rem 2.5rem;
}

.film-detail-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
}

/* ── Trailer Block ───────────────────────────────────────── */
.trailer-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #000;
    box-shadow: var(--shadow-card);
}

.trailer-container iframe,
.trailer-container video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Download Box ────────────────────────────────────────── */
.download-box {
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    padding: 2rem;
    position: sticky;
    top: 90px;
}

.download-box-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.download-box-subtitle {
    font-size: 0.8rem;
    color: var(--white-dim);
    font-weight: 300;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.download-items { display: flex; flex-direction: column; gap: 10px; }

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: all var(--transition);
    color: var(--white);
    font-size: 0.85rem;
}

.download-item:hover {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.3);
    color: var(--gold);
}

.download-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.download-item-info { flex: 1; }
.download-item-name { font-weight: 500; }
.download-item-size { font-size: 0.7rem; color: var(--white-faint); margin-top: 1px; }

/* ── Event Detail ────────────────────────────────────────── */
.event-detail-container {
    max-width: 900px;
    margin: 100px auto 4rem;
    padding: 0 2rem;
}

.event-detail-poster {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-card);
    aspect-ratio: 16/9;
    background: var(--bg-card);
}

.event-detail-poster img { width: 100%; height: 100%; object-fit: cover; }

.event-detail-header { margin-bottom: 2rem; }

.event-detail-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.event-info-box {
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

.event-info-box-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-info-box-value { font-size: 1rem; font-weight: 500; color: var(--white); }

/* ── Legal Page ──────────────────────────────────────────── */
.legal-container {
    max-width: 800px;
    margin: 100px auto 4rem;
    padding: 0 2rem;
}

.legal-container h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin: 2rem 0 0.75rem;
}

.legal-container p { color: var(--white-dim); font-weight: 300; margin-bottom: 1rem; }
.legal-container a { color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────── */
#site-footer {
    background: #050810;
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 3rem 2.5rem 1.5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.82rem;
    color: var(--white-faint);
    font-weight: 300;
    line-height: 1.7;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
    font-size: 0.82rem;
    color: var(--white-faint);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--white-faint);
    font-weight: 300;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    color: var(--white-faint);
    transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ── Entertainment Section Header ────────────────────────── */
.section-header-entertainment {
    background: linear-gradient(to right, rgba(8,12,20,0), rgba(201,168,76,0.03), rgba(8,12,20,0));
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--white-faint);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--white-faint); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); opacity: 0.4; }
.breadcrumb-current { color: var(--white-dim); }

/* ── Loading Placeholder ─────────────────────────────────── */
.poster-placeholder {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white-faint);
}

/* ── Page: No items ──────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--white-faint);
}

.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state-text { font-size: 1rem; font-weight: 300; }

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .film-detail-inner { grid-template-columns: 1fr; }
    .download-box { position: static; }
}

@media (max-width: 768px) {
    #site-header { padding: 0 1.25rem; }

    .main-nav,
    .lang-switcher,
    .nav-section-btn { display: none; }

    .nav-toggle { display: flex; }

    /* Mobile menu */
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px; left: 0; right: 0; bottom: 0;
        background: rgba(5,8,16,0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 0;
        overflow-y: auto;
    }

    .main-nav.open > li > a {
        height: auto;
        line-height: 1;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .main-nav.open .nav-divider { display: none; }
    .main-nav.open .nav-section-btn {
        display: inline-flex;
        margin: 1rem 0 0;
    }

    .hero-content { padding: 0 1.25rem 3rem; }
    .hero-title { font-size: 2.8rem; }

    .section { padding: 3rem 1.25rem; }

    .films-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }

    .film-detail-content { grid-template-columns: 1fr; }
    .film-detail-poster { max-width: 200px; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .films-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .events-grid { grid-template-columns: 1fr; }
}
