:root {
    --bg: #070707;
    --bg-soft: #11100f;
    --panel: rgba(23, 19, 16, 0.86);
    --panel-strong: #18120f;
    --gold: #d9ae63;
    --gold-soft: #f3d99a;
    --red: #8b1d1d;
    --red-soft: #c44b3d;
    --text: #f7efe2;
    --muted: #b7aa97;
    --line: rgba(217, 174, 99, 0.22);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 70% 0%, rgba(139, 29, 29, 0.3), transparent 35%),
        radial-gradient(circle at 10% 5%, rgba(217, 174, 99, 0.18), transparent 28%),
        linear-gradient(180deg, #050505 0%, #0c0908 45%, #060606 100%);
    min-height: 100vh;
    line-height: 1.72;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    background: var(--gold);
    color: #1d1208;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 99;
}
.skip-link:focus { top: 12px; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(6, 6, 6, 0.78);
    border-bottom: 1px solid rgba(217, 174, 99, 0.16);
}
.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 15px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.brand-symbol {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #211609;
    background: linear-gradient(135deg, #f5d991, #ba7b2d 58%, #4f150e);
    box-shadow: 0 0 28px rgba(217, 174, 99, 0.34);
}
.brand-name { font-size: 20px; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--muted);
    transition: color .2s ease, background .2s ease;
    font-size: 15px;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--text); background: rgba(217, 174, 99, 0.12); }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    color: var(--text);
}
.menu-toggle span { display:block; height:2px; margin:5px 10px; background: var(--gold-soft); }
.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: grid;
    align-items: center;
    border-bottom: 1px solid rgba(217, 174, 99, 0.12);
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.55) 48%, rgba(0,0,0,.08)),
                radial-gradient(circle at 82% 45%, rgba(243, 217, 154, .18), transparent 28%);
    z-index: 1;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
}
.hero-inner, .page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 96px 22px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-soft);
    background: rgba(217, 174, 99, 0.11);
    border: 1px solid rgba(217, 174, 99, 0.22);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: .08em;
}
.eyebrow:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: 0 0 14px var(--gold-soft);
}
h1, h2, h3 { line-height: 1.18; margin: 0; }
h1 {
    max-width: 830px;
    margin-top: 22px;
    font-size: clamp(42px, 7vw, 84px);
    letter-spacing: -0.06em;
}
.hero-lead, .page-lead {
    max-width: 760px;
    margin: 24px 0 0;
    color: #dacdb8;
    font-size: clamp(17px, 2.5vw, 21px);
}
.hero-actions, .section-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top: 34px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(217, 174, 99, 0.32);
    color: var(--text);
    background: rgba(255,255,255,.04);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: rgba(217, 174, 99, 0.12); border-color: rgba(243,217,154,.55); }
