/* roulang page: index */
:root {
    --brand: #E5504D;
    --brand-dark: #C83A3F;
    --gold: #EFAF3D;
    --bg: #121117;
    --surface: #1C1A22;
    --surface2: #26232D;
    --paper: #F5F1EA;
    --mute: #A7A2B3;
    --weak: #7E7A87;
    --radius-card: 16px;
    --radius-poster: 12px;
    --shadow-card: 0 8px 24px rgba(0,0,0,.35);
    --shadow-float: 0 18px 40px rgba(0,0,0,.5);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--paper);
    font-family: "Noto Sans SC", system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button, input { font-family: inherit; }
  h1,h2,h3,h4 { margin: 0; line-height: 1.25; }
  p { margin: 0; }
  .wrap { max-width: 1280px; margin: 0 auto; padding-left: 16px; padding-right: 16px; }
  @media (min-width: 1024px) { .wrap { padding-left: 24px; padding-right: 24px; } }
  .sec { padding-top: 60px; padding-bottom: 60px; }
  @media (min-width: 1024px) { .sec { padding-top: 90px; padding-bottom: 90px; } }

  /* 焦点可见 */
  a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 8px;
  }

  /* Header 导航 */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 70px;
    background: rgba(18,17,23, .82);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: box-shadow .3s, background .3s;
  }
  .site-header.scrolled {
    background: rgba(14,13,18,.95);
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
  }
  .header-inner { display: flex; align-items: center; gap: 16px; min-height: 70px; }
  .logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
  .logo-ico {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff; font-size: 13px;
    box-shadow: 0 6px 16px rgba(229,80,77,.35);
  }
  .logo-txt { font-weight: 900; font-size: 15px; letter-spacing: .5px; white-space: nowrap; }
  .logo-free {
    display: inline-flex; align-items: center; height: 22px;
    padding: 0 7px; border: 1px solid rgba(239,175,61,.5);
    color: var(--gold); font-size: 11px; border-radius: 999px; font-weight: 600;
  }
  .site-nav { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
  .nav-link {
    position: relative;
    padding: 8px 12px; border-radius: 999px;
    color: var(--mute); font-size: 14px; font-weight: 500;
    transition: all .25s;
    white-space: nowrap;
  }
  .nav-link:hover { color: var(--paper); background: rgba(255,255,255,.05); }
  .nav-link.active { color: var(--paper); background: rgba(229,80,77,.13); }
  .nav-link.active::after {
    content: ''; position: absolute; left: 18px; right: 18px; bottom: 2px;
    height: 2px; border-radius: 2px; background: var(--brand);
  }
  .header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
  .search-box {
    display: none; align-items: center; gap: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 8px 0 14px;
    height: 38px;
    transition: border-color .2s, box-shadow .2s;
  }
  @media (min-width: 1280px) { .search-box { display: flex; width: 240px; } }
  .search-box input {
    flex: 1; min-width: 0; background: transparent; border: 0; outline: 0;
    color: var(--paper); font-size: 13px;
  }
  .search-box input::placeholder { color: var(--weak); }
  .search-box:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(229,80,77,.16); }
  .search-submit {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border: 0; border-radius: 999px;
    background: var(--brand); color: #fff; cursor: pointer; transition: background .2s;
  }
  .search-submit:hover { background: #f05f5c; }
  .ghost-btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 38px; padding: 0 14px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.15); color: var(--paper);
    background: transparent; font-size: 14px; cursor: pointer; transition: all .25s;
  }
  .ghost-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
  .nav-cta {
    display: inline-flex; align-items: center; justify-content: center;
    height: 40px; padding: 0 20px; border-radius: 999px;
    background: var(--brand); color: #fff; font-weight: 700; font-size: 14px;
    box-shadow: 0 8px 20px rgba(229,80,77,.26);
    transition: all .25s; white-space: nowrap;
  }
  .nav-cta:hover { background: #f05f5c; transform: translateY(-1px); box-shadow: 0 12px 26px rgba(229,80,77,.34); }
  /* 移动端菜单按钮 */
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05); color: var(--paper); cursor: pointer; margin-left: auto;
  }
  @media (min-width: 1024px) { .menu-toggle { display: none; } }
  .mobile-nav {
    display: none; flex-direction: column; gap: 6px; padding: 12px 16px 18px;
    background: rgba(18,17,23,.98); border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    padding: 12px 16px; border-radius: 12px; color: var(--paper);
    font-weight: 500; font-size: 15px;
    background: rgba(255,255,255,.03);
  }
  .mobile-nav a:hover { background: rgba(255,255,255,.07); }
  .mobile-search { display: flex; gap: 8px; padding: 8px 0; }
  .mobile-search input {
    flex: 1; height: 42px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06); color: var(--paper); padding: 0 16px; font-size: 14px;
  }

  /* 通用按钮 */
  .btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    height: 50px; padding: 0 28px; border-radius: 999px;
    background: var(--brand); color: #fff; font-size: 15px; font-weight: 700;
    box-shadow: 0 10px 26px rgba(229,80,77,.26); transition: all .25s;
  }
  .btn-primary:hover { background: #f4615e; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(229,80,77,.38); }
  .btn-primary:active { transform: translateY(0); }
  .btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    height: 50px; padding: 0 26px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22); color: var(--paper);
    font-size: 15px; font-weight: 600; transition: all .25s;
  }
  .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
  .btn-lg { height: 58px; padding: 0 36px; font-size: 17px; }

  /* 区块头 */
  .sec-head { max-width: 760px; margin-bottom: 36px; }
  .kicker {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 4px 14px 4px 10px; border-radius: 999px;
    background: rgba(229,80,77,.12); border: 1px solid rgba(229,80,77,.3);
    color: #f2a3a1; font-size: 12px; font-weight: 600; letter-spacing: 1px;
  }
  .sec-title { margin-top: 14px; font-size: 28px; font-weight: 900; color: var(--paper); }
  .sec-sub { margin-top: 14px; color: var(--mute); font-size: 15px; line-height: 1.8; }
  @media (min-width: 768px) { .sec-title { font-size: 36px; } }

  /* Hero */
  .hero-section { position: relative; padding-top: 52px; padding-bottom: 70px; overflow: hidden; }
  @media (min-width: 1024px) { .hero-section { min-height: 720px; display: flex; align-items: center; padding-top: 40px; padding-bottom: 40px; } }
  .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .2; }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(18,17,23,.95) 0%, rgba(18,17,23,.72) 45%, rgba(18,17,23,.5) 100%);
  }
  .hero-grid { position: relative; display: grid; gap: 48px; align-items: center; }
  @media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 28px; } }
  .hero-h1 { font-size: 32px; line-height: 1.22; font-weight: 900; margin: 18px 0 16px; }
  @media (min-width: 768px) { .hero-h1 { font-size: 48px; } }
  @media (min-width: 1280px) { .hero-h1 { font-size: 54px; } }
  .hero-h1 .hero-accent { color: var(--brand); }
  .hero-sub { max-width: 620px; color: var(--mute); font-size: 15px; margin-bottom: 26px; line-height: 1.8; }
  .hero-search {
    display: flex; align-items: center; gap: 8px; max-width: 560px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px; padding: 6px 6px 6px 20px; transition: border-color .25s, box-shadow .25s;
  }
  .hero-search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(229,80,77,.14); }
  .hero-search input { flex: 1; min-width: 0; background: transparent; border: 0; outline: 0; color: var(--paper); font-size: 15px; }
  .hero-search input::placeholder { color: var(--weak); }
  .hero-search button {
    height: 44px; padding: 0 24px; border: 0; border-radius: 999px;
    background: var(--brand); color: #fff; font-weight: 700; font-size: 14px; cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .hero-search button:hover { background: #f05f5c; transform: scale(1.02); }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
  /* 齿轮倒计时 */
  .countdown-tip { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; }
  .cd-ring { position: relative; width: 42px; height: 42px; }
  .cd-ring svg { transform: rotate(-90deg); }
  .cd-ring .track { fill: none; stroke: rgba(255,255,255,.09); stroke-width: 4; }
  .cd-ring .bar { fill: none; stroke: var(--gold); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 113; stroke-dashoffset: 18; }
  .cd-num {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: var(--gold);
  }
  .cd-text { font-size: 13px; color: var(--mute); }
  .hero-media { position: relative; min-height: 440px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-float); }
  @media (min-width: 1024px) { .hero-media { min-height: 530px; } }
  .hm-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
  .hm-mask { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,17,23,0.05) 0%, rgba(18,17,23,.22) 55%, rgba(18,17,23,.86) 100%); }
  .cover-stack { position: absolute; inset: 0; }
  .cover-stack img { position: absolute; border-radius: 16px; box-shadow: var(--shadow-float); object-fit: cover; }
  .cover-main {
    width: 62%; right: 10%; bottom: 8%; top: 18%;
    border: 2px solid rgba(255,255,255,.14);
  }
  .cover-side {
    width: 40%; left: 6%; bottom: 20%; top: auto; height: 48%;
    border: 2px solid rgba(255,255,255,.08);
    transform: rotate(-3deg);
  }
  @media (max-width: 520px) {
    .cover-main { width: 70%; right: 5%; }
    .cover-side { width: 48%; left: 2%; }
  }
  .hm-chip {
    position: absolute; left: 18px; bottom: 16px; z-index: 3;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 999px;
    background: rgba(0,0,0,.5); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1); color: #fff; font-size: 13px; font-weight: 600;
  }
  .hm-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); animation: pulse 1.6s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

  /* 痛点区 */
  .pain-panel {
    background: var(--surface); border: 1px solid rgba(255,255,255,.06);
    border-radius: 22px; overflow: hidden; display: grid;
    grid-template-columns: 1fr;
    box-shadow: var(--shadow-card);
  }
  @media (min-width: 900px) { .pain-panel { grid-template-columns: repeat(4, 1fr); } }
  .pain-item { position: relative; padding: 28px 26px; border-bottom: 1px solid rgba(255,255,255,.05); }
  @media (min-width: 900px) { .pain-item { border-bottom: 0; border-right: 1px solid rgba(255,255,255,.05); } }
  @media (min-width: 900px) { .pain-item:last-child { border-right: 0; } }
  .pain-item:hover { background: rgba(255,255,255,.03); }
  .pain-num { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 14px; color: #fff; font-weight: 900; font-size: 19px; background: rgba(229,80,77,.16); border: 1px solid rgba(229,80,77,.3); margin-bottom: 18px; }
  .pain-item .p-title { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
  .pain-item .p-desc { color: var(--mute); font-size: 14px; line-height: 1.7; }
  .pain-more {
    border-top: 1px solid rgba(255,255,255,.05); color: var(--gold);
    padding: 14px 26px; font-size: 13px; display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.02);
  }

  /* 解决方案区 */
  .source-strip {
    display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; padding: 16px 20px; margin-bottom: 34px;
  }
  .source-strip span { font-size: 14px; font-weight: 700; color: var(--paper); }
  .source-strip i { color: var(--brand); font-style: normal; font-weight: 900; }
  .source-strip em { font-style: normal; color: var(--gold); font-size: 12px; background: rgba(239,175,61,.16); border: 1px solid rgba(239,175,61,.3); padding: 3px 10px; border-radius: 999px; font-weight: 600; }
  .sol-grid { display: grid; gap: 26px; }
  @media (min-width: 1100px) { .sol-grid { grid-template-columns: 1.05fr .95fr; } }
  .cat-box, .update-box {
    background: var(--surface); border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px; padding: 28px; box-shadow: var(--shadow-card);
  }
  .cat-title { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
  .cat-tip { color: var(--weak); font-size: 14px; margin-bottom: 20px; }
  .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    font-size: 13px; color: var(--paper); font-weight: 500;
    background: var(--surface2); border: 1px solid rgba(255,255,255,.06);
    transition: all .22s;
  }
  .tag:hover { background: rgba(229,80,77,.16); border-color: rgba(229,80,77,.5); color: #fff; }
  .tag .num { font-size: 11px; color: var(--gold); }
  .cat-covers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mini-cover { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
  .mini-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
  .mini-cover:hover img { transform: scale(1.05); }
  .mini-cover span {
    position: absolute; left: 8px; bottom: 8px; z-index: 2;
    background: rgba(0,0,0,.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    color: #fff; font-size: 12px; padding: 3px 10px; border-radius: 999px;
  }
  .update-list { display: flex; flex-direction: column; }
  .update-item {
    display: flex; gap: 12px; align-items: center;
    padding: 10px 8px; border-radius: 14px; transition: background .2s, transform .2s;
  }
  .update-item:hover { background: rgba(255,255,255,.05); transform: translateX(2px); }
  .update-item .thumb { position: relative; width: 64px; height: 88px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--surface2); }
  .update-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
  .update-info { flex: 1; min-width: 0; }
  .update-name { font-weight: 700; font-size: 15px; color: var(--paper); }
  .update-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
  .update-meta .b { font-size: 11px; font-weight: 600; }
  .b-red { color: #f2a3a1; background: rgba(229,80,77,.13); padding: 2px 8px; border-radius: 999px; }
  .b-gold { color: var(--gold); background: rgba(239,175,61,.12); padding: 2px 8px; border-radius: 999px; }
  .b-line { color: var(--weak); border: 1px solid rgba(255,255,255,.12); padding: 2px 8px; border-radius: 999px; }
  .update-link { color: var(--mute); font-size: 12px; font-weight: 600; flex-shrink: 0; }
  .update-link:hover { color: var(--brand); }

  /* 热播与数据 */
  .stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 40px; }
  @media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
  .stat-cell {
    background: var(--surface); border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; padding: 24px 18px; text-align: center;
    transition: transform .25s, box-shadow .25s;
  }
  .stat-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
  .stat-num { font-size: 34px; font-weight: 900; line-height: 1.1; color: var(--paper); }
  .stat-num small { font-size: 15px; font-weight: 600; color: var(--brand); margin-left: 2px; }
  .stat-label { margin-top: 6px; color: var(--mute); font-size: 13px; }

  .rank-wrap { display: grid; gap: 26px; }
  @media (min-width: 1100px) { .rank-wrap { grid-template-columns: 1.2fr .55fr; align-items: start; } }
  .rank-list { display: flex; flex-direction: column; gap: 6px; }
  .rank-row {
    display: flex; align-items: center; gap: 12px;
    background: transparent; border-radius: 16px;
    border-left: 3px solid transparent;
    padding: 10px 14px; transition: all .25s;
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .rank-row:hover { background: rgba(255,255,255,.045); border-left-color: var(--brand); transform: translateX(4px); }
  .rank-no { width: 34px; height: 34px; border-radius: 12px; background: var(--surface2); color: var(--mute); font-weight: 800; font-size: 14px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
  .rank-row.first .rank-no { background: var(--brand); color: #fff; box-shadow: 0 4px 14px rgba(229,80,77,.3); }
  .rank-info { flex: 1; min-width: 0; }
  .rank-name { font-weight: 700; font-size: 16px; }
  .rank-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
  .rank-tags span { font-size: 12px; color: var(--weak); }
  .rank-tags em { font-style: normal; color: var(--gold); font-size: 12px; }
  .rank-btn {
    padding: 6px 18px; border-radius: 999px; background: rgba(229,80,77,.14);
    color: #ffb3b1; font-size: 13px; font-weight: 600; border: 1px solid rgba(229,80,77,.3);
    transition: all .25s;
  }
  .rank-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
  .today-pick { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); min-height: 320px; display: flex; align-items: flex-end; }
  .today-pick::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.86) 100%); z-index: 1; }
  .today-pick img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .tp-body { position: relative; z-index: 2; padding: 24px; }
  .tp-body .tp-tag { display: inline-block; font-size: 12px; color: var(--gold); background: rgba(239,175,61,.15); padding: 2px 10px; border-radius: 999px; margin-bottom: 8px; border: 1px solid rgba(239,175,61,.3); }
  .tp-body .tp-name { font-size: 22px; font-weight: 800; }
  .tp-body .tp-desc { color: var(--mute); font-size: 13px; margin-top: 6px; }

  /* 用户证言 */
  .testi-grid { display: grid; gap: 20px; }
  @media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(2,1fr); } }
  .testi-card {
    background: var(--surface); border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px; padding: 26px; transition: all .25s;
  }
  .testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); border-color: rgba(229,80,77,.2); }
  .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
  .testi-text { color: #ddd6df; font-size: 15px; line-height: 1.8; }
  .testi-user { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
  .avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; color: #fff; font-size: 14px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  }
  .testi-name { font-size: 14px; font-weight: 600; }
  .testi-role { font-size: 12px; color: var(--weak); }
  .badge-online { font-size: 11px; color: var(--gold); border: 1px solid rgba(239,175,61,.4); border-radius: 999px; padding: 2px 8px; margin-left: auto; white-space: nowrap; }

  /* FAQ */
  .faq-box {
    background: var(--surface); border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; padding: 24px 26px; margin-bottom: 12px;
    transition: border-color .2s;
  }
  .faq-box:last-child { margin-bottom: 0; }
  .faq-box:hover { border-color: rgba(229,80,77,.2); }
  .faq-q { font-size: 17px; font-weight: 700; color: var(--paper); display: flex; align-items: center; gap: 12px; }
  .faq-q::before { content: 'Q'; font-weight: 900; color: var(--brand); font-size: 14px; background: rgba(229,80,77,.14); width: 28px; height: 28px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .faq-a { margin-top: 14px; margin-left: 40px; color: var(--mute); font-size: 14px; line-height: 1.8; }

  /* CTA */
  .cta-section { position: relative; padding: 80px 0; overflow: hidden; }
  .cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
  .cta-mask { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,17,23,.96) 0%, rgba(18,17,23,.72) 65%, rgba(18,17,23,.45) 100%); }
  .cta-content { position: relative; z-index: 2; max-width: 680px; }
  .cta-title { font-size: 30px; font-weight: 900; line-height: 1.3; }
  @media (min-width: 768px) { .cta-title { font-size: 46px; } }
  .cta-sub { margin-top: 16px; color: var(--mute); font-size: 16px; line-height: 1.8; max-width: 560px; }
  .cta-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .mini-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
  .mini-badges span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--mute); background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09); padding: 6px 14px; border-radius: 999px;
  }
  .mini-badges span::before { content: '✓'; color: var(--gold); font-weight: 900; font-size: 12px; }

  /* 页脚 */
  .footer { background: #0e0d12; border-top: 1px solid rgba(255,255,255,.06); padding-top: 60px; }
  .footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; padding-bottom: 40px; }
  @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
  @media (min-width: 1100px) { .footer-grid { grid-template-columns: 1.2fr .9fr .9fr 1fr; } }
  .foot-name { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 18px; margin-bottom: 8px; }
  .foot-desc { color: var(--weak); font-size: 14px; line-height: 1.8; margin-top: 12px; max-width: 300px; }
  .foot-title { font-size: 14px; font-weight: 700; color: var(--paper); margin-bottom: 16px; letter-spacing: .5px; }
  .foot-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .foot-tags a { font-size: 12px; color: var(--mute); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; padding: 4px 12px; transition: all .2s; }
  .foot-tags a:hover { color: var(--paper); border-color: var(--brand); }
  .foot-text { color: var(--weak); font-size: 13px; line-height: 1.8; }
  .foot-list a { display: block; color: var(--mute); font-size: 14px; padding: 4px 0; transition: color .2s; }
  .foot-list a:hover { color: var(--brand); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 20px 0 24px; color: var(--weak);
    font-size: 12px; line-height: 1.8;
  }
  .footer-bottom .w { display: flex; flex-direction: column; gap: 6px; }
  @media (min-width: 768px) { .footer-bottom .w { flex-direction: row; justify-content: space-between; align-items: center; } }

  /* 滚动条美化 */
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track { background: #17151c; }
  ::-webkit-scrollbar-thumb { background: #373240; border-radius: 8px; }
  ::-webkit-scrollbar-thumb:hover { background: #4c4557; }

  /* 资讯区（用于首页内容摘要，列表形式） */
  .news-wrap { display: grid; gap: 20px; }
  @media (min-width: 1100px) { .news-wrap { grid-template-columns: 1.2fr .8fr; } }
  .news-list { display: flex; flex-direction: column; gap: 0; }
  .news-item { display: flex; align-items: baseline; gap: 14px; padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,.05); border-radius: 10px; transition: background .2s; }
  .news-item:hover { background: rgba(255,255,255,.04); }
  .news-item .date { color: var(--weak); font-size: 12px; flex-shrink: 0; }
  .news-item a { color: var(--paper); font-size: 15px; font-weight: 500; line-height: 1.5; }
  .news-item a:hover { color: var(--brand); }
  .guide-card {
    background: var(--surface); border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px; padding: 24px; display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 12px; transition: all .25s;
  }
  .guide-card:hover { border-color: rgba(229,80,77,.2); transform: translateY(-2px); }
  .guide-ico { width: 42px; height: 42px; border-radius: 14px; background: rgba(229,80,77,.12); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .guide-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
  .guide-card p { font-size: 13px; color: var(--weak); line-height: 1.7; }

/* roulang page: category1 */
:root {
  --brand: #E5504D;
  --brand-dark: #C83A3F;
  --gold: #EFAF3D;
  --bg: #121117;
  --surface: #1C1A22;
  --surface2: #26232D;
  --paper: #F5F1EA;
  --mute: #A7A2B3;
  --weak: #7E7A87;
  --radius-card: 16px;
  --radius-poster: 12px;
  --shadow-card: 0 8px 24px rgba(0,0,0,.35);
  --shadow-float: 0 18px 40px rgba(0,0,0,.5);
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: "Noto Sans SC", system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: border-box; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
p, h1, h2, h3, h4, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1024px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 70px;
  background: rgba(18,17,23,.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled {
  background: rgba(14,13,18,.95);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
}
.logo-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(229,80,77,.35);
}
.logo-txt {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-free {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 7px;
  border: 1px solid rgba(239,175,61,.5);
  color: var(--gold);
  font-size: 11px;
  border-radius: 999px;
  font-weight: 600;
  flex-shrink: 0;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.nav-link {
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--mute);
  font-size: 14px;
  font-weight: 500;
  transition: all .25s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--paper);
  background: rgba(255,255,255,.05);
}
.nav-link.active {
  color: var(--paper);
  background: rgba(229,80,77,.13);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 240px;
  background: rgba(255,255,255,.07);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 8px 0 14px;
  height: 38px;
  transition: border-color .2s, box-shadow .2s;
}
.search-box input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--paper);
  font-size: 13px;
}
.search-box input::placeholder { color: var(--weak); }
.search-box:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(229,80,77,.16);
}
.search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  transition: background .2s;
}
.search-submit:hover { background: #f05f5c; }
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--paper);
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.ghost-btn:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(229,80,77,.26);
  transition: all .25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #f05f5c;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(229,80,77,.34);
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: var(--paper);
  cursor: pointer;
  margin-left: auto;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px 18px;
  background: rgba(18,17,23,.98);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--paper);
  font-weight: 500;
  font-size: 15px;
  background: rgba(255,255,255,.03);
}
.mobile-nav a:hover { background: rgba(255,255,255,.07); }
.mobile-nav a.active { background: rgba(229,80,77,.14); color: #fff; }
.mobile-search {
  display: flex;
  gap: 8px;
  padding: 8px 0;
}
.mobile-search input {
  flex: 1;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--paper);
  padding: 0 16px;
  font-size: 14px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(229,80,77,.26);
  transition: all .25s;
  border: 0;
  cursor: pointer;
}
.btn-primary:hover {
  background: #f4615e;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(229,80,77,.38);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--paper);
  font-size: 15px;
  font-weight: 600;
  transition: all .25s;
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
}
.btn-lg { height: 58px; padding: 0 36px; font-size: 17px; }

