:root {
    --primary: #e8b44b;
    --primary-strong: #f0c96d;
    --primary-soft: rgba(232, 180, 75, 0.16);
    --bg: #0c1018;
    --bg-deep: #070a10;
    --panel: #131925;
    --panel-2: #182031;
    --text: #f5f1e8;
    --muted: #aeb6c5;
    --line: rgba(245, 241, 232, 0.12);
    --dark-text: #17202c;
    --radius: 18px;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: radial-gradient(circle at 20% -10%, rgba(232, 180, 75, 0.16), transparent 34%), var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.72;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.site-main { padding-top: 68px; }
.site-header { position: fixed; z-index: 1000; top: 0; left: 0; right: 0; border-bottom: 1px solid var(--line); background: rgba(7, 10, 16, 0.92); backdrop-filter: blur(18px); }
.mobile-header { height: 68px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 10px; padding: 0 14px; }
.logo img { width: 124px; height: 36px; object-fit: contain; }
.mobile-logo { justify-self: center; }
.menu-button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.03); padding: 11px; display: grid; gap: 5px; cursor: pointer; }
.menu-button span { display: block; height: 2px; border-radius: 999px; background: var(--text); }
.top-action, .main-button, .outline-button, .mini-link, .device-button {
    display: inline-flex; align-items: center; justify-content: center; min-height: 42px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}