.btn-primary { background: linear-gradient(135deg, #e6bd72, #8f531d); color: #1a1107; font-weight: 800; }
.btn-primary:hover { background: linear-gradient(135deg, #f8dfa0, #b56d24); }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 740px;
    margin-top: 46px;
}
.stat-card, .mini-card, .info-card, .feature-card, .faq-item, .timeline-item, .contact-card, .filter-box {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}
.stat-card { padding: 18px; }
.stat-card strong { display:block; font-size: 22px; color: var(--gold-soft); }
.stat-card span { color: var(--muted); font-size: 14px; }
.section { max-width: var(--max); margin: 0 auto; padding: 86px 22px; }
.section.tight { padding-top: 54px; padding-bottom: 54px; }
.section-head { display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.04em; max-width: 720px; }
.section-head p { color: var(--muted); max-width: 520px; margin: 14px 0 0; }
.grid { display:grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.poster-card {
    position: relative;
    overflow: hidden;
    min-height: 290px;
    border: 1px solid rgba(217, 174, 99, 0.18);
    border-radius: var(--radius-lg);
    background: #120f0d;
    box-shadow: var(--shadow);
}
.poster-card.landscape { aspect-ratio: 16 / 10; min-height: auto; }
.poster-card img { width:100%; height:100%; object-fit:cover; transition: transform .45s ease, opacity .45s ease; }
.poster-card:hover img { transform: scale(1.06); opacity: .72; }
.poster-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 80px 20px 20px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.9));
}
.poster-overlay h3 { font-size: 22px; margin-bottom: 8px; }
.poster-overlay p { margin: 0; color: #d7c8b0; font-size: 14px; }
.play-badge {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(243, 217, 154, .18);
    border: 1px solid rgba(243, 217, 154, .42);
    transform: scale(.92);
    opacity: .86;
    transition: transform .2s ease, opacity .2s ease;
}
.play-badge:before {
    content: "";
    border-left: 14px solid var(--gold-soft);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
}
.poster-card:hover .play-badge { transform: scale(1.08); opacity: 1; }
.rating { color: var(--gold-soft); font-size: 13px; margin-top: 10px; display:inline-flex; gap:4px; }
.feature-card { padding: 24px; position: relative; overflow: hidden; }
.feature-card:after {
    content:"";
    position:absolute;
    right:-40px;
    top:-40px;
    width:120px;
    height:120px;
    border-radius:50%;
    background: rgba(217,174,99,.08);
}
.feature-card .icon { width: 48px; height:48px; border-radius: 16px; background: linear-gradient(135deg, rgba(217,174,99,.3), rgba(139,29,29,.35)); display:grid; place-items:center; color: var(--gold-soft); margin-bottom:18px; }
.feature-card h3 { font-size: 22px; margin-bottom:10px; }
.feature-card p, .info-card p, .mini-card p, .timeline-item p, .contact-card p { color: var(--muted); margin: 0; }
.channel-band {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(217,174,99,.10), rgba(139,29,29,.13)), #0d0b0a;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    min-height: 420px;
    box-shadow: var(--shadow);
}
.channel-band > div { padding: 36px; }
.channel-band img { width:100%; height:100%; object-fit:cover; min-height: 100%; }
.pill-list { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 24px; }
.pill { color: var(--gold-soft); border: 1px solid rgba(217,174,99,.25); background: rgba(0,0,0,.18); padding:8px 12px; border-radius:999px; font-size: 14px; }
.mini-card { padding: 20px; }
.mini-card h3 { font-size: 18px; margin-bottom: 8px; }
.quote-card { padding: 22px; border-radius: var(--radius-md); border:1px solid var(--line); background: rgba(255,255,255,.035); }
.quote-head { display:flex; align-items:center; gap:14px; margin-bottom: 14px; }
.quote-head img { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(217,174,99,.28); }
.quote-card p { color: #dccfb9; margin: 0; }
.faq-list { display:grid; gap: 14px; }
.faq-item { padding: 0; overflow: hidden; }
.faq-question { width:100%; border:0; background:transparent; color:var(--text); text-align:left; padding:20px 22px; display:flex; justify-content:space-between; cursor:pointer; }
.faq-question span { color: var(--gold-soft); }
.faq-answer { display:none; padding: 0 22px 22px; color: var(--muted); }
.faq-item.is-open .faq-answer { display:block; }
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    background: linear-gradient(135deg, rgba(12,10,9,.96), rgba(44,10,10,.78)), url('/assets/img/filmstrip.svg') center/cover no-repeat;
    border-bottom: 1px solid rgba(217,174,99,.13);
}
.page-hero:after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 78% 40%, rgba(217,174,99,.18), transparent 32%); }
.breadcrumb { color: var(--muted); margin-bottom: 18px; font-size: 14px; }
.breadcrumb a { color: var(--gold-soft); }
.info-card { padding: 26px; }
.info-card h2, .info-card h3 { margin-bottom: 12px; }
.split { display:grid; grid-template-columns: .95fr 1.05fr; gap: 26px; align-items:center; }
.split-image { border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow); }
.timeline { display:grid; gap: 18px; }
.timeline-item { padding: 22px; display:grid; grid-template-columns: 110px 1fr; gap: 18px; }
.timeline-date { color: var(--gold-soft); font-weight: 800; }
.filter-box { padding: 22px; margin-bottom: 28px; }
.filter-row { display:flex; flex-wrap:wrap; gap: 10px; }
.filter-chip { border:1px solid var(--line); background:rgba(255,255,255,.035); color:var(--text); border-radius:999px; padding: 8px 13px; cursor:pointer; }
.filter-chip.is-active { background:rgba(217,174,99,.18); color:var(--gold-soft); }
.video-shell { position:relative; border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); background:#0c0a09; box-shadow:var(--shadow); }
.video-shell img { width:100%; aspect-ratio: 16/9; object-fit:cover; }
.video-copy { padding: 20px; }
.contact-layout { display:grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items:start; }
.contact-form { display:grid; gap: 14px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    color: var(--text);
    background: rgba(0,0,0,.26);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.domain-box { margin-top: 16px; padding: 18px; border-radius: var(--radius-md); background: rgba(217,174,99,.08); border:1px solid rgba(217,174,99,.22); word-break: break-all; }
.domain-box strong { color: var(--gold-soft); }
.notice { border-left: 3px solid var(--gold); padding: 14px 16px; background: rgba(217,174,99,.08); border-radius: 0 14px 14px 0; color: #dccfb9; }
.site-footer { border-top: 1px solid rgba(217,174,99,.15); background: #060504; }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 54px 22px; display:grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 28px; }
.footer-grid h2 { font-size: 18px; margin-bottom: 14px; }
.footer-grid p { color: var(--muted); margin: 16px 0 0; max-width: 520px; }
.footer-grid a:not(.brand-mark) { display:block; color: var(--muted); margin: 8px 0; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(217,174,99,.12); max-width: var(--max); margin:0 auto; padding: 18px 22px 26px; display:flex; justify-content:space-between; gap:12px; color:var(--muted); font-size: 14px; }
@media (max-width: 980px) {
    .site-nav { position:absolute; left:18px; right:18px; top:72px; display:none; flex-direction:column; align-items:stretch; padding:14px; background:rgba(9,8,7,.96); border:1px solid var(--line); border-radius: 20px; }
    .site-nav.is-open { display:flex; }
    .menu-toggle { display:block; }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .channel-band, .split, .contact-layout { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
    .header-inner { padding: 12px 16px; }
    .brand-name { font-size: 18px; }
    .hero { min-height: 610px; }
    .hero-inner, .page-hero-inner { padding: 74px 18px; }
    .section { padding: 62px 18px; }
    .section-head { display:block; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .poster-card, .poster-card.landscape { aspect-ratio: auto; min-height: 260px; }
    .channel-band > div { padding: 26px; }
    .timeline-item { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .hero-actions, .section-actions { flex-direction: column; }
    .btn { width: 100%; }
}
