:root{
    --primary:#D6A84F;
    --primary-soft:rgba(214,168,79,.16);
    --primary-line:rgba(214,168,79,.36);
    --bg:#101217;
    --bg-2:#171B24;
    --surface:#1E2430;
    --surface-2:#252B38;
    --text:#F7F0E4;
    --muted:#B8B1A6;
    --border:rgba(255,255,255,.10);
    --shadow:0 18px 48px rgba(0,0,0,.32);
    --radius:18px;
    --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Microsoft YaHei","PingFang SC",Arial,sans-serif;
    color:var(--text);
    background:
      radial-gradient(circle at top left, rgba(214,168,79,.18), transparent 32rem),
      linear-gradient(180deg,#0D1016 0%,var(--bg) 40%,#12151D 100%);
    line-height:1.75;
    overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
main{padding-top:64px}
.site-header{
    position:fixed;
    top:0;left:0;right:0;
    z-index:99;
    background:rgba(14,16,22,.88);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--border);
}
.mobile-header{
    height:64px;
    display:grid;
    grid-template-columns:64px 1fr 86px;
    align-items:center;
    padding:0 12px;
}
.menu-button{
    width:44px;height:44px;
    display:inline-flex;
    flex-direction:column;
    gap:5px;
    justify-content:center;
    align-items:center;
    border:1px solid var(--border);
    border-radius:14px;
    cursor:pointer;
}
.menu-button span{
    width:20px;height:2px;
    background:var(--text);
    border-radius:9px;
}
.mobile-logo{
    justify-self:center;
    display:flex;
    align-items:center;
    justify-content:center;
}
.mobile-logo img{height:32px;width:auto;object-fit:contain}
.top-action-button,.main-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 18px;
    border-radius:999px;
    background:var(--primary);
    color:#14120D;
    font-weight:800;
    letter-spacing:.03em;
    box-shadow:0 12px 30px rgba(214,168,79,.28);
    transition:.22s ease;
    white-space:nowrap;
}
.top-action-button:hover,.main-button:hover{filter:brightness(.85);transform:translateY(-1px)}
.mobile-menu-checkbox{position:absolute;opacity:0;pointer-events:none}
.mobile-drawer{
    position:fixed;
    top:64px;
    left:0;
    width:min(84vw,330px);
    height:calc(100vh - 64px);
    background:rgba(18,21,29,.98);
    border-right:1px solid var(--border);
    transform:translateX(-104%);
    transition:transform .25s ease;
    box-shadow:var(--shadow);
    z-index:101;
    padding:18px;
}
.mobile-nav{display:grid;gap:8px}
.mobile-nav a{
    padding:13px 14px;
    border-radius:14px;
    color:var(--muted);
    background:rgba(255,255,255,.03);
}
.mobile-nav a.active,.mobile-nav a:hover{
    color:var(--text);
    background:var(--primary-soft);
    border:1px solid var(--primary-line);
}
.drawer-mask{
    display:none;
    position:fixed;
    inset:64px 0 0 0;
    background:rgba(0,0,0,.45);
    z-index:100;
}
.mobile-menu-checkbox:checked ~ .mobile-drawer{transform:translateX(0)}
.mobile-menu-checkbox:checked ~ .drawer-mask{display:block}
.desktop-header{display:none}
.section,.page-section{
    width:min(var(--max),calc(100% - 32px));
    margin:0 auto;
    padding:54px 0;
}
.movie-hero{
    min-height:calc(100vh - 64px);
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:
      linear-gradient(90deg,rgba(10,12,17,.92) 0%,rgba(10,12,17,.72) 48%,rgba(10,12,17,.45) 100%),
      url("banner.webp") center/cover no-repeat;
    border-bottom:1px solid var(--border);
}
.hero-inner{
    width:min(var(--max),calc(100% - 32px));
    margin:0 auto;
    padding:70px 0;
    display:grid;
    gap:28px;
}
.hero-copy{max-width:720px}
.eyebrow,.page-badge,.card-badge{
    display:inline-flex;
    align-items:center;
    width:max-content;
    padding:6px 12px;
    color:#16120B;
    background:var(--primary);
    border-radius:999px;
    font-size:.82rem;
    font-weight:800;
    letter-spacing:.05em;
}
.movie-hero h1,.page-hero h1{
    margin:18px 0 14px;
    font-size:clamp(2.25rem,8vw,5.7rem);
    line-height:1.03;
    letter-spacing:-.06em;
}
.movie-hero p,.page-hero p{
    color:var(--muted);
    font-size:1.05rem;
    max-width:760px;
}
.hero-stats{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}
.stat-card{
    background:rgba(255,255,255,.06);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:16px;
    backdrop-filter:blur(10px);
}
.stat-card strong{display:block;font-size:1.6rem;color:var(--primary)}
.stat-card span{color:var(--muted);font-size:.9rem}
.section-title{margin-bottom:24px}
.section-title h2,.footer-cta h2{
    margin:8px 0 8px;
    font-size:clamp(1.8rem,4vw,3rem);
    line-height:1.12;
    letter-spacing:-.04em;
}
.section-title p{max-width:780px;color:var(--muted)}
.category-grid,.service-grid,.page-card-grid,.faq-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{
    background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.032));
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:22px;
    box-shadow:0 12px 34px rgba(0,0,0,.16);
}
.movie-card{
    position:relative;
    overflow:hidden;
    min-height:210px;
}
.movie-card:before{
    content:"";
    position:absolute;
    inset:auto -30px -50px auto;
    width:150px;height:150px;
    border-radius:50%;
    background:var(--primary-soft);
}
.movie-card h3,.service-card h3,.info-card h3,.faq-item h3{margin:14px 0 8px;font-size:1.25rem}
.movie-card p,.service-card p,.info-card p,.faq-item p{color:var(--muted);margin:0 0 14px}
.text-link{
    color:var(--primary);
    font-weight:800;
    position:relative;
}
.text-link:after{
    content:"";
    display:inline-block;
    width:18px;height:1px;
    background:var(--primary);
    margin-left:8px;
    vertical-align:middle;
}
.service-card .tag{
    display:inline-flex;
    padding:5px 10px;
    border-radius:999px;
    color:var(--primary);
    background:var(--primary-soft);
    border:1px solid var(--primary-line);
    font-size:.8rem;
    font-weight:800;
}
.split-section,.device-showcase{
    display:grid;
    gap:24px;
    align-items:center;
}
.media-panel{
    border-radius:24px;
    overflow:hidden;
    border:1px solid var(--border);
    background:var(--surface);
    box-shadow:var(--shadow);
}
.media-panel img{width:100%;height:100%;object-fit:cover}
.bullet-list{display:grid;gap:12px;margin:20px 0;padding:0;list-style:none}
.bullet-list li{
    padding:14px 16px;
    border:1px solid var(--border);
    border-radius:16px;
    background:rgba(255,255,255,.04);
}
.data-chart-panel{
    display:grid;
    gap:16px;
}
.chart-row{
    display:grid;
    grid-template-columns:96px 1fr 56px;
    gap:12px;
    align-items:center;
}
.chart-bar{
    height:10px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    overflow:hidden;
}
.chart-bar span{
    display:block;
    height:100%;
    width:var(--w);
    border-radius:999px;
    background:linear-gradient(90deg,var(--primary),rgba(214,168,79,.45));
}
.rating-grid{
    display:grid;
    gap:12px;
    grid-template-columns:repeat(2,minmax(0,1fr));
}
.rating-card{
    padding:16px;
    border:1px solid var(--border);
    border-radius:16px;
    background:rgba(255,255,255,.04);
}
.stars{color:var(--primary);letter-spacing:.08em}
.security-section,.parental-guidance-section{
    border-color:var(--primary-line);
    background:linear-gradient(135deg,var(--primary-soft),rgba(255,255,255,.035));
}
.page-hero{
    width:min(var(--max),calc(100% - 32px));
    margin:0 auto;
    padding:72px 0 36px;
}
.page-hero h1{max-width:880px}
.page-layout{
    width:min(var(--max),calc(100% - 32px));
    margin:0 auto;
    padding:28px 0 72px;
}
.content-block{
    display:grid;
    gap:18px;
    margin-bottom:28px;
}
.content-block p{color:var(--muted);margin:0}
.table-wrap{
    overflow-x:auto;
    border:1px solid var(--border);
    border-radius:18px;
}
.data-table{
    width:100%;
    border-collapse:collapse;
    min-width:680px;
    background:rgba(255,255,255,.035);
}
.data-table th,.data-table td{
    padding:14px 16px;
    border-bottom:1px solid var(--border);
    text-align:left;
}
.data-table th{color:var(--primary);font-weight:900}
.notice{
    padding:20px;
    border-radius:18px;
    border:1px solid var(--primary-line);
    background:var(--primary-soft);
    color:var(--text);
}
.step-list{counter-reset:step;display:grid;gap:14px;margin:0;padding:0;list-style:none}
.step-list li{
    counter-increment:step;
    display:grid;
    grid-template-columns:44px 1fr;
    gap:14px;
    padding:18px;
    border:1px solid var(--border);
    border-radius:18px;
    background:rgba(255,255,255,.04);
}
.step-list li:before{
    content:counter(step);
    width:36px;height:36px;
    display:grid;place-items:center;
    border-radius:50%;
    background:var(--primary);
    color:#15110B;
    font-weight:900;
}
.site-footer{
    border-top:1px solid var(--border);
    background:#0B0D12;
}
.footer-cta{
    width:min(var(--max),calc(100% - 32px));
    margin:0 auto;
    padding:38px 0;
    display:grid;
    gap:22px;
    align-items:center;
    border-bottom:1px solid var(--border);
}
.footer-cta p{color:var(--muted);max-width:740px}
.footer-grid{
    width:min(var(--max),calc(100% - 32px));
    margin:0 auto;
    padding:42px 0;
    display:grid;
    gap:24px;
}
.footer-grid h3{margin:0 0 12px}
.footer-grid a{display:block;color:var(--muted);margin:6px 0}
.footer-grid p{color:var(--muted);margin:0}
.footer-logo{height:36px;width:auto;margin-bottom:14px}
.footer-bottom{
    width:min(var(--max),calc(100% - 32px));
    margin:0 auto;
    padding:18px 0 30px;
    display:grid;
    gap:8px;
    color:var(--muted);
    font-size:.9rem;
}
.search-icon{
    width:36px;height:36px;
    border:1px solid var(--border);
    border-radius:50%;
    display:inline-block;
    position:relative;
}
.search-icon:before{
    content:"";
    position:absolute;
    width:12px;height:12px;
    border:2px solid var(--text);
    border-radius:50%;
    left:9px;top:8px;
}
.search-icon:after{
    content:"";
    position:absolute;
    width:9px;height:2px;
    background:var(--text);
    transform:rotate(45deg);
    left:20px;top:23px;
    border-radius:4px;
}
@media (min-width:680px){
    .category-grid,.service-grid,.page-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .faq-grid,.hero-stats,.rating-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (min-width:980px){
    main{padding-top:78px}
    .mobile-header,.mobile-drawer,.drawer-mask{display:none}
    .desktop-header{
        height:78px;
        width:min(1300px,calc(100% - 48px));
        margin:0 auto;
        display:grid;
        grid-template-columns:auto 1fr auto auto;
        gap:24px;
        align-items:center;
    }
    .desktop-logo img{height:42px;width:auto;object-fit:contain}
    .desktop-nav{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:18px;
        min-width:0;
    }
    .desktop-nav a{
        color:var(--muted);
        font-weight:700;
        padding:27px 0 22px;
        position:relative;
        font-size:.94rem;
        white-space:nowrap;
    }
    .desktop-nav a:after{
        content:"";
        position:absolute;
        left:0;right:0;bottom:16px;
        height:3px;
        border-radius:8px;
        background:var(--primary);
        transform:scaleX(0);
        transition:.2s ease;
    }
    .desktop-nav a.active,.desktop-nav a:hover{color:var(--text)}
    .desktop-nav a.active:after,.desktop-nav a:hover:after{transform:scaleX(1)}
    .movie-hero{min-height:760px}
    .hero-inner{grid-template-columns:1.3fr .7fr;align-items:end}
    .category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .service-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .split-section,.device-showcase{grid-template-columns:1fr 1fr}
    .footer-cta{grid-template-columns:1fr auto}
    .footer-grid{grid-template-columns:2fr 1fr 1fr 1.3fr}
    .footer-bottom{grid-template-columns:1fr 1.4fr}
}
@media (min-width:1180px){
    .category-grid.six{grid-template-columns:repeat(6,minmax(0,1fr))}
}
