:root {
    --bg: #07070c;
    --bg-elevated: #111118;
    --bg-card: #16161f;
    --gold: #d4af37;
    --gold-light: #f0d78c;
    --gold-dim: #9a7b2c;
    --text: #f3f4f6;
    --muted: #9ca3af;
    --border: rgba(255, 255, 255, 0.08);
    --red: #e50914;
    --container: 1200px;
    --header-h: 76px;
    --radius: 12px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0 0 16px;
}
.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 0 40px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(7, 7, 12, 0.72);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
    background: rgba(7, 7, 12, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}
.header-logo img {
    height: 48px;
    width: auto;
    background: transparent;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.header-nav a {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.hero-brand-link { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(212, 175, 55, 0.45); }
.hero-brand-link:hover { color: var(--gold-light); }
.sx-article { background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, transparent 100%); }
.sx-article-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: 0.04em; margin: 0 0 16px; line-height: 1.15; }
.sx-article p { color: var(--muted); font-size: 15px; line-height: 1.75; margin: 0 0 14px; text-align: justify; }
.sx-article a { color: var(--gold); font-weight: 600; text-decoration: none; }
.section-title a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(212, 175, 55, 0.35); }
.section-title a:hover { color: var(--gold-light); }
.header-cta {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    color: #0a0a0f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); }
.mobile-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(7, 7, 12, 0.98);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}

/* Hero */
.hero {
    position: relative;
    min-height: clamp(520px, 90vh, 960px);
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    margin-top: var(--header-h);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,7,12,0.35) 0%, rgba(7,7,12,0.55) 40%, rgba(7,7,12,0.95) 88%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    margin: 0 0 20px;
    max-width: 800px;
}
.hero-title span { color: var(--gold-light); }
.hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
    background: var(--red);
    color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(229, 9, 20, 0.4); }
.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); }
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stat strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold-light);
    line-height: 1;
}
.hero-stat span { font-size: 13px; color: var(--muted); }

/* Featured carousel */
.featured { background: var(--bg-elevated); padding: 56px 0; }
.featured-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dim) transparent;
}
.featured-card {
    flex: 0 0 min(92%, 720px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.featured-card-poster {
    flex: 0 0 200px;
    width: 200px;
    max-width: 38%;
    background: #0a0a10;
}
.featured-card-poster img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}
.featured-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 32px;
    background: linear-gradient(135deg, #14141c 0%, #0e0e14 100%);
}
.featured-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 8px;
    letter-spacing: 0.04em;
}
.featured-card p { margin: 0 0 16px; color: var(--muted); max-width: 420px; font-size: 14px; line-height: 1.55; }
.featured-meta { font-size: 12px; color: var(--gold); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; display: block; }
@media (max-width: 560px) {
    .featured-card { flex-direction: column; min-height: 0; }
    .featured-card-poster { flex: none; width: 100%; max-width: none; }
    .featured-card-poster img { min-height: 220px; aspect-ratio: 2/3; }
}

/* Film grid */
.film-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.film-filter {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.2s;
}
.film-filter.is-active,
.film-filter:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.1);
}
.film-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
@media (max-width: 1100px) { .film-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .film-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .film-grid { grid-template-columns: repeat(2, 1fr); } }
.film-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    transition: transform 0.3s, box-shadow 0.3s;
}
.film-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow); }
.film-card.is-hidden { display: none; }
.film-poster {
    aspect-ratio: 2/3;
    overflow: hidden;
    position: relative;
}
.film-poster img { width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform 0.4s; }

/* Section wide banners */
.section-banner {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
    background: #0a0a10;
    aspect-ratio: 21 / 9;
    max-height: min(42vw, 400px);
}
.section-banner img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}
.section-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(7, 7, 12, 0.94) 0%, rgba(7, 7, 12, 0.55) 48%, rgba(7, 7, 12, 0.15) 100%);
    display: flex;
    align-items: center;
    padding: 28px 36px;
}
.section-banner-desc {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
}
.section-title--light { color: #fff; margin-bottom: 0; }
.section-id-releases { background: var(--bg-elevated); }
.section-production { background: var(--bg); }
.film-grid--id {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
    .film-grid--id { grid-template-columns: repeat(2, 1fr); }
}
.id-releases-note {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
}
.id-releases-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}
.production-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .production-grid { grid-template-columns: 1fr; }
    .section-banner { aspect-ratio: 16 / 10; max-height: none; }
    .section-banner-overlay { padding: 20px; }
}
.production-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
}
.production-card h4 {
    margin: 0 0 10px;
    font-size: 17px;
    color: var(--gold-light);
}
.production-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}
.film-card:hover .film-poster img { transform: scale(1.06); }
.film-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(7,7,12,0.85) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.film-card:hover .film-poster::after { opacity: 1; }
.film-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.9);
    border: none;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.film-card:hover .film-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.film-info { padding: 14px 12px 16px; }
.film-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}
.film-info span { font-size: 12px; color: var(--muted); }

/* Production pipeline */
.pipeline { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%); }
.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .pipeline-grid { grid-template-columns: repeat(2, 1fr); } }
.pipeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
}
.pipeline-card .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.pipeline-card h4 { margin: 0 0 8px; font-size: 16px; }
.pipeline-card p { margin: 0; font-size: 13px; color: var(--muted); }

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.news-card:hover { border-color: rgba(212, 175, 55, 0.35); transform: translateY(-4px); }
.news-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1a24;
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 22px; }
.news-date { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.news-body h4 { margin: 0 0 10px; font-size: 17px; line-height: 1.35; }
.news-body p { margin: 0; font-size: 14px; color: var(--muted); }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-visual {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.about-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.timeline { margin-top: 32px; }
.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.timeline-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--gold);
}
.timeline-item h4 { margin: 0 0 6px; font-size: 16px; }
.timeline-item p { margin: 0; font-size: 14px; color: var(--muted); }

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #1a1520 0%, #0d0d14 50%, #1a1810 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.newsletter-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 260px;
    max-width: 440px;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