/* 分类页顶部 */
.cat-hero {
  position: relative;
  padding: 56px 0 58px;
  background: linear-gradient(180deg, rgba(18,17,23,.62), rgba(18,17,23,.95)), url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cat-hero-inner { max-width: 860px; }
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--weak);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.crumbs a { color: var(--mute); transition: color .2s; }
.crumbs a:hover { color: var(--brand); }
.crumbs span { color: var(--paper); }
.crumbs i { font-style: normal; color: #55505e; }
.cat-hero h1 {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.cat-hero .lead {
  font-size: 16px;
  line-height: 1.8;
  color: #cBC6d4;
  max-width: 780px;
}
.cat-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.cat-hero-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 13px;
  color: var(--mute);
}
.cat-hero-metric strong { color: var(--gold); font-weight: 700; }
@media (max-width: 640px) {
  .cat-hero { padding: 38px 0 42px; }
  .cat-hero h1 { font-size: 27px; }
  .cat-hero .lead { font-size: 14px; }
}

/* 筛选区 */
.filter-section {
  padding: 22px 0 10px;
  background: #171520;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.filter-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.filter-label {
  min-width: 54px;
  font-size: 13px;
  color: var(--weak);
  padding-top: 7px;
  font-weight: 600;
  letter-spacing: 1px;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--mute);
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
  cursor: pointer;
  white-space: nowrap;
}
.chip:hover {
  color: var(--paper);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
}
.chip.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(229,80,77,.24);
}
.result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 8px;
  flex-wrap: wrap;
}
.result-bar p { font-size: 14px; color: var(--mute); }
.result-bar strong { color: var(--paper); font-weight: 700; }
.result-bar .sort-text { color: var(--weak); font-size: 13px; }
@media (max-width: 640px) {
  .filter-group { gap: 6px; }
  .filter-label { min-width: 46px; }
  .chip { height: 31px; padding: 0 11px; font-size: 12px; }
}