.top-action, .main-button, .device-button { background: var(--primary); color: #15100a; padding: 0 18px; box-shadow: 0 12px 36px rgba(232,180,75,.22); }
.top-action:hover, .main-button:hover, .device-button:hover { filter: brightness(.85); transform: translateY(-1px); }
.drawer-mask { position: fixed; inset: 0; background: rgba(0,0,0,.58); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.mobile-drawer { position: fixed; top: 0; left: 0; width: min(86vw, 340px); height: 100vh; background: #0a0e16; padding: 18px; transform: translateX(-105%); transition: transform .28s ease; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 7px; }
.drawer-open .drawer-mask { opacity: 1; pointer-events: auto; }
.drawer-open .mobile-drawer { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.drawer-head img { width: 126px; height: 36px; object-fit: contain; }
.drawer-close { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line); background: transparent; color: var(--text); font-size: 28px; line-height: 1; cursor: pointer; }
.mobile-drawer a { padding: 13px 14px; border-radius: 14px; color: var(--muted); }
.mobile-drawer a.active, .mobile-drawer a:hover { color: var(--primary-strong); background: var(--primary-soft); }
.drawer-note { margin-top: 12px; color: var(--muted); font-size: 13px; }
.desktop-header { display: none; }
.container, .page-wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.movie-hero { min-height: 680px; display: grid; align-items: center; position: relative; overflow: hidden; background: linear-gradient(90deg, rgba(7,10,16,.92), rgba(7,10,16,.56), rgba(7,10,16,.88)), url('/banner.webp') center/cover no-repeat; }
.movie-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 150px; background: linear-gradient(180deg, transparent, var(--bg)); }
.hero-inner { position: relative; z-index: 1; padding: 80px 0 70px; display: grid; gap: 28px; }
.badge, .page-badge, .tag { display: inline-flex; align-items: center; gap: 8px; width: max-content; max-width: 100%; border: 1px solid rgba(232,180,75,.35); color: var(--primary-strong); background: var(--primary-soft); border-radius: 999px; padding: 7px 12px; font-size: 13px; font-weight: 800; }
.hero-copy { max-width: 760px; }
h1 { margin: 16px 0 18px; font-size: clamp(36px, 8vw, 74px); line-height: 1.02; letter-spacing: -1.8px; }
.hero-copy p, .lead { color: var(--muted); font-size: clamp(16px, 2.2vw, 20px); max-width: 820px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 26px; }
.hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 640px; }
.stat-card, .metric-card { background: rgba(19,25,37,.82); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.stat-card strong, .metric-card strong { display: block; color: var(--primary-strong); font-size: 26px; line-height: 1.1; }
.stat-card span, .metric-card span { color: var(--muted); font-size: 13px; }
.section { padding: 72px 0; }
.section-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.section-head h2, .page-section h2 { margin: 0; font-size: clamp(28px, 5vw, 44px); line-height: 1.12; }
.section-head p, .page-section p { margin: 0; color: var(--muted); }
.category-grid, .service-grid, .card-grid, .faq-grid, .data-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.movie-card, .service-card, .info-card, .faq-item, .data-chart-panel, .security-section, .parental-guidance-section, .table-card, .timeline-item {
    background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 18px 56px rgba(0,0,0,.18);
}
.movie-card:hover, .service-card:hover, .info-card:hover { border-color: rgba(232,180,75,.38); transform: translateY(-2px); }
.movie-card, .service-card, .info-card { transition: transform .2s ease, border-color .2s ease; }
.movie-card h3, .service-card h3, .info-card h3, .faq-item h3 { margin: 12px 0 8px; font-size: 20px; }
.movie-card p, .service-card p, .info-card p, .faq-item p { color: var(--muted); margin: 0; }
.mini-link { margin-top: 16px; padding: 0 14px; border: 1px solid var(--line); color: var(--primary-strong); min-height: 38px; font-size: 14px; }
.mini-link:hover { border-color: var(--primary); background: var(--primary-soft); }
.feature-split, .device-showcase, .page-hero { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.feature-image { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); box-shadow: var(--shadow); }
.feature-image img { width: 100%; min-height: 260px; object-fit: cover; }
.data-chart-panel .chart-row { display: grid; grid-template-columns: 92px 1fr 54px; align-items: center; gap: 12px; margin: 14px 0; color: var(--muted); }
.bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: inherit; background: var(--primary); }
.stars { color: var(--primary-strong); letter-spacing: 2px; }
.device-showcase { background: linear-gradient(135deg, rgba(232,180,75,.14), rgba(24,32,49,.82)); border: 1px solid var(--line); border-radius: 28px; padding: 24px; }
.device-copy ul, .check-list { padding-left: 0; list-style: none; margin: 18px 0 0; display: grid; gap: 10px; }
.device-copy li, .check-list li { position: relative; padding-left: 26px; color: var(--muted); }
.device-copy li::before, .check-list li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--primary); position: absolute; left: 2px; top: 12px; }
.security-section, .parental-guidance-section { border-color: rgba(232,180,75,.22); }
.notice-box { border-left: 4px solid var(--primary); background: var(--primary-soft); padding: 18px; border-radius: 14px; color: var(--text); }
.cta-section { margin: 72px auto; padding: 34px; border-radius: 28px; background: linear-gradient(135deg, var(--primary), #7b5a20); color: #15100a; display: grid; gap: 16px; }
.cta-section h2 { margin: 0; font-size: clamp(28px, 5vw, 44px); }
.cta-section p { margin: 0; color: rgba(21,16,10,.78); max-width: 760px; }
.cta-section .main-button { background: #15100a; color: var(--text); box-shadow: none; width: max-content; }
.page-hero { padding: 74px 0 46px; }
.page-hero-card { border-radius: 28px; padding: 28px; background: linear-gradient(145deg, rgba(232,180,75,.18), rgba(19,25,37,.9)); border: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(34px, 6vw, 64px); }
.page-section { padding: 34px 0; }
.table-card { overflow-x: auto; }
.info-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.info-table th, .info-table td { text-align: left; padding: 14px; border-bottom: 1px solid var(--line); }
.info-table th { color: var(--primary-strong); font-size: 14px; }
.info-table td { color: var(--muted); }
.timeline { display: grid; gap: 14px; }
.timeline-item time { color: var(--primary-strong); font-weight: 800; }
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding: 54px 0 28px; }
.footer-grid { width: min(1180px, calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 24px; }
.footer-grid h2 { font-size: 16px; margin: 0 0 12px; color: var(--primary-strong); }
.footer-grid p, .footer-legal p { color: var(--muted); margin: 12px 0 0; }
.footer-grid a:not(.footer-logo) { display: block; color: var(--muted); margin: 8px 0; }
.footer-grid a:hover { color: var(--primary-strong); }
.footer-legal { width: min(1180px, calc(100% - 32px)); margin: 28px auto 0; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; }
@media (min-width: 640px) {
    .category-grid, .service-grid, .card-grid, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
    .site-main { padding-top: 82px; }
    .mobile-header, .mobile-drawer, .drawer-mask { display: none; }
    .desktop-header { height: 82px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 24px; width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
    .desktop-logo img { width: 146px; height: 42px; }
    .desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.2vw, 22px); white-space: nowrap; }
    .desktop-nav a { position: relative; color: var(--muted); font-size: 15px; font-weight: 700; padding: 28px 0; }
    .desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
    .desktop-nav a:hover, .desktop-nav a.active { color: var(--primary-strong); }
    .desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
    .search-icon { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; position: relative; }
    .search-icon span { position: absolute; left: 12px; top: 11px; width: 14px; height: 14px; border: 2px solid var(--muted); border-radius: 50%; }
    .search-icon span::after { content: ""; width: 8px; height: 2px; background: var(--muted); position: absolute; right: -7px; bottom: -4px; transform: rotate(45deg); border-radius: 2px; }
    .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .service-grid, .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .data-grid { grid-template-columns: 1.1fr .9fr; }
    .feature-split, .device-showcase, .page-hero { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.4fr repeat(3, .8fr); }
    .movie-hero { min-height: 720px; }
}
@media (min-width: 1180px) {
    .category-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