/* Footer */
.site-footer {
    background: #040408;
    padding: 56px 0 32px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; margin-bottom: 16px; background: transparent; }
.footer-brand p { font-size: 14px; color: var(--muted); margin: 0; max-width: 280px; }
.footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 16px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--muted);
    padding: 6px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal.is-open { display: flex; }
.modal-box {
    width: 100%;
    max-width: 900px;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 22px;
    z-index: 2;
}
.modal-video {
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    padding: 24px;
}
.modal-info { padding: 24px; }
.modal-info h3 { margin: 0 0 8px; font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; letter-spacing: 0.04em; }

/* Marquee */
.marquee-wrap {
    overflow: hidden;
    border-block: 1px solid var(--border);
    background: var(--bg-elevated);
    padding: 16px 0;
}
.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 35s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.35);
}
.marquee-track span strong { color: var(--gold); font-weight: 400; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Language selector z-index above header */
.sx-lang-slot { z-index: 10001; }

@media (max-width: 960px) {
    .header-nav, .header-cta { display: none; }
    .hamburger { display: flex; }
}
@media (max-width: 768px) {
    .section { padding: 48px 0; }
    .hero { min-height: 80vh; padding-bottom: 48px; }
    .newsletter-box { padding: 28px; }
}

/* Welcome overlay — clapperboard + countdown + film gates */
body.welcome-active { overflow: hidden; }

.welcome-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    pointer-events: auto;
    background: #000;
}
.welcome-overlay.is-gates-open { pointer-events: none; }
.welcome-overlay.is-done {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0s 0.4s;
}

.welcome-stage {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: radial-gradient(ellipse at center, #1a1520 0%, #000 72%);
    transition: opacity 0.45s ease, visibility 0.45s;
}
.welcome-overlay.is-gates-open .welcome-stage {
    opacity: 0;
    visibility: hidden;
}

/* Clapperboard */
.clapperboard {
    position: relative;
    width: min(380px, 88vw);
    padding-top: 36px;
    overflow: visible;
    z-index: 2;
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.65));
}
.clapper-arm {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    transform-origin: 12px 100%;
    transform: rotate(-32deg);
    z-index: 3;
    transition: transform 0.12s cubic-bezier(0.6, 0, 0.9, 0.4);
}
.clapperboard.is-snap .clapper-arm {
    transform: rotate(4deg);
    transition: transform 0.08s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.clapper-arm-stripes {
    height: 100%;
    border-radius: 8px 8px 0 0;
    border: 3px solid #111;
    background: repeating-linear-gradient(
        -12deg,
        #f8f8f8 0px,
        #f8f8f8 14px,
        #1a1a1a 14px,
        #1a1a1a 28px
    );
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
}
.clapper-body {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    background: #f0ece4;
    border: 3px solid #111;
    border-radius: 0 0 10px 10px;
    padding: 22px 24px 18px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
}
.clapper-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.14em;
    color: #111;
    line-height: 1;
}
.clapper-row {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.22em;
    color: #333;
    margin-top: 6px;
}
.clapper-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 2px dashed #bbb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #555;
}

.welcome-countdown {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 12vw, 5.5rem);
    letter-spacing: 0.08em;
    color: var(--gold-light);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.45), 0 4px 20px rgba(0, 0, 0, 0.8);
    margin: 0;
    min-height: 1.2em;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
    position: relative;
    z-index: 2;
}
.welcome-countdown.is-visible {
    opacity: 1;
    transform: scale(1);
}
.welcome-countdown.is-action {
    color: #fff;
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    text-shadow: 0 0 60px rgba(229, 9, 20, 0.6), 0 0 30px rgba(212, 175, 55, 0.5);
    animation: action-pulse 0.5s ease 2;
}
@keyframes action-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Film gates — tersembunyi saat hitung mundur, terbuka setelah clapper menutup */
.film-gate {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50.5%;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 30%),
        repeating-linear-gradient(
            90deg,
            #1a0a0a 0px,
            #2d1218 8px,
            #1a0808 16px,
            #3d1820 24px
        );
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.8);
    transition: transform 1.15s cubic-bezier(0.65, 0, 0.2, 1), opacity 0.35s ease, visibility 0.35s;
    will-change: transform;
    pointer-events: none;
}
.film-gate-left {
    left: 0;
    transform: translateX(0);
    transform-origin: left center;
    border-right: 4px solid #0a0a0a;
}
.film-gate-right {
    right: 0;
    transform: translateX(0);
    transform-origin: right center;
    border-left: 4px solid #0a0a0a;
    background:
        linear-gradient(270deg, rgba(0,0,0,0.5) 0%, transparent 30%),
        repeating-linear-gradient(
            90deg,
            #1a0a0a 0px,
            #2d1218 8px,
            #1a0808 16px,
            #3d1820 24px
        );
}
.welcome-overlay.is-gates-open .film-gate {
    opacity: 1;
    visibility: visible;
}
.welcome-overlay.is-gates-open .film-gate-left {
    transform: translateX(-100%);
}
.welcome-overlay.is-gates-open .film-gate-right {
    transform: translateX(100%);
}

@media (prefers-reduced-motion: reduce) {
    .welcome-overlay { display: none; }
    body.welcome-active { overflow: auto; }
}