/* 订阅条 */
.subscribe-strip {
  background: rgba(229,80,77,.06);
  border: 1px solid rgba(229,80,77,.22);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  margin: 22px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.subscribe-strip .strip-title { font-weight: 700; font-size: 15px; }
.subscribe-strip .strip-title span { color: var(--gold); }
.subscribe-strip p { font-size: 13px; color: var(--mute); margin-top: 2px; }
.sub-form { display: flex; gap: 8px; max-width: 420px; width: 100%; }
.sub-form input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--paper);
  padding: 0 18px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.sub-form input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(229,80,77,.16); }
.sub-form input::placeholder { color: var(--weak); }
.sub-btn {
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.sub-btn:hover { background: #f4615e; transform: translateY(-1px); }
@media (max-width: 760px) {
  .subscribe-strip { margin-top: 14px; }
}

/* 通用区块 */
.sec { padding: 46px 0; }
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.sec-head h2 {
  font-size: 27px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--paper);
}
.sec-kicker {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
}
.sec-sub { font-size: 14px; color: var(--weak); margin-top: 4px; max-width: 620px; }
.sec-link { font-size: 13px; color: var(--mute); transition: color .2s; white-space: nowrap; }
.sec-link:hover { color: var(--brand); }
@media (max-width: 640px) {
  .sec-head h2 { font-size: 21px; }
}

/* 主推横滑 */
.poster-scroll-sec { padding-top: 38px; }
.poster-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #38333f transparent;
}
.poster-track::-webkit-scrollbar { height: 6px; }
.poster-track::-webkit-scrollbar-thumb { background: #38333f; border-radius: 999px; }
.poster-track::-webkit-scrollbar-track { background: transparent; }
.poster-card {
  position: relative;
  flex: 0 0 184px;
  scroll-snap-align: start;
  border-radius: var(--radius-poster);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.poster-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
  border-color: rgba(229,80,77,.35);
}
.poster-card .ph {
  position: relative;
  aspect-ratio: 2 / 3;
  background: #191720;
}
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.poster-card:hover img { transform: scale(1.05); }
.poster-card .ph:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,7,10,.72) 86%, rgba(8,7,10,.95));
}
.pcard-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 11px 12px;
}
.pcard-info h3 { font-size: 15px; font-weight: 700; line-height: 1.4; }
.pcard-info p { font-size: 12px; color: rgba(255,255,255,.62); margin-top: 3px; }
.bdg {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.bdg-update { background: var(--brand); color: #fff; }
.bdg-done { background: rgba(255,255,255,.14); color: #fff; }
.bdg-high {
  background: rgba(239,175,61,.14);
  border: 1px solid rgba(239,175,61,.4);
  color: var(--gold);
}
.poster-card .corner {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 3;
}
.poster-card .score {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(18,17,23,.56);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(239,175,61,.34);
}
@media (max-width: 480px) {
  .poster-card { flex-basis: 148px; }
}

/* 重点推荐 */
.spot-section { padding-top: 10px; }
.feature-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  background: linear-gradient(135deg, rgba(229,80,77,.08), rgba(28,26,34,.7) 42%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  overflow: hidden;
  padding: 18px;
  transition: border-color .25s, box-shadow .25s;
}
.feature-card:hover {
  border-color: rgba(229,80,77,.3);
  box-shadow: var(--shadow-card);
}
.feature-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface2);
}
.feature-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.feature-card:hover .feature-poster img { transform: scale(1.03); }
.feature-poster:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,7,10,.55));
}
.feature-poster .poster-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
}
.feature-main { display: flex; flex-direction: column; justify-content: center; padding-right: 8px; }
.feature-main .topic { font-size: 13px; color: var(--gold); font-weight: 700; letter-spacing: .5px; margin-bottom: 8px; }
.feature-main h2 { font-size: 26px; font-weight: 900; margin-bottom: 8px; line-height: 1.35; }
.feature-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.meta-tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  font-size: 12px;
  color: var(--mute);
}
.feature-main p {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.8;
  max-width: 660px;
}
.feature-score { color: var(--gold); font-weight: 900; font-size: 22px; }
.feature-score small { font-size: 13px; color: var(--mute); font-weight: 500; }
.feature-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.feature-actions .btn-primary, .feature-actions .btn-ghost { height: 44px; font-size: 14px; padding: 0 20px; }
@media (max-width: 820px) {
  .feature-card { grid-template-columns: 150px 1fr; gap: 16px; padding: 12px; border-radius: 16px; }
  .feature-main h2 { font-size: 20px; }
  .feature-main p { font-size: 13px; }
}
@media (max-width: 560px) {
  .feature-card { grid-template-columns: 1fr; }
  .feature-poster { aspect-ratio: 16 / 10; width: 100%; }
}

