:root {
    --primary: #b78a3c;
    --primary-soft: rgba(183, 138, 60, 0.14);
    --primary-strong: #8f6624;
    --bg: #0c0b10;
    --bg-elevated: #15131d;
    --surface: #1d1a26;
    --surface-soft: #242130;
    --text: #f7f2e7;
    --muted: #b9b2a6;
    --line: rgba(255,255,255,0.11);
    --shadow: 0 18px 50px rgba(0,0,0,0.32);
    --radius: 18px;
    --header-height: 64px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(183,138,60,0.23), transparent 33%), var(--bg);
    line-height: 1.72;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(12,11,16,0.86); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.mobile-header { height: var(--header-height); display: grid; grid-template-columns: 52px 1fr 78px; align-items: center; padding: 0 14px; position: relative; }
.desktop-header { display: none; }
.logo, .mobile-logo img { width: 112px; height: auto; object-fit: contain; }
.mobile-logo { justify-self: center; }
.mobile-logo img { max-height: 36px; }
.mobile-toggle { position: absolute; opacity: 0; pointer-events: none; }
.menu-button { width: 44px; height: 44px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 14px; cursor: pointer; }
.menu-button span { width: 22px; height: 2px; border-radius: 4px; background: var(--text); display: block; }
.top-action { justify-self: end; background: var(--primary); color: #12100c; border-radius: 999px; padding: 9px 16px; font-weight: 800; font-size: 14px; line-height: 1; box-shadow: 0 8px 22px rgba(183,138,60,0.32); }
.top-action:hover, .main-button:hover, .pill-link:hover { filter: brightness(0.85); }
.mobile-drawer { position: fixed; inset: var(--header-height) auto 0 0; width: min(84vw, 320px); transform: translateX(-110%); transition: transform .28s ease; background: #111018; border-right: 1px solid var(--line); padding: 20px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow); z-index: 60; }
.mobile-drawer a { padding: 13px 14px; border-radius: 14px; color: var(--muted); font-weight: 700; }
.mobile-drawer a.active, .mobile-drawer a:hover { color: var(--text); background: var(--primary-soft); }
.drawer-shade { position: fixed; inset: var(--header-height) 0 0 0; background: rgba(0,0,0,.46); opacity: 0; pointer-events: none; transition: opacity .28s ease; z-index: 55; }
.mobile-toggle:checked ~ .mobile-drawer { transform: translateX(0); }
.mobile-toggle:checked ~ .drawer-shade { opacity: 1; pointer-events: auto; }
main { min-height: 58vh; }
.movie-hero { position: relative; min-height: 690px; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.movie-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(12,11,16,.96) 0%, rgba(12,11,16,.72) 52%, rgba(12,11,16,.22) 100%), url('banner.webp'); background-size: cover; background-position: center; transform: scale(1.02); }
.movie-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(0deg, var(--bg), transparent); }
.hero-content { position: relative; z-index: 2; padding: 96px 0 70px; max-width: 760px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.18; margin: 0; letter-spacing: -0.02em; }
h1 { font-size: clamp(38px, 8vw, 74px); max-width: 900px; }
h2 { font-size: clamp(28px, 4.8vw, 46px); }
h3 { font-size: 20px; }
p { margin: 0; color: var(--muted); }
.hero-lead { margin-top: 22px; font-size: clamp(16px, 2vw, 20px); max-width: 680px; color: #e4ddd1; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 30px; }
.hero-meta span, .badge { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.07); border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 700; }
.main-button { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: #12100c; border-radius: 999px; padding: 14px 22px; font-weight: 900; box-shadow: 0 18px 34px rgba(183,138,60,0.26); min-height: 48px; }
.section { padding: 76px 0; }
.section-head { display: grid; gap: 12px; margin-bottom: 30px; max-width: 780px; }
.grid { display: grid; gap: 18px; }
.category-grid { grid-template-columns: 1fr; }
.movie-card, .service-card, .info-card, .faq-item, .data-card, .timeline-card { background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035)); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 12px 35px rgba(0,0,0,0.14); }
.movie-card { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.movie-card::after { content: ""; position: absolute; right: -24px; bottom: -28px; width: 120px; height: 120px; border-radius: 50%; background: var(--primary-soft); }
.card-badge { width: 44px; height: 44px; border-radius: 15px; background: var(--primary-soft); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-weight: 900; border: 1px solid rgba(183,138,60,.32); }
.movie-card p, .service-card p, .info-card p { margin-top: 10px; }
.card-link, .pill-link { color: var(--primary); font-weight: 900; margin-top: 18px; display: inline-flex; }
.service-grid { grid-template-columns: 1fr; }
.service-card .tag { display: inline-flex; background: var(--primary-soft); color: var(--primary); border-radius: 999px; padding: 5px 10px; font-size: 12px; font-weight: 900; margin-bottom: 14px; }
.split { display: grid; gap: 26px; align-items: center; }
.showcase-image { border-radius: 24px; border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); background: var(--surface); }
.feature-list { display: grid; gap: 14px; margin-top: 22px; }
.feature-list li, .check-list li { color: var(--muted); margin-bottom: 10px; }
ul { padding-left: 20px; margin: 0; }
.data-chart-panel { background: linear-gradient(135deg, rgba(183,138,60,.18), rgba(255,255,255,.035)); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow); }
.chart-row { display: grid; grid-template-columns: 88px 1fr 56px; gap: 12px; align-items: center; margin: 16px 0; color: var(--muted); font-weight: 700; }
.bar { height: 10px; background: rgba(255,255,255,.12); border-radius: 999px; overflow: hidden; }
.bar span { display: block; height: 100%; border-radius: inherit; background: var(--primary); }
.star-card { display: flex; justify-content: space-between; gap: 14px; align-items: center; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 18px; }
.stars { color: var(--primary); letter-spacing: 2px; white-space: nowrap; }
.device-showcase { background: linear-gradient(180deg, rgba(255,255,255,.04), transparent); }
.security-section, .parental-guidance-section { border: 1px solid var(--line); border-radius: 24px; padding: 28px; background: rgba(255,255,255,.045); }
.notice { border-left: 4px solid var(--primary); background: var(--primary-soft); padding: 18px 20px; border-radius: 16px; color: var(--text); }
.notice p { color: #e9ddc9; }
.faq-list { display: grid; gap: 14px; }
.faq-item h3 { margin-bottom: 8px; }
.page-hero { padding: 78px 0 44px; background: radial-gradient(circle at 18% 10%, rgba(183,138,60,.25), transparent 35%); border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 760px; margin-top: 16px; font-size: 18px; color: #ded6ca; }
.content-layout { padding: 58px 0 78px; display: grid; gap: 26px; }
.article-block { background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 24px; padding: 26px; }
.article-block p + p { margin-top: 16px; }
.cards-3 { grid-template-columns: 1fr; }
.table-panel { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.04); }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; color: var(--muted); }
th { color: var(--text); background: rgba(255,255,255,.055); }
.status { color: var(--primary); font-weight: 900; }
.bottom-cta { padding: 66px 0; background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,.03)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-box { display: grid; gap: 24px; align-items: center; }
.cta-box h2 { margin-bottom: 12px; }
.cta-single { justify-self: start; }
.site-footer { padding: 54px 0 24px; background: #09080d; }
.footer-grid { display: grid; gap: 28px; }
.footer-logo { width: 122px; margin-bottom: 14px; }
.site-footer h3 { margin-bottom: 12px; font-size: 16px; }
.site-footer a { display: block; color: var(--muted); margin: 8px 0; }
.site-footer a:hover { color: var(--primary); }
.legal-line { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 18px; display: flex; flex-direction: column; gap: 8px; color: #8f887d; font-size: 13px; }
.search-icon { width: 23px; height: 23px; border: 2px solid var(--muted); border-radius: 50%; position: relative; display: inline-block; opacity: .82; }
.search-icon::after { content: ""; width: 9px; height: 2px; background: var(--muted); position: absolute; right: -7px; bottom: 1px; transform: rotate(45deg); border-radius: 2px; }
@media (min-width: 640px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid, .cards-3 { grid-template-columns: repeat(2, 1fr); }
    .cta-box { grid-template-columns: 1fr auto; }
}
@media (min-width: 960px) {
    :root { --header-height: 78px; }
    .mobile-header { display: none; }
    .desktop-header { height: var(--header-height); width: min(1180px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto auto; gap: 24px; align-items: center; }
    .desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.3vw, 24px); }
    .desktop-nav a { height: var(--header-height); display: inline-flex; align-items: center; color: var(--muted); font-weight: 800; font-size: 14px; border-bottom: 3px solid transparent; }
    .desktop-nav a.active, .desktop-nav a:hover { color: var(--text); border-bottom-color: var(--primary); }
    .desktop-action { justify-self: end; padding: 11px 19px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .split { grid-template-columns: 1.05fr .95fr; }
    .split.reverse { grid-template-columns: .95fr 1.05fr; }
    .cards-3 { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
    .legal-line { flex-direction: row; justify-content: space-between; }
}
@media (max-width: 420px) {
    .container { width: min(100% - 24px, 1120px); }
    .top-action { padding: 8px 12px; font-size: 13px; }
    .movie-hero { min-height: 620px; }
    .hero-meta span { font-size: 12px; }
    .section { padding: 58px 0; }
    .article-block, .security-section, .parental-guidance-section { padding: 20px; }
}
