:root {
    --bg: #07090f;
    --panel: #10131c;
    --panel-2: #171b27;
    --text: #f7f8fc;
    --muted: #9ca4b7;
    --line: rgba(255,255,255,.1);
    --lime: #c7ff3d;
    --cyan: #41e6ff;
    --coral: #ff6b57;
    --violet: #8f7cff;
    --max: 1340px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, "Microsoft YaHei", "PingFang SC", sans-serif; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(7,9,15,.9); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.header-inner { width: min(var(--max), calc(100% - 40px)); min-height: 74px; margin: auto; display: flex; align-items: center; gap: 26px; }
.brand { width: 158px; flex: 0 0 auto; }
.brand img { width: 100%; height: 42px; }
.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; overflow-x: auto; scrollbar-width: none; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; padding: 9px 12px; color: #c8cedb; border-radius: 999px; font-size: .9rem; }
.nav-link:hover, .nav-link.active { background: var(--lime); color: #11150a; }
.search-form { display: flex; width: 228px; background: #151925; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.search-form input { min-width: 0; width: 100%; color: white; background: transparent; border: 0; padding: 10px 5px 10px 16px; outline: 0; }
.search-form button { width: 42px; border: 0; color: var(--lime); background: transparent; cursor: pointer; font-size: 1.25rem; }
main { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.hero { position: relative; aspect-ratio: 16/7.1; margin-top: 26px; border-radius: 28px; overflow: hidden; background: var(--panel); }
.hero-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .7s ease; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,6,10,.96) 0%, rgba(4,6,10,.65) 38%, rgba(4,6,10,.04) 75%), linear-gradient(0deg, rgba(4,6,10,.7), transparent 55%); }
.hero-copy { position: absolute; left: clamp(26px,5vw,76px); bottom: clamp(30px,8vw,92px); width: min(520px, 62%); }
.hero-tag, .eyebrow { display: inline-block; color: var(--lime); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .78rem; }
.hero-copy h2 { margin: 8px 0; font-size: clamp(2.2rem,5vw,5.3rem); line-height: 1.03; letter-spacing: -.055em; }
.hero-meta { color: var(--cyan); font-weight: 700; }
.hero-desc { max-width: 48ch; color: #d6d9e2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 44px; padding: 10px 18px; border-radius: 999px; font-weight: 800; border: 1px solid var(--line); }
.button.primary { background: var(--lime); color: #11150a; border-color: var(--lime); }
.button.ghost { background: rgba(255,255,255,.08); color: white; backdrop-filter: blur(10px); }
.button.large { min-height: 52px; padding-inline: 26px; }
.hero-arrow { position: absolute; z-index: 4; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; color: white; background: rgba(8,10,16,.55); font-size: 2rem; cursor: pointer; }
.hero-arrow.prev { left: 18px; } .hero-arrow.next { right: 18px; }
.hero-dots { position: absolute; z-index: 5; right: 28px; bottom: 26px; display: flex; gap: 7px; }
.hero-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 10px; background: rgba(255,255,255,.5); cursor: pointer; transition: .3s; }
.hero-dots button.active { width: 28px; background: var(--lime); }
.quick-strip { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; margin: 22px 0 70px; padding: 18px 24px; background: #11151f; border-left: 4px solid var(--lime); }
.quick-strip h1 { margin: 0; font-size: 1.2rem; } .quick-strip p { margin: 0; color: var(--muted); } .quick-strip > a { color: var(--lime); font-weight: 800; }
.home-section { margin: 76px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-heading h2 { margin: 2px 0 0; font-size: clamp(1.65rem,3vw,2.5rem); line-height: 1.15; }
.section-heading > a { color: var(--muted); }
.poster-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 18px; }
.poster-card { min-width: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .3s, border-color .3s; }
.poster-card:hover { transform: translateY(-6px); border-color: rgba(199,255,61,.5); }
.poster-link { position: relative; display: block; aspect-ratio: 2/3; overflow: hidden; background: #1b2030; }
.poster-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.poster-card:hover img { transform: scale(1.04); }
.quality, .status { position: absolute; top: 10px; padding: 4px 8px; border-radius: 6px; font-size: .72rem; font-weight: 800; }
.quality { left: 10px; background: var(--lime); color: #111; } .status { right: 10px; background: rgba(7,9,15,.82); color: white; }
.card-copy { padding: 14px; min-height: 126px; }
.card-copy h3 { margin: 0 0 7px; font-size: 1.05rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.card-copy p { margin: 0 0 10px; color: var(--muted); font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-copy > span { color: var(--cyan); font-size: .76rem; }
.spotlight-grid { padding: 38px; border-radius: 28px; background: linear-gradient(135deg,#171c27,#10252a); }
.spotlight-grid .poster-card:nth-child(1) { grid-column: span 2; }
.spotlight-grid .poster-card:nth-child(1) .poster-link { aspect-ratio: 4/3; }
.color-panel { padding: 38px; background: var(--lime); color: #10130b; border-radius: 28px; }
.color-panel .eyebrow, .color-panel .card-copy > span { color: #34420c; }
.color-panel .poster-card { background: #f5ffd8; border-color: rgba(0,0,0,.12); }
.color-panel .card-copy p { color: #4b5339; }
.split-showcase .poster-grid { grid-template-columns: 1.45fr repeat(4,1fr); }
.split-showcase .poster-card:first-child .poster-link { aspect-ratio: 1/1; }
.dark-shelf { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 45px 0; }
.rank-preview { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; margin: 84px 0; padding: 54px; background: radial-gradient(circle at 0 0,rgba(143,124,255,.25),transparent 42%),#11141d; border-radius: 28px; }
.rank-intro h2 { font-size: 3rem; margin: 8px 0; } .rank-intro p { color: var(--muted); }
.rank-list { list-style: none; padding: 0; margin: 0; }
.rank-list li { display: grid; grid-template-columns: 46px 1fr 44px 120px; gap: 12px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); }
.rank-list strong { color: var(--lime); font-size: 1.45rem; } .rank-list span { font-weight: 800; } .rank-list small { color: var(--muted); text-align: right; }
.about-panel { display: grid; grid-template-columns: 160px 1fr; gap: 40px; align-items: center; margin: 84px 0; padding: 54px; border: 1px solid var(--line); border-radius: 28px; }
.about-mark { aspect-ratio: 1; display: grid; place-items: center; background: var(--coral); color: white; border-radius: 50%; font-size: 3rem; font-weight: 900; }
.about-panel h2 { margin: 6px 0; font-size: 2.2rem; } .about-panel p { color: var(--muted); max-width: 75ch; }
.mobile-cta { display: flex; justify-content: space-between; gap: 40px; align-items: center; margin: 90px 0 0; padding: 52px; background: linear-gradient(115deg,#231b40,#142a36); border-radius: 28px 28px 0 0; }
.mobile-cta h2 { font-size: 2.5rem; margin: 6px 0; }.mobile-cta p { color: #c7ccda; }
.qr-art { width: 145px; border-radius: 18px; }
.site-footer { margin: 0 calc((100vw - min(var(--max), calc(100vw - 40px)))/-2); padding: 58px max(20px,calc((100vw - var(--max))/2)); background: #030508; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-logo { width: 160px; margin-bottom: 14px; }.footer-grid p { color: var(--muted); max-width: 50ch; }.footer-grid h2 { font-size: 1rem; }.footer-grid a { display: block; color: var(--muted); padding: 4px 0; }.copyright { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 38px; color: #737b8e; font-size: .82rem; }
.inner-page { padding-top: 22px; }.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; color: var(--muted); font-size: .85rem; margin-bottom: 22px; }.breadcrumb a:hover { color: var(--lime); }
.channel-hero, .text-hero { display: flex; align-items: center; gap: 30px; min-height: 250px; padding: 42px; background: linear-gradient(120deg,#121621,#1b2634); border-radius: 26px; }
.channel-icon { font-size: 5rem; }.channel-hero h1, .text-hero h1 { margin: 4px 0; font-size: clamp(2.4rem,5vw,4.7rem); }.channel-hero p,.text-hero p { max-width: 70ch; color: #c2c7d4; }
.filter-panel { margin: 28px 0; padding: 22px; background: var(--panel); border-radius: 18px; }.filter-row { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }.filter-row strong { margin-right: 12px; }.filter-button { border: 0; background: #202534; color: #ccd2de; padding: 8px 14px; border-radius: 999px; cursor: pointer; }.filter-button.active { background: var(--lime); color: #10130b; }.sort-row { display: flex; justify-content: space-between; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); }.sort-row select { margin-left: 8px; background: #202534; color: white; border: 0; border-radius: 8px; padding: 6px 10px; }
.featured-line { display: grid; grid-template-columns: 1.25fr 1fr; background: #161a24; border-radius: 24px; overflow: hidden; margin: 34px 0 58px; }.featured-line > img { width: 100%; height: 100%; aspect-ratio: 16/9; object-fit: cover; }.featured-line > div { align-self: center; padding: 36px; }.featured-line h2 { font-size: 2.4rem; margin: 5px 0; }.featured-line p { color: var(--muted); }
.channel-list { margin-bottom: 70px; }.pagination { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }.pagination > * { padding: 8px 14px; border-radius: 8px; background: var(--panel); }.pagination .current { background: var(--lime); color: #111; }
.detail-hero { position: relative; overflow: hidden; border-radius: 28px; min-height: 610px; display: flex; align-items: end; }.detail-backdrop { position: absolute; inset: 0; }.detail-backdrop img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }.detail-backdrop::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,#090b11 8%,rgba(9,11,17,.72) 55%,rgba(9,11,17,.15)); }.detail-content { position: relative; z-index: 2; display: grid; grid-template-columns: 230px 1fr; gap: 32px; align-items: end; padding: 48px; width: 100%; }.detail-poster { width: 100%; aspect-ratio:2/3; object-fit:cover; border-radius:16px; box-shadow:0 22px 50px rgba(0,0,0,.5); }.detail-copy h1 { margin: 4px 0; font-size: clamp(2.6rem,5vw,5rem); line-height:1; }.alias { color: var(--muted); }.meta-list { list-style:none; padding:0; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; }.meta-list li { color:#d9dce5; }.meta-list strong { display:block; color:var(--muted); font-size:.75rem; text-transform:uppercase; }.synopsis { max-width:75ch; color:#d0d4df; }.episode-section,.stills,.recommend-row,.play-info,.player-tools { margin:58px 0; }.episode-grid { display:flex; flex-wrap:wrap; gap:10px; }.episode-button { padding:10px 16px; background:var(--panel-2); border:1px solid var(--line); border-radius:9px; }.episode-button:hover,.episode-button.active { background:var(--lime); color:#111; }.still-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }.still-grid img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:16px; }.poster-grid.small { grid-template-columns:repeat(4,1fr); }.title-pager,.play-nav { display:flex; justify-content:space-between; gap:12px; padding:18px; background:var(--panel); border-radius:14px; }.text-hero { display:block; margin-bottom:38px; }.text-content { max-width:900px; margin:0 auto 70px; }.text-content h2 { margin-top:38px; }.text-content p,.text-content li { color:#c6cbd7; }.search-results { margin:40px 0 70px; }.rank-board { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:70px; }.rank-column { background:var(--panel); border-radius:20px; padding:24px; }.rank-column h2 { margin-top:0; }.rank-column ol { list-style:none; padding:0; }.rank-column li { display:grid; grid-template-columns:34px 1fr auto; gap:10px; padding:14px 0; border-bottom:1px solid var(--line); }.rank-column strong { color:var(--lime); }.notice-box { padding:26px; background:var(--panel); border-left:4px solid var(--cyan); margin:28px 0; }