/* 剧集横向列表 */
.list-section { padding-top: 10px; }
.drama-list { display: flex; flex-direction: column; gap: 10px; }
.drama-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 16px;
  padding: 10px 12px;
  transition: border-color .25s, transform .25s, box-shadow .25s, background .25s;
}
.drama-row:hover {
  background: #201d27;
  border-color: rgba(229,80,77,.26);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.row-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 9px;
  overflow: hidden;
  background: var(--surface2);
}
.row-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.drama-row:hover .row-poster img { transform: scale(1.04); }
.row-poster .row-bdg {
  position: absolute;
  left: 6px;
  bottom: 6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(18,17,23,.72);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(5px);
}
.row-poster .row-bdg.red { background: rgba(229,80,77,.9); }
.row-main { min-width: 0; }
.row-main h3 { font-size: 17px; font-weight: 700; line-height: 1.4; }
.row-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 7px 0 6px; }
.row-tags span {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--mute);
  font-size: 11px;
}
.row-desc {
  font-size: 13px;
  color: var(--weak);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 620px;
}
.row-side {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  min-width: 146px;
}
.score-box { text-align: right; }
.score-box b { color: var(--gold); font-size: 20px; font-weight: 900; }
.score-box small { display: block; color: var(--weak); font-size: 11px; line-height: 1.2; }
.row-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: all .25s;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.row-btn:hover { background: #f4615e; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(229,80,77,.3); }
.row-btn.outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--paper);
  font-weight: 600;
}
.row-btn.outline:hover { background: rgba(255,255,255,.08); }
@media (max-width: 860px) {
  .drama-row { grid-template-columns: 80px minmax(0, 1fr); }
  .row-side { grid-column: 2; justify-content: flex-start; padding-bottom: 2px; }
  .score-box { display: flex; align-items: baseline; gap: 4px; text-align: left; }
  .score-box small { display: inline; }
}
@media (max-width: 560px) {
  .drama-row { grid-template-columns: 76px minmax(0, 1fr); }
  .row-desc { -webkit-line-clamp: 2; }
  .row-main h3 { font-size: 15px; }
}

