:root {
    --bg: #070707;
    --panel: #11100e;
    --panel-soft: #17130f;
    --gold: #d8b66a;
    --gold-light: #ffe2a0;
    --red: #8c1e24;
    --text: #f7f0df;
    --muted: #b6aa92;
    --line: rgba(216, 182, 106, .24);
    --shadow: 0 24px 70px rgba(0, 0, 0, .48);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(216, 182, 106, .16), transparent 30%),
        radial-gradient(circle at 80% 12%, rgba(140, 30, 36, .2), transparent 34%),
        linear-gradient(180deg, #070707 0%, #0d0908 48%, #070707 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px clamp(18px, 4vw, 58px);
    background: rgba(7, 7, 7, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .04em; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 54%, #6d4318);
    color: #17100a;
    box-shadow: 0 0 26px rgba(216, 182, 106, .28);
}
.brand-text { font-size: 23px; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 15px;
    transition: .22s ease;
}
.site-nav a:hover, .site-nav a.active { color: #150f08; background: var(--gold); }
.nav-toggle { display: none; border: 1px solid var(--line); background: #111; color: var(--gold-light); border-radius: 12px; padding: 8px 12px; font-size: 20px; }
main { overflow: hidden; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.hero {
    position: relative;
    min-height: 760px;
    padding: 92px 0 74px;
    isolation: isolate;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,7,7,.96) 0%, rgba(7,7,7,.78) 39%, rgba(7,7,7,.32) 100%),
        url('/assets/img/hero-cinema.svg') center/cover no-repeat;
    z-index: -2;
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 220px;
    background: linear-gradient(180deg, transparent, var(--bg));
    z-index: -1;
}
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(340px, .78fr); gap: 48px; align-items: center; }
.eyebrow { color: var(--gold-light); letter-spacing: .18em; text-transform: uppercase; font-size: 13px; font-weight: 800; }
h1, h2, h3 { line-height: 1.18; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 76px); max-width: 820px; letter-spacing: -.04em; }
.hero p { color: #e6dac5; font-size: clamp(16px, 2vw, 20px); max-width: 720px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, .05);
    transition: .22s ease;
    font-weight: 800;
}
.btn.primary { color: #140d07; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 16px 36px rgba(216, 182, 106, .22); }
.btn:hover { transform: translateY(-2px); border-color: rgba(216, 182, 106, .52); }
.hero-panel {
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 16px;
    background: rgba(15, 13, 11, .72);
    box-shadow: var(--shadow);
}
.hero-panel img { border-radius: 22px; border: 1px solid rgba(255,255,255,.08); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.stat { padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.045); }
.stat strong { display: block; color: var(--gold-light); font-size: 26px; }
.stat span { color: var(--muted); font-size: 13px; }
.section { padding: 78px 0; }
.section.compact { padding: 52px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.section-title { max-width: 760px; }
.section-title .eyebrow { display: block; margin-bottom: 10px; }
.section h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.03em; }
.section-lead { color: var(--muted); max-width: 680px; margin: 12px 0 0; }
.grid { display: grid; gap: 22px; }
.grid.cards-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cards-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    box-shadow: 0 20px 46px rgba(0,0,0,.22);
}
.card-body { padding: 22px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p, .muted { color: var(--muted); }
.poster { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.poster.tall { aspect-ratio: 3/4; }
.play-card .play-badge {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.08);
    opacity: 0;
    transition: .22s ease;
}
.play-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #130f09;
    background: var(--gold-light);
    box-shadow: 0 0 36px rgba(255,226,160,.42);
    font-weight: 900;
}
.play-card:hover .play-badge { opacity: 1; background: rgba(0,0,0,.42); }
.play-card:hover { transform: translateY(-3px); }
.play-card { transition: .22s ease; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.tag { border: 1px solid var(--line); color: var(--gold-light); border-radius: 999px; padding: 6px 11px; font-size: 13px; background: rgba(216, 182, 106, .06); }
.channel-card { min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; }
.channel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
    z-index: 1;
}
.channel-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.channel-card .card-body { position: relative; z-index: 2; }
.feature-list { display: grid; gap: 14px; }
.feature-item { display: grid; grid-template-columns: 54px 1fr; gap: 15px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.04); }
.feature-icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: rgba(216,182,106,.12); color: var(--gold-light); font-size: 24px; }
.split { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1fr); gap: 36px; align-items: center; }
.dark-panel { border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(135deg, rgba(216,182,106,.09), rgba(140,30,36,.11)); padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow); }
.timeline { display: grid; gap: 14px; }
.timeline-item { display: grid; grid-template-columns: 96px 1fr; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.04); }
.timeline-date { color: var(--gold-light); font-weight: 900; }
.hero-small { padding: 72px 0 40px; background: linear-gradient(135deg, rgba(216,182,106,.13), rgba(140,30,36,.12), transparent); border-bottom: 1px solid var(--line); }
.hero-small h1 { font-size: clamp(38px, 5vw, 64px); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter-btn { border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); color: var(--text); padding: 9px 14px; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: #150f08; }
.table-card { overflow: auto; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; padding: 16px; border-bottom: 1px solid var(--line); }
th { color: var(--gold-light); font-weight: 900; }
.faq { display: grid; gap: 14px; }
details { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.045); padding: 16px 18px; }
summary { cursor: pointer; color: var(--gold-light); font-weight: 900; }
blockquote { margin: 0; padding: 20px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.04); border-radius: 18px; color: #dfd3bd; }
.contact-list { display: grid; gap: 14px; }
.contact-item { padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.04); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; color: var(--text); background: rgba(255,255,255,.055); padding: 13px 14px; font: inherit; }
textarea { grid-column: 1 / -1; min-height: 126px; resize: vertical; }
.site-footer { border-top: 1px solid var(--line); padding: 48px clamp(18px, 4vw, 58px) 28px; background: #060606; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr; gap: 32px; width: min(1180px, 100%); margin: 0 auto; }
.footer-brand { font-size: 28px; color: var(--gold-light); font-weight: 900; }
.site-footer h2 { font-size: 18px; color: var(--gold-light); margin-bottom: 12px; }
.site-footer a { display: block; color: var(--muted); margin: 8px 0; }
.site-footer p { color: var(--muted); }
.footer-bottom { width: min(1180px, 100%); margin: 28px auto 0; padding-top: 20px; border-top: 1px solid rgba(216,182,106,.16); }
@media (max-width: 980px) {
    .hero-layout, .split { grid-template-columns: 1fr; }
    .grid.cards-4, .grid.cards-3 { grid-template-columns: repeat(2, 1fr); }
    .section-head { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .site-header { padding: 12px 18px; }
    .nav-toggle { display: block; }
    .site-nav { position: absolute; top: 68px; left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(7,7,7,.96); }
    .site-nav.open { display: flex; }
    .site-nav a { border-radius: 12px; }
    .hero { min-height: auto; padding: 58px 0; }
    .stats { grid-template-columns: 1fr; }
    .grid.cards-4, .grid.cards-3, .grid.cards-2 { grid-template-columns: 1fr; }
    .section { padding: 52px 0; }
    .timeline-item { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}