/* 分页 */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 34px 0 10px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  color: var(--mute);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  cursor: pointer;
}
.pagination a:hover { background: rgba(255,255,255,.1); color: var(--paper); }
.pagination .current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(229,80,77,.26);
}

/* FAQ */
.faq-section { background: #171520; }
.faq-list {
  border-top: 1px solid rgba(255,255,255,.08);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 18px 2px;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--paper);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '＋';
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--gold); }
.faq-item p {
  margin-top: 12px;
  color: var(--mute);
  font-size: 14px;
  line-height: 1.85;
  max-width: 860px;
}
@media (max-width: 640px) {
  .faq-item summary { font-size: 14px; }
}

/* 底部提示条 */
.notify-strip {
  background: linear-gradient(90deg, rgba(229,80,77,.12), rgba(239,175,61,.05));
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.notify-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px 16px;
  flex-wrap: wrap;
}
.notify-inner p { font-weight: 700; font-size: 16px; }
.notify-inner span { font-size: 13px; color: var(--mute); display: block; margin-top: 3px; }
.notify-btn {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--paper);
  color: #17141a;
  font-weight: 700;
  font-size: 14px;
  transition: all .25s;
}
.notify-btn:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.35); }

/* Footer 公共 */
.footer {
  background: #100E14;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1fr;
  gap: 32px;
}
.foot-name { display: flex; align-items: center; gap: 9px; font-weight: 900; font-size: 16px; color: var(--paper); }
.foot-desc { font-size: 13px; color: var(--weak); line-height: 1.8; margin-top: 14px; max-width: 340px; }
.foot-title { font-size: 15px; font-weight: 700; margin-bottom: 15px; }
.foot-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.foot-tags a {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  color: var(--mute);
  font-size: 12px;
  transition: all .2s;
}
.foot-tags a:hover { color: var(--paper); border-color: rgba(229,80,77,.4); background: rgba(229,80,77,.1); }
.foot-text { font-size: 13px; color: var(--weak); line-height: 1.8; }
.foot-list { display: flex; flex-direction: column; gap: 9px; }
.foot-list a { font-size: 13px; color: var(--mute); transition: color .2s; }
.foot-list a:hover { color: var(--brand); }
.footer-bottom {
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0 26px;
}
.footer-bottom .w {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  font-size: 12px;
  color: var(--weak);
}
.footer-bottom a { color: var(--mute); }
.footer-bottom a:hover { color: var(--brand); }
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom .w { flex-direction: column; }
}

/* 响应式导航 */
@media (max-width: 1180px) {
  .logo-txt { font-size: 14px; }
  .logo-free { display: none; }
  .search-box { width: 190px; }
  .nav-link { padding: 8px 9px; font-size: 13px; }
}
@media (max-width: 900px) {
  .search-box { display: none; }
}
@media (max-width: 559px) {
  .logo-txt { font-size: 13px; }
  .logo-ico { width: 30px; height: 30px; }
  .header-inner { gap: 8px; }
}
