/* roulang page: index */
:root {
      --bg-base: #0a0c14;
      --bg-surface: #121524;
      --bg-card: #191c30;
      --bg-card-hover: #222642;
      --primary: #ff2a6d;
      --primary-glow: rgba(255, 42, 109, 0.4);
      --secondary: #8a2be2;
      --accent-cyan: #05d9e8;
      --accent-gold: #ffb800;
      --text-main: #f1f5f9;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 42, 109, 0.25);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 14px;
      --radius-pill: 9999px;
      --container-max: 1240px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
      --shadow-primary: 0 4px 20px rgba(255, 42, 109, 0.35);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button, input {
      font-family: inherit;
    }

    .container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* 顶部工具栏式导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 12, 20, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-line);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      box-shadow: 0 0 12px var(--primary-glow);
    }
    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(5, 217, 232, 0.12);
      color: var(--accent-cyan);
      font-size: 11px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(5, 217, 232, 0.3);
      margin-left: 6px;
    }
    .live-dot::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-cyan);
      box-shadow: 0 0 6px var(--accent-cyan);
      animation: pulse 1.6s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }
    .nav-menu a {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }
    .nav-menu a:hover,
    .nav-menu a.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }
    .nav-menu a.active {
      color: var(--primary);
      background: rgba(255, 42, 109, 0.08);
      font-weight: 600;
    }

    .toolbar-tools {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .search-mock {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-pill);
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 13px;
      gap: 8px;
      width: 200px;
    }
    .search-mock kbd {
      margin-left: auto;
      background: rgba(255, 255, 255, 0.08);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 10px;
      color: var(--text-dim);
    }
    .line-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #10b981;
      padding: 6px 10px;
      background: rgba(16, 185, 129, 0.08);
      border-radius: var(--radius-pill);
      border: 1px solid rgba(16, 185, 129, 0.2);
    }
    .status-bulb {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10b981;
    }
    .btn-action-sm {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 10px var(--primary-glow);
      transition: opacity 0.2s ease;
    }
    .btn-action-sm:hover {
      opacity: 0.92;
    }

    /* 统一大板块外边距 */
    .section-spacing {
      padding-top: 85px;
      padding-bottom: 85px;
      position: relative;
    }
    .section-border-b {
      border-bottom: 1px solid var(--border-line);
    }
    .section-header {
      margin-bottom: 40px;
    }
    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--primary);
      margin-bottom: 8px;
      padding: 3px 10px;
      background: rgba(255, 42, 109, 0.1);
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-accent);
    }
    .section-title {
      font-size: 28px;
      font-weight: 800;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 12px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 780px;
    }

    /* 按钮规范 */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow-primary);
      transition: all 0.25s ease;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px var(--primary-glow);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      padding: 12px 26px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-line);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
    }

    /* 徽章 Badge */
    .badge-res {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      background: rgba(255, 184, 0, 0.15);
      color: var(--accent-gold);
      border: 1px solid rgba(255, 184, 0, 0.3);
      padding: 2px 6px;
      border-radius: 4px;
    }
    .badge-status {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      background: rgba(5, 217, 232, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(5, 217, 232, 0.3);
      padding: 2px 6px;
      border-radius: 4px;
    }

    /* 板块 1: Hero 首屏 前后对比并置 */
    .hero-section {
      padding: 70px 0 90px;
      position: relative;
      background: radial-gradient(circle at 50% 10%, rgba(138, 43, 226, 0.15) 0%, rgba(10, 12, 20, 0.95) 75%), url('/assets/images/df996ef1439a9c71.webp') center/cover no-repeat;
      border-bottom: 1px solid var(--border-line);
    }
    .hero-intro {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 50px;
    }
    .hero-h1 {
      font-size: 40px;
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: -0.5px;
      margin-bottom: 18px;
      background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 30px;
    }
    .hero-cta-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-stats-strip {
      margin-top: 24px;
      display: inline-flex;
      align-items: center;
      gap: 20px;
      font-size: 13px;
      color: var(--text-dim);
      background: rgba(18, 21, 36, 0.6);
      padding: 6px 18px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-line);
    }
    .hero-stats-strip strong {
      color: var(--accent-cyan);
    }

    /* Before / After 对比组件 */
    .compare-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 1080px;
      margin: 0 auto;
    }
    .compare-card {
      background: var(--bg-surface);
      border-radius: var(--radius-lg);
      padding: 26px;
      border: 1px solid var(--border-line);
      position: relative;
      transition: all 0.3s ease;
    }
    .compare-card.card-before {
      opacity: 0.85;
      border-color: rgba(239, 68, 68, 0.2);
    }
    .compare-card.card-after {
      background: linear-gradient(180deg, rgba(25, 28, 48, 0.95), rgba(18, 21, 36, 0.98));
      border: 1px solid var(--border-accent);
      box-shadow: 0 10px 30px rgba(255, 42, 109, 0.12);
    }
    .card-label-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 4px;
      margin-bottom: 16px;
    }
    .card-before .card-label-badge {
      background: rgba(239, 68, 68, 0.15);
      color: #ef4444;
      border: 1px solid rgba(239, 68, 68, 0.3);
    }
    .card-after .card-label-badge {
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
      border: 1px solid rgba(16, 185, 129, 0.3);
    }
    .compare-header-title {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }
    .compare-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 14px;
    }
    .compare-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .compare-list li .icon-mark {
      font-weight: 800;
      font-size: 15px;
      margin-top: 1px;
    }
    .card-before .icon-mark { color: #ef4444; }
    .card-after .icon-mark { color: #10b981; }

    /* 板块 2: KPI 看板数据条 */
    .kpi-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .kpi-box {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      text-align: center;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }
    .kpi-box:hover {
      transform: translateY(-4px);
      border-color: var(--border-accent);
    }
    .kpi-num {
      font-size: 36px;
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 6px;
      background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .kpi-label {
      font-size: 14px;
      color: var(--text-main);
      font-weight: 600;
      margin-bottom: 4px;
    }
    .kpi-note {
      font-size: 12px;
      color: var(--text-dim);
    }

    /* 板块 3: 播放引擎技术分组 */
    .engine-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .engine-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 28px 22px;
      position: relative;
      transition: all 0.3s ease;
    }
    .engine-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }
    .engine-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: rgba(255, 42, 109, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 22px;
      margin-bottom: 18px;
      border: 1px solid var(--border-accent);
    }
    .engine-title {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .engine-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 板块 4: 全场景跨端矩阵 */
    .scenes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .scene-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .scene-card:hover {
      border-color: rgba(138, 43, 226, 0.4);
      transform: translateY(-4px);
    }
    .scene-thumb {
      height: 190px;
      overflow: hidden;
      position: relative;
      background: #000;
    }
    .scene-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .scene-card:hover .scene-thumb img {
      transform: scale(1.05);
    }
    .scene-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .scene-tag-line {
      font-size: 12px;
      font-weight: 600;
      color: var(--accent-cyan);
      margin-bottom: 8px;
    }
    .scene-name {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .scene-details {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .scene-meta-pill {
      margin-top: auto;
      display: flex;
      gap: 8px;
    }

    /* 板块 5: 播放终端控制台演示 */
    .terminal-section {
      background: radial-gradient(circle at 50% 50%, rgba(25, 28, 48, 0.6) 0%, rgba(10, 12, 20, 1) 100%);
    }
    .terminal-console {
      background: #0d0f19;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-lg);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
      overflow: hidden;
    }
    .console-topbar {
      height: 42px;
      background: #141726;
      border-bottom: 1px solid var(--border-line);
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 12px;
    }
    .window-dots {
      display: flex;
      gap: 6px;
    }
    .window-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
    }
    .dot-red { background: #ef4444; }
    .dot-yellow { background: #f59e0b; }
    .dot-green { background: #10b981; }
    .console-title {
      font-size: 12px;
      color: var(--text-dim);
      letter-spacing: 0.5px;
    }
    .console-body {
      display: grid;
      grid-template-columns: 2fr 1fr;
    }
    .console-preview {
      position: relative;
      background: #000;
      min-height: 380px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px;
      background-size: cover;
      background-position: center;
    }
    .preview-danmaku {
      position: absolute;
      top: 30px;
      left: 20px;
      right: 20px;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .danmaku-item {
      display: inline-block;
      align-self: flex-start;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(4px);
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: #fff;
      animation: floatLeft 12s linear infinite;
    }
    @keyframes floatLeft {
      0% { transform: translateX(30px); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateX(200px); opacity: 0; }
    }
    .preview-controls {
      margin-top: auto;
      background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
      padding-top: 20px;
    }
    .progress-bar {
      height: 4px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      position: relative;
      margin-bottom: 12px;
      cursor: pointer;
    }
    .progress-fill {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 68%;
      background: linear-gradient(90deg, var(--secondary), var(--primary));
      border-radius: 2px;
    }
    .control-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
    }
    .control-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .console-sidebar {
      background: #111422;
      border-left: 1px solid var(--border-line);
      padding: 24px 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .sidebar-panel-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .spec-item {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .spec-item span:first-child { color: var(--text-dim); }
    .spec-item span:last-child { color: var(--text-main); font-weight: 600; }

    /* 板块 6: 独家季度重磅排期榜 */
    .schedule-scroll-wrapper {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }
    .schedule-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-line);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .schedule-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-accent);
      box-shadow: 0 12px 28px rgba(0,0,0,0.6);
    }
    .schedule-cover {
      height: 240px;
      position: relative;
      background: #0d0f19;
      overflow: hidden;
    }
    .schedule-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .schedule-card:hover .schedule-cover img {
      transform: scale(1.08);
    }
    .schedule-corner-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
    }
    .schedule-info {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .schedule-name {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .schedule-meta {
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 12px;
    }
    .heat-bar-wrap {
      margin-top: auto;
    }
    .heat-bar-label {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .heat-track {
      height: 5px;
      background: rgba(255,255,255,0.08);
      border-radius: 3px;
      overflow: hidden;
    }
    .heat-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--accent-gold), var(--primary));
      border-radius: 3px;
    }

    /* 板块 7: 极速直连分发性能实测 */
    .network-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .network-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-lg);
      padding: 26px;
      text-align: center;
    }
    .network-ping {
      font-size: 44px;
      font-weight: 900;
      color: #10b981;
      line-height: 1;
      margin: 16px 0 6px;
      font-family: monospace;
    }
    .network-ping-unit {
      font-size: 16px;
      color: var(--text-muted);
      font-weight: normal;
    }
    .network-carrier {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .network-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 板块 8: 追番会员与高阶权限档位 */
    .tier-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }
    .tier-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.3s ease;
    }
    .tier-card.featured-tier {
      background: linear-gradient(180deg, #1f233f 0%, #15182a 100%);
      border: 1px solid var(--primary);
      box-shadow: 0 16px 40px rgba(255, 42, 109, 0.15);
      transform: translateY(-8px);
    }
    .tier-featured-tag {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .tier-name {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }
    .tier-subtitle {
      font-size: 13px;
      color: var(--text-dim);
      margin-bottom: 20px;
    }
    .tier-price-row {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 24px;
    }
    .tier-currency {
      font-size: 18px;
      color: #fff;
      font-weight: 700;
    }
    .tier-number {
      font-size: 40px;
      font-weight: 900;
      color: #fff;
    }
    .tier-period {
      font-size: 13px;
      color: var(--text-dim);
    }
    .tier-feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 30px;
      font-size: 14px;
      flex-grow: 1;
    }
    .tier-feature-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-muted);
    }
    .tier-feature-list li.enabled {
      color: var(--text-main);
    }
    .tier-feature-list li .check-sign {
      color: var(--primary);
      font-weight: bold;
    }

    /* 板块 9: 资深漫迷核心评价墙 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .review-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: normal;
    }
    .reviewer-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 14px;
    }
    .reviewer-user {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .reviewer-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
      color: #fff;
    }
    .reviewer-name {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }
    .reviewer-days {
      font-size: 11px;
      color: var(--accent-cyan);
    }
    .reviewer-device {
      font-size: 11px;
      color: var(--text-dim);
    }

    /* 板块 10: 平台保障承诺 */
    .guarantee-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .guarantee-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      border-top: 3px solid var(--primary);
    }
    .guarantee-name {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .guarantee-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 板块 11: 动漫产业动态与声优速报 */
    .news-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 28px;
    }
    .news-featured {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-line);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .news-featured-pic {
      height: 240px;
      overflow: hidden;
    }
    .news-featured-pic img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .news-featured-body {
      padding: 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .news-featured-body h3 {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .news-featured-body p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .news-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .news-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 18px 20px;
      display: flex;
      gap: 16px;
      align-items: center;
      transition: all 0.2s ease;
    }
    .news-item:hover {
      border-color: rgba(255, 42, 109, 0.3);
      background: var(--bg-card);
    }
    .news-date-block {
      min-width: 54px;
      text-align: center;
      background: rgba(255, 255, 255, 0.04);
      padding: 8px 6px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-line);
    }
    .news-date-day {
      font-size: 18px;
      font-weight: 800;
      color: var(--accent-cyan);
      line-height: 1;
    }
    .news-date-month {
      font-size: 11px;
      color: var(--text-dim);
    }
    .news-detail h4 {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
    }
    .news-detail p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 板块 12: 动漫专题与题材分类入口 */
    .category-tiles-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .cat-tile {
      position: relative;
      height: 260px;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-line);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      background: #0f121d;
      transition: all 0.3s ease;
    }
    .cat-tile:hover {
      transform: translateY(-6px);
      border-color: var(--primary);
      box-shadow: 0 10px 30px rgba(255, 42, 109, 0.25);
    }
    .cat-tile-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.55;
      transition: transform 0.5s ease, opacity 0.5s ease;
      z-index: 1;
    }
    .cat-tile:hover .cat-tile-bg {
      transform: scale(1.1);
      opacity: 0.75;
    }
    .cat-tile-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(10,12,20,0.2) 0%, rgba(10,12,20,0.95) 100%);
      z-index: 2;
    }
    .cat-tile-content {
      position: relative;
      z-index: 3;
    }
    .cat-tile-name {
      font-size: 17px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
    }
    .cat-tile-count {
      font-size: 12px;
      color: var(--accent-cyan);
      font-weight: 600;
      margin-bottom: 8px;
    }
    .cat-tile-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* 板块 13: 常见流媒体与追番解答 */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .faq-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
    }
    .faq-q {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .faq-q-mark {
      color: var(--primary);
      font-size: 18px;
    }
    .faq-a {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 板块 14: 全网追番订阅开通区 */
    .cta-banner {
      background: linear-gradient(135deg, rgba(31, 26, 56, 0.95), rgba(18, 21, 36, 0.98)), url('/assets/images/6a4163d9b5653037.jpg') center/cover no-repeat;
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-lg);
      padding: 60px 48px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }
    .cta-content {
      max-width: 600px;
    }
    .cta-title {
      font-size: 32px;
      font-weight: 900;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 12px;
    }
    .cta-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .cta-form {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(10, 12, 20, 0.7);
      padding: 6px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-line);
      width: 100%;
      max-width: 440px;
    }
    .cta-form input {
      background: transparent;
      border: none;
      color: #fff;
      padding: 10px 18px;
      font-size: 14px;
      flex-grow: 1;
      outline: none;
    }
    .cta-form input::placeholder {
      color: var(--text-dim);
    }

    /* 全局页脚 */
    .site-footer {
      background: #07080d;
      border-top: 1px solid var(--border-line);
      padding-top: 60px;
      padding-bottom: 40px;
      font-size: 13px;
      color: var(--text-dim);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 50px;
    }
    .footer-brand h4 {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
    }
    .footer-brand p {
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .footer-col h5 {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .copyright-text {
      color: var(--text-dim);
      font-size: 12px;
    }
    .footer-badges {
      display: flex;
      gap: 12px;
      font-size: 12px;
    }

    /* 响应式断点 */
    @media (max-width: 1024px) {
      .engine-grid,
      .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .schedule-scroll-wrapper,
      .category-tiles-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .console-body {
        grid-template-columns: 1fr;
      }
      .news-wrapper {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero-h1 {
        font-size: 28px;
      }
      .compare-wrapper,
      .scenes-grid,
      .network-grid,
      .tier-grid,
      .reviews-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }
      .tier-card.featured-tier {
        transform: none;
      }
      .cta-banner {
        flex-direction: column;
        padding: 36px 24px;
        text-align: center;
      }
      .cta-form {
        max-width: 100%;
      }
      .toolbar-tools .search-mock,
      .toolbar-tools .line-status {
        display: none;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .category-tiles-grid {
        grid-template-columns: 1fr 1fr;
      }
      .schedule-scroll-wrapper {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 520px) {
      .category-tiles-grid,
      .schedule-scroll-wrapper,
      .engine-grid,
      .guarantee-grid,
      .kpi-grid {
        grid-template-columns: 1fr;
      }
      .nav-menu {
        display: none;
      }
    }

/* roulang page: category2 */
:root {
      --bg-base: #0a0c14;
      --bg-surface: #121524;
      --bg-card: #191c30;
      --bg-card-hover: #222642;
      --primary: #ff2a6d;
      --primary-glow: rgba(255, 42, 109, 0.4);
      --secondary: #8a2be2;
      --accent-cyan: #05d9e8;
      --accent-gold: #ffb800;
      --text-main: #f1f5f9;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 42, 109, 0.25);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 14px;
      --radius-pill: 9999px;
      --container-max: 1240px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
      --shadow-primary: 0 4px 20px rgba(255, 42, 109, 0.35);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button, input {
      font-family: inherit;
    }

    .container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* 顶部工具栏式导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 12, 20, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-line);
      height: 70px;
      display: flex;
      align-items: center;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }

    .brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      box-shadow: 0 0 12px var(--primary-glow);
    }

    .brand-logo .live-dot {
      font-size: 11px;
      padding: 2px 6px;
      background: rgba(5, 217, 232, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(5, 217, 232, 0.3);
      border-radius: var(--radius-pill);
      font-weight: 600;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-menu a {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-menu a.active {
      color: var(--primary);
      background: rgba(255, 42, 109, 0.08);
      font-weight: 600;
    }

    .toolbar-tools {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .search-mock {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-pill);
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 13px;
      gap: 8px;
      width: 200px;
    }

    .search-mock kbd {
      margin-left: auto;
      background: rgba(255, 255, 255, 0.08);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 10px;
      color: var(--text-dim);
    }

    .line-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #10b981;
      background: rgba(16, 185, 129, 0.08);
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .status-bulb {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: #10b981;
      box-shadow: 0 0 8px #10b981;
    }

    .btn-action-sm {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 10px var(--primary-glow);
      transition: opacity 0.2s ease;
    }

    .btn-action-sm:hover {
      opacity: 0.92;
    }

    /* 板块基础规范 */
    .section-spacing {
      padding-top: 70px;
      padding-bottom: 70px;
      position: relative;
    }

    .section-border-b {
      border-bottom: 1px solid var(--border-line);
    }

    .section-header {
      margin-bottom: 32px;
    }

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--primary);
      margin-bottom: 8px;
      padding: 3px 10px;
      background: rgba(255, 42, 109, 0.1);
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-accent);
    }

    .section-title {
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .section-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 徽章样式 */
    .badge-res {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      background: rgba(255, 184, 0, 0.15);
      color: var(--accent-gold);
      border: 1px solid rgba(255, 184, 0, 0.3);
      padding: 2px 6px;
      border-radius: 4px;
    }

    .badge-status {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      background: rgba(5, 217, 232, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(5, 217, 232, 0.3);
      padding: 2px 6px;
      border-radius: 4px;
    }

    .badge-hot {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      background: rgba(255, 42, 109, 0.18);
      color: var(--primary);
      border: 1px solid rgba(255, 42, 109, 0.3);
      padding: 2px 6px;
      border-radius: 4px;
    }

    /* 板块1：分类顶部筛选面板 */
    .filter-header-section {
      padding: 40px 0 28px;
      background: linear-gradient(180deg, rgba(25, 28, 48, 0.6) 0%, var(--bg-base) 100%);
      border-bottom: 1px solid var(--border-line);
    }

    .filter-meta-top {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 24px;
    }

    .filter-meta-top h1 {
      font-size: 32px;
      font-weight: 900;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .filter-meta-top p {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 860px;
    }

    .filter-box-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 18px 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .filter-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      font-size: 13px;
    }

    .filter-label {
      width: 68px;
      color: var(--text-dim);
      font-weight: 600;
      padding-top: 4px;
      flex-shrink: 0;
    }

    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-item {
      padding: 4px 12px;
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-item:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.07);
    }

    .filter-item.active {
      background: rgba(255, 42, 109, 0.15);
      border-color: var(--border-accent);
      color: var(--primary);
      font-weight: 600;
    }

    /* 板块2：核心动漫卡片列表 */
    .card-grid-5 {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .anime-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .anime-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-accent);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    }

    .anime-thumb-wrap {
      position: relative;
      aspect-ratio: 2/3;
      overflow: hidden;
      background: #000;
    }

    .anime-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .anime-card:hover .anime-thumb-wrap img {
      transform: scale(1.06);
    }

    .thumb-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(10,12,20,0.85) 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 10px;
      pointer-events: none;
    }

    .thumb-badges {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .thumb-footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      font-size: 12px;
    }

    .score-star {
      color: var(--accent-gold);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .anime-info-body {
      padding: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    .anime-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .anime-meta-sub {
      font-size: 12px;
      color: var(--text-dim);
      display: flex;
      justify-content: space-between;
    }

    .anime-tags-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
      padding-top: 6px;
    }

    .tiny-tag {
      font-size: 11px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
      padding: 2px 6px;
      border-radius: 4px;
    }

    .pagination-bar {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }

    .page-btn {
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      color: var(--text-muted);
      font-size: 13px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .page-btn:hover {
      color: #fff;
      border-color: rgba(255,255,255,0.2);
    }

    .page-btn.active {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-color: transparent;
      color: #fff;
      font-weight: 600;
    }

    /* 板块3：Top 10 口碑排行榜 */
    .top-scroll-container {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .top-rank-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: all 0.25s ease;
      position: relative;
    }

    .top-rank-card:hover {
      border-color: var(--border-accent);
      background: var(--bg-card-hover);
    }

    .rank-order-badge {
      font-size: 20px;
      font-weight: 900;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      color: var(--text-dim);
      background: rgba(255, 255, 255, 0.04);
      flex-shrink: 0;
    }

    .top-1 { color: #ff2a6d; background: rgba(255, 42, 109, 0.15); border: 1px solid var(--border-accent); }
    .top-2 { color: #ffb800; background: rgba(255, 184, 0, 0.15); border: 1px solid rgba(255, 184, 0, 0.3); }
    .top-3 { color: #05d9e8; background: rgba(5, 217, 232, 0.15); border: 1px solid rgba(5, 217, 232, 0.3); }

    .rank-thumb-mini {
      width: 48px;
      height: 64px;
      border-radius: 4px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .rank-detail {
      display: flex;
      flex-direction: column;
      gap: 4px;
      overflow: hidden;
    }

    .rank-title {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .rank-stat {
      font-size: 11px;
      color: var(--text-dim);
    }

    /* 板块4：标签与声优网格 */
    .tags-grid-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-lg);
      padding: 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .tag-cluster-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cluster-items-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .cluster-pill {
      font-size: 12px;
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-muted);
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-line);
      cursor: pointer;
      transition: all 0.2s;
    }

    .cluster-pill:hover {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.08);
    }

    /* 板块5：片源压制规范 */
    .specs-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .spec-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .spec-icon-box {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: rgba(255, 42, 109, 0.1);
      border: 1px solid var(--border-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--primary);
    }

    .spec-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
    }

    .spec-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .spec-detail-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 12px;
      color: var(--text-dim);
      margin-top: 4px;
    }

    .spec-detail-list li {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .spec-detail-list li::before {
      content: "✓";
      color: var(--accent-cyan);
      font-weight: bold;
    }

    /* 板块6：FAQ 手风琴折叠面板 */
    .faq-accordion-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-accordion-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faq-accordion-item:hover {
      border-color: rgba(255, 255, 255, 0.16);
    }

    .faq-accordion-item details {
      width: 100%;
    }

    .faq-accordion-item summary {
      padding: 18px 22px;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }

    .faq-accordion-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-accordion-item summary::after {
      content: "+";
      font-size: 20px;
      color: var(--text-dim);
      transition: transform 0.2s;
    }

    .faq-accordion-item details[open] summary::after {
      content: "−";
      color: var(--primary);
    }

    .faq-accordion-item .faq-answer {
      padding: 0 22px 20px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 14px;
    }

    /* 板块7：分类更新订阅条 */
    .sub-bar-wrapper {
      background: linear-gradient(135deg, rgba(25, 28, 48, 0.95), rgba(18, 21, 36, 0.95));
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .sub-bar-info {
      max-width: 580px;
    }

    .sub-bar-info h3 {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .sub-bar-info p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .sub-bar-form {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .sub-input-text {
      background: rgba(10, 12, 20, 0.85);
      border: 1px solid var(--border-line);
      color: #fff;
      font-size: 14px;
      padding: 12px 18px;
      border-radius: var(--radius-pill);
      outline: none;
      width: 270px;
      transition: border-color 0.2s;
    }

    .sub-input-text:focus {
      border-color: var(--primary);
    }

    .sub-btn-submit {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      padding: 12px 26px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      white-space: nowrap;
      box-shadow: 0 3px 12px var(--primary-glow);
      transition: opacity 0.2s, transform 0.2s;
    }

    .sub-btn-submit:hover {
      opacity: 0.92;
      transform: translateY(-1px);
    }

    /* 底部通用规范 */
    .footer-wrap {
      background: #07080e;
      border-top: 1px solid var(--border-line);
      padding: 60px 0 30px;
      font-size: 13px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand-col {
      padding-right: 20px;
    }

    .footer-logo {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .footer-desc {
      color: var(--text-dim);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .footer-col-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text-dim);
      font-size: 12px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 18px;
    }

    /* 响应式断点 */
    @media (max-width: 1024px) {
      .card-grid-5 {
        grid-template-columns: repeat(3, 1fr);
      }
      .top-scroll-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .tags-grid-box {
        grid-template-columns: 1fr;
      }
      .specs-grid-3 {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .sub-bar-wrapper {
        flex-direction: column;
        text-align: center;
      }
      .sub-bar-form {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .card-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
      .top-scroll-container {
        grid-template-columns: 1fr;
      }
      .search-mock, .line-status {
        display: none;
      }
      .nav-menu {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
      }
      .filter-row {
        flex-direction: column;
        gap: 6px;
      }
      .sub-bar-form {
        flex-direction: column;
        width: 100%;
      }
      .sub-input-text {
        width: 100%;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .card-grid-5 {
        grid-template-columns: 1fr;
      }
      .filter-meta-top h1 {
        font-size: 24px;
      }
    }

/* roulang page: category1 */
:root {
      --bg-base: #0a0c14;
      --bg-surface: #121524;
      --bg-card: #191c30;
      --bg-card-hover: #222642;
      --primary: #ff2a6d;
      --primary-glow: rgba(255, 42, 109, 0.4);
      --secondary: #8a2be2;
      --accent-cyan: #05d9e8;
      --accent-gold: #ffb800;
      --text-main: #f1f5f9;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 42, 109, 0.25);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 14px;
      --radius-pill: 9999px;
      --container-max: 1240px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
      --shadow-primary: 0 4px 20px rgba(255, 42, 109, 0.35);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button, input {
      font-family: inherit;
    }

    .container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* 顶部工具栏式导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 12, 20, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-line);
      height: 70px;
      display: flex;
      align-items: center;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }

    .brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      box-shadow: 0 0 12px var(--primary-glow);
    }

    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(5, 217, 232, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(5, 217, 232, 0.3);
      font-size: 11px;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      font-weight: 600;
    }

    .live-dot::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--accent-cyan);
      box-shadow: 0 0 6px var(--accent-cyan);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-menu a {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-menu a.active {
      color: var(--primary);
      background: rgba(255, 42, 109, 0.08);
      font-weight: 600;
    }

    .toolbar-tools {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .search-mock {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-pill);
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 13px;
      gap: 8px;
      width: 200px;
    }

    .search-mock kbd {
      margin-left: auto;
      background: rgba(255, 255, 255, 0.08);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 10px;
      color: var(--text-dim);
    }

    .line-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--accent-cyan);
      background: rgba(5, 217, 232, 0.08);
      padding: 5px 12px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(5, 217, 232, 0.2);
    }

    .status-bulb {
      width: 6px;
      height: 6px;
      background: #00ff88;
      border-radius: 50%;
      box-shadow: 0 0 8px #00ff88;
    }

    .btn-action-sm {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 10px var(--primary-glow);
      transition: opacity 0.2s ease;
    }

    .btn-action-sm:hover {
      opacity: 0.92;
    }

    /* 板块外边距与标题规范 */
    .section-spacing {
      padding-top: 70px;
      padding-bottom: 70px;
      position: relative;
    }

    .section-border-b {
      border-bottom: 1px solid var(--border-line);
    }

    .section-header {
      margin-bottom: 32px;
    }

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--primary);
      margin-bottom: 8px;
      padding: 3px 10px;
      background: rgba(255, 42, 109, 0.1);
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-accent);
    }

    .section-title {
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .section-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 760px;
    }

    /* 板块 1: 分类顶部与复合筛选 */
    .category-filter-hero {
      background: radial-gradient(circle at 10% 20%, rgba(255, 42, 109, 0.12) 0%, transparent 50%),
                  radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
                  var(--bg-surface);
      border-bottom: 1px solid var(--border-line);
      padding: 40px 0 35px;
    }

    .cat-head-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end;
      gap: 20px;
      margin-bottom: 25px;
    }

    .cat-h1 {
      font-size: 30px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .cat-h1-badge {
      font-size: 12px;
      color: var(--accent-cyan);
      background: rgba(5, 217, 232, 0.12);
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      border: 1px solid rgba(5, 217, 232, 0.3);
    }

    .cat-lead {
      color: var(--text-muted);
      font-size: 14px;
      max-width: 680px;
      line-height: 1.6;
    }

    .filter-panel {
      background: rgba(25, 28, 48, 0.65);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 18px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .filter-row {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
    }

    .filter-label {
      color: var(--text-dim);
      white-space: nowrap;
      min-width: 68px;
      font-weight: 600;
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .filter-tag-item {
      color: var(--text-muted);
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-tag-item:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }

    .filter-tag-item.active {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      font-weight: 600;
      box-shadow: 0 2px 8px var(--primary-glow);
    }

    /* 板块 2: 卡片主体网格 (4~5列) */
    .anime-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 22px;
      margin-bottom: 45px;
    }

    .anime-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .anime-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-accent);
      box-shadow: var(--shadow-card), 0 0 20px rgba(255, 42, 109, 0.15);
    }

    .card-thumb-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #0f111c;
    }

    .card-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .anime-card:hover .card-thumb-wrap img {
      transform: scale(1.06);
    }

    .badge-float-left {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(10, 12, 20, 0.85);
      backdrop-filter: blur(4px);
      color: var(--accent-cyan);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      border: 1px solid rgba(5, 217, 232, 0.3);
    }

    .badge-float-right {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255, 42, 109, 0.9);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    }

    .card-play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 12, 20, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .anime-card:hover .card-play-overlay {
      opacity: 1;
    }

    .play-btn-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 0 16px var(--primary-glow);
    }

    .card-info {
      padding: 14px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .card-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: color 0.2s;
    }

    .anime-card:hover .card-title {
      color: var(--primary);
    }

    .card-meta-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 8px;
    }

    .score-gold {
      color: var(--accent-gold);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .card-desc-snippet {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .card-tag-pill {
      font-size: 11px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.05);
      padding: 2px 7px;
      border-radius: 4px;
      display: inline-block;
      margin-right: 4px;
    }

    .pagination-bar {
      text-align: center;
      padding-top: 10px;
    }

    .btn-more-anime {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 42, 109, 0.08);
      border: 1px solid var(--border-accent);
      color: #fff;
      font-size: 14px;      font-weight: 600;
      padding: 12px 36px;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-more-anime:hover {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 4px 18px var(--primary-glow);
      border-color: transparent;
      transform: translateY(-2px);
    }

    /* 板块 3: 高口碑榜单 Top 10 */
    .top-rank-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .rank-item-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: all 0.25s ease;
    }

    .rank-item-card:hover {
      background: var(--bg-card-hover);
      border-color: rgba(255, 42, 109, 0.3);
      transform: translateX(4px);
    }

    .rank-num {
      font-size: 22px;
      font-weight: 900;
      font-style: italic;
      width: 32px;
      text-align: center;
      color: var(--text-dim);
    }

    .rank-num.top-1 { color: #ff2a6d; }
    .rank-num.top-2 { color: #ff8c00; }
    .rank-num.top-3 { color: var(--accent-gold); }

    .rank-poster-thumb {
      width: 50px;
      height: 70px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
      background: #111;
    }

    .rank-poster-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .rank-info {
      flex-grow: 1;
      min-width: 0;
    }

    .rank-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .rank-sub {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .rank-views {
      color: var(--accent-cyan);
      font-weight: 600;
      font-size: 12px;
    }

    /* 板块 4: 题材标签云与声优检索 */
    .tags-matrix-wrap {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-lg);
      padding: 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
    }

    .matrix-col-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .matrix-col-title::before {
      content: "";
      width: 4px;
      height: 16px;
      background: linear-gradient(to bottom, var(--primary), var(--secondary));
      border-radius: 2px;
    }

    .capsule-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .capsule-item {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-line);
      color: var(--text-muted);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .capsule-item span {
      color: var(--text-dim);
      font-size: 11px;
      margin-left: 4px;
    }

    .capsule-item:hover {
      background: rgba(255, 42, 109, 0.12);
      border-color: var(--border-accent);
      color: #fff;
      transform: translateY(-2px);
    }

    /* 板块 5: 片源压制规范与画质说明 */
    .specs-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .spec-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 26px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: border-color 0.25s ease;
    }

    .spec-card:hover {
      border-color: rgba(255, 42, 109, 0.35);
    }

    .spec-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--accent-cyan);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .spec-title {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
    }

    .spec-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .spec-checklist {
      list-style: none;
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 12px;
      color: var(--text-dim);
    }

    .spec-checklist li {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .spec-checklist li::before {
      content: "✓";
      color: #00ff88;
      font-weight: bold;
    }

    /* 板块 6: 常见播放与排期 FAQ */
    .faq-accordion-wrap {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item-box {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 20px 24px;
    }

    .faq-q {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .faq-q::before {
      content: "Q.";
      color: var(--primary);
      margin-right: 10px;
      font-weight: 800;
    }

    .faq-a {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      padding-left: 24px;
    }

    /* 板块 7: 分类追番更新订阅条 */
    .notify-strip {
      background: linear-gradient(135deg, rgba(25, 28, 48, 0.95), rgba(18, 21, 36, 0.95));
      border: 1px solid var(--border-accent);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      border-radius: var(--radius-lg);
      padding: 32px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .notify-content {
      max-width: 600px;
    }

    .notify-h3 {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }

    .notify-p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .notify-form {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .notify-input {
      background: var(--bg-base);
      border: 1px solid var(--border-line);
      color: #fff;
      font-size: 13px;
      padding: 11px 18px;
      border-radius: var(--radius-pill);
      width: 260px;
      outline: none;
      transition: border-color 0.2s;
    }

    .notify-input:focus {
      border-color: var(--primary);
    }

    .notify-submit {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      padding: 11px 24px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 10px var(--primary-glow);
      white-space: nowrap;
      transition: opacity 0.2s ease;
    }

    .notify-submit:hover {
      opacity: 0.92;
    }

    /* 页脚样式 */
    .footer-wrap {
      background: #07090f;
      border-top: 1px solid var(--border-line);
      padding-top: 60px;
      padding-bottom: 30px;
      color: var(--text-muted);
      font-size: 13px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand-col {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-logo {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
    }

    .footer-desc {
      line-height: 1.6;
      color: var(--text-dim);
      font-size: 13px;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      color: var(--text-dim);
      font-size: 12px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    /* 响应式适配 */
    @media (max-width: 1100px) {
      .anime-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .specs-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 860px) {
      .site-header {
        height: auto;
        padding: 12px 0;
      }
      .header-inner {
        flex-wrap: wrap;
      }
      .toolbar-tools {
        display: none;
      }
      .anime-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }
      .top-rank-list {
        grid-template-columns: 1fr;
      }
      .tags-matrix-wrap {
        grid-template-columns: 1fr;
        padding: 20px;
      }
      .notify-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
      }
      .notify-form {
        width: 100%;
      }
      .notify-input {
        flex-grow: 1;
        width: auto;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 540px) {
      .anime-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .specs-cards-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .cat-h1 {
        font-size: 22px;
      }
      .nav-menu {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 4px;
      }
      .nav-menu a {
        white-space: nowrap;
        padding: 6px 10px;
      }
      .notify-form {
        flex-direction: column;
        align-items: stretch;
      }
    }

/* roulang page: category3 */
:root {
      --bg-base: #0a0c14;
      --bg-surface: #121524;
      --bg-card: #191c30;
      --bg-card-hover: #222642;
      --primary: #ff2a6d;
      --primary-glow: rgba(255, 42, 109, 0.4);
      --secondary: #8a2be2;
      --accent-cyan: #05d9e8;
      --accent-gold: #ffb800;
      --text-main: #f1f5f9;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 42, 109, 0.25);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 14px;
      --radius-pill: 9999px;
      --container-max: 1240px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
      --shadow-primary: 0 4px 20px rgba(255, 42, 109, 0.35);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button, input {
      font-family: inherit;
    }

    .container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* 顶部工具栏式导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 12, 20, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-line);
      height: 70px;
      display: flex;
      align-items: center;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }

    .brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      box-shadow: 0 0 12px var(--primary-glow);
    }

    .brand-logo .live-dot {
      font-size: 11px;
      font-weight: 600;
      padding: 2px 8px;
      background: rgba(5, 217, 232, 0.15);
      border: 1px solid var(--accent-cyan);
      color: var(--accent-cyan);
      border-radius: var(--radius-pill);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-menu a {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-menu a.active {
      color: var(--primary);
      background: rgba(255, 42, 109, 0.08);
      font-weight: 600;
    }

    .toolbar-tools {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .search-mock {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-pill);
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 13px;
      gap: 8px;
      width: 190px;
    }

    .search-mock kbd {
      margin-left: auto;
      background: rgba(255, 255, 255, 0.08);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 10px;
      color: var(--text-dim);
    }

    .line-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-dim);
      padding: 4px 10px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-line);
    }

    .status-bulb {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 8px #10b981;
    }

    .btn-action-sm {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 10px var(--primary-glow);
      transition: opacity 0.2s ease;
    }

    .btn-action-sm:hover {
      opacity: 0.92;
    }

    /* 板块外边距与通用类 */
    .section-spacing {
      padding-top: 75px;
      padding-bottom: 75px;
      position: relative;
    }

    .section-border-b {
      border-bottom: 1px solid var(--border-line);
    }

    .section-header {
      margin-bottom: 32px;
    }

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--primary);
      margin-bottom: 8px;
      padding: 3px 10px;
      background: rgba(255, 42, 109, 0.1);
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-accent);
    }

    .section-title {
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 8px;
    }

    .section-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 分类专属头部工具栏 */
    .category-header-wrap {
      background: radial-gradient(circle at 15% 30%, rgba(255, 42, 109, 0.12), transparent 45%),
                  radial-gradient(circle at 85% 70%, rgba(138, 43, 226, 0.15), transparent 50%),
                  var(--bg-surface);
      border-bottom: 1px solid var(--border-line);
      padding: 38px 0 28px;
    }

    .category-h1-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .category-title-group h1 {
      font-size: 30px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .category-title-group p {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 6px;
    }

    .category-stat-badges {
      display: flex;
      gap: 10px;
    }

    .stat-chip {
      padding: 6px 14px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: var(--text-main);
    }

    .stat-chip strong {
      color: var(--accent-cyan);
    }

    /* 复合筛选框 */
    .filter-panel {
      background: rgba(10, 12, 20, 0.6);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .filter-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .filter-label {
      font-size: 13px;
      color: var(--text-dim);
      font-weight: 600;
      min-width: 65px;
    }

    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-btn {
      background: transparent;
      border: 1px solid transparent;
      color: var(--text-muted);
      font-size: 13px;
      padding: 4px 12px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .filter-btn:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }

    .filter-btn.active {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 0 10px var(--primary-glow);
      font-weight: 600;
    }

    /* 片单主体网格 */
    .anime-card-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .anime-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .anime-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-card);
      border-color: var(--border-accent);
      background: var(--bg-card-hover);
    }

    .card-thumb-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #0d0f1a;
    }

    .card-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .anime-card:hover .card-thumb-wrap img {
      transform: scale(1.06);
    }

    .badge-float-left {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 3px 7px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 4px;
      background: rgba(5, 217, 232, 0.9);
      color: #05141c;
      letter-spacing: 0.5px;
    }

    .badge-float-right {
      position: absolute;
      top: 10px;
      right: 10px;
      padding: 3px 7px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 4px;
      background: rgba(10, 12, 20, 0.85);
      backdrop-filter: blur(4px);
      color: var(--accent-gold);
      border: 1px solid rgba(255, 184, 0, 0.3);
    }

    .card-info-wrap {
      padding: 14px 14px 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .card-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .card-meta-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 10px;
    }

    .card-tags-list {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: auto;
    }

    .card-tag-pill {
      font-size: 11px;
      padding: 2px 7px;
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-muted);
      border-radius: 3px;
      border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .card-action-bar {
      margin-top: 12px;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .play-link-btn {
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .play-link-btn:hover {
      text-decoration: underline;
    }

    .loadmore-wrap {
      text-align: center;
      margin-top: 40px;
    }

    .btn-more-load {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      color: var(--text-main);
      font-size: 14px;
      font-weight: 600;
      padding: 12px 34px;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-more-load:hover {
      background: rgba(255, 42, 109, 0.12);
      border-color: var(--primary);
      color: #fff;
    }

    /* 高口碑榜单 TOP 10 */
    .top10-slider-container {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .rank-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 14px;
      position: relative;
      display: flex;
      gap: 12px;
      align-items: center;
      transition: all 0.25s ease;
    }

    .rank-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-3px);
      background: var(--bg-card);
    }

    .rank-num {
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
      width: 32px;
      text-align: center;
      color: var(--text-dim);
      font-style: italic;
    }

    .rank-num.top1 { color: #ff2a6d; text-shadow: 0 0 10px rgba(255, 42, 109, 0.5); }
    .rank-num.top2 { color: #ffb800; text-shadow: 0 0 10px rgba(255, 184, 0, 0.5); }
    .rank-num.top3 { color: #05d9e8; text-shadow: 0 0 10px rgba(5, 217, 232, 0.5); }

    .rank-info {
      flex: 1;
      overflow: hidden;
    }

    .rank-info h4 {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .rank-meta {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
    }

    /* 标签云与交叉检索 */
    .tag-cloud-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .tag-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
    }

    .tag-box-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .tag-box-title::before {
      content: "";
      width: 4px;
      height: 16px;
      background: var(--primary);
      border-radius: 2px;
    }

    .pill-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pill-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-line);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: var(--text-muted);
      transition: all 0.2s ease;
    }

    .pill-item span.count {
      font-size: 11px;
      color: var(--text-dim);
      background: rgba(255, 255, 255, 0.06);
      padding: 1px 6px;
      border-radius: 10px;
    }

    .pill-item:hover {
      border-color: var(--primary);
      color: #fff;
      background: rgba(255, 42, 109, 0.08);
    }

    /* 压制规范与画质对比 */
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .spec-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .spec-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      opacity: 0.8;
    }

    .spec-icon {
      font-size: 24px;
      color: var(--accent-cyan);
      margin-bottom: 12px;
    }

    .spec-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }

    .spec-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .spec-list {
      margin-top: 14px;
      list-style: none;
    }

    .spec-list li {
      font-size: 12px;
      color: var(--text-dim);
      padding: 4px 0;
      display: flex;
      justify-content: space-between;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }

    .spec-list li span:last-child {
      color: var(--text-main);
      font-weight: 500;
    }

    /* FAQ 手风琴面板 */
    .faq-container {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .faq-header {
      padding: 18px 22px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 15px;
      color: #fff;
      user-select: none;
    }

    .faq-header .icon-toggle {
      font-size: 18px;
      color: var(--primary);
      transition: transform 0.25s ease;
    }

    .faq-body {
      padding: 0 22px 18px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 14px;
    }

    /* 分类追番更新订阅条 */
    .subscribe-bar {
      background: linear-gradient(135deg, rgba(255, 42, 109, 0.15), rgba(138, 43, 226, 0.2));
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-lg);
      padding: 34px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      flex-wrap: wrap;
    }

    .sub-content h3 {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }

    .sub-content p {
      font-size: 14px;
      color: var(--text-muted);
    }

    .sub-form {
      display: flex;
      gap: 10px;
      min-width: 380px;
    }

    .sub-input {
      flex: 1;
      background: rgba(10, 12, 20, 0.8);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-pill);
      padding: 12px 20px;
      color: #fff;
      font-size: 14px;
      outline: none;
    }

    .sub-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 10px var(--primary-glow);
    }

    .btn-submit-sub {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      padding: 12px 26px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow-primary);
      white-space: nowrap;
    }

    .btn-submit-sub:hover {
      opacity: 0.95;
    }

    /* 沉浸式流媒体页脚 */
    .footer-wrap {
      background: #07080d;
      border-top: 1px solid var(--border-line);
      padding-top: 60px;
      padding-bottom: 40px;
      font-size: 14px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand-col .footer-logo {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
    }

    .footer-desc {
      color: var(--text-dim);
      font-size: 13px;
      line-height: 1.8;
      margin-bottom: 16px;
      max-width: 360px;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      color: var(--text-muted);
      font-size: 13px;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      padding-top: 25px;
      border-top: 1px solid var(--border-line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text-dim);
      font-size: 12px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 16px;
    }

    /* 响应式适配 */
    @media (max-width: 1024px) {
      .anime-card-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .top10-slider-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .specs-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .site-header {
        height: auto;
        padding: 12px 0;
      }
      .header-inner {
        flex-wrap: wrap;
      }
      .nav-menu {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 6px;
      }
      .toolbar-tools {
        display: none;
      }
      .anime-card-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .top10-slider-container {
        grid-template-columns: 1fr;
      }
      .tag-cloud-grid {
        grid-template-columns: 1fr;
      }
      .subscribe-bar {
        flex-direction: column;
        align-items: flex-start;
      }
      .sub-form {
        width: 100%;
        min-width: 0;
        flex-direction: column;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .anime-card-grid {
        grid-template-columns: 1fr;
      }
      .category-h1-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* roulang page: category4 */
:root {
      --bg-base: #0a0c14;
      --bg-surface: #121524;
      --bg-card: #191c30;
      --bg-card-hover: #222642;
      --primary: #ff2a6d;
      --primary-glow: rgba(255, 42, 109, 0.4);
      --secondary: #8a2be2;
      --accent-cyan: #05d9e8;
      --accent-gold: #ffb800;
      --text-main: #f1f5f9;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 42, 109, 0.25);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 14px;
      --radius-pill: 9999px;
      --container-max: 1240px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
      --shadow-primary: 0 4px 20px rgba(255, 42, 109, 0.35);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    button, input {
      font-family: inherit;
    }
    .container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    /* 顶部工具栏式导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 12, 20, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-line);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      box-shadow: 0 0 12px var(--primary-glow);
    }
    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: var(--accent-cyan);
      background: rgba(5, 217, 232, 0.12);
      border: 1px solid rgba(5, 217, 232, 0.3);
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      font-weight: 600;
    }
    .live-dot::before {
      content: "";
      width: 6px;
      height: 6px;
      background: var(--accent-cyan);
      border-radius: 50%;
      animation: pulse 1.6s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(1.25); }
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
    }
    .nav-menu a {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }
    .nav-menu a:hover,
    .nav-menu a.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }
    .nav-menu a.active {
      color: var(--primary);
      background: rgba(255, 42, 109, 0.08);
      font-weight: 600;
    }
    .toolbar-tools {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .search-mock {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-pill);
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 13px;
      gap: 8px;
      width: 200px;
    }
    .search-mock kbd {
      margin-left: auto;
      background: rgba(255, 255, 255, 0.08);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 10px;
      color: var(--text-dim);
    }
    .line-status {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: #10b981;
      background: rgba(16, 185, 129, 0.1);
      padding: 5px 12px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(16, 185, 129, 0.25);
    }
    .status-bulb {
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      box-shadow: 0 0 8px #10b981;
    }
    .btn-action-sm {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 10px var(--primary-glow);
      transition: opacity 0.2s ease;
    }
    .btn-action-sm:hover {
      opacity: 0.92;
    }

    /* 通用组件 */
    .section-spacing {
      padding-top: 75px;
      padding-bottom: 75px;
      position: relative;
    }
    .section-border-b {
      border-bottom: 1px solid var(--border-line);
    }
    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--primary);
      margin-bottom: 8px;
      padding: 3px 10px;
      background: rgba(255, 42, 109, 0.1);
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-accent);
    }
    .section-title {
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 10px;
    }
    .section-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .badge-res {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      background: rgba(255, 184, 0, 0.15);
      color: var(--accent-gold);
      border: 1px solid rgba(255, 184, 0, 0.35);
      padding: 2px 6px;
      border-radius: 4px;
    }
    .badge-cyan {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      background: rgba(5, 217, 232, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(5, 217, 232, 0.35);
      padding: 2px 6px;
      border-radius: 4px;
    }

    /* 板块 1：分类专属 H1 标题与复合筛选工具栏 */
    .category-hero {
      background: linear-gradient(180deg, rgba(25, 28, 48, 0.8) 0%, rgba(10, 12, 20, 1) 100%), url('/assets/images/90c80e114d49561a.webp') center/cover no-repeat;
      padding-top: 45px;
      padding-bottom: 35px;
      border-bottom: 1px solid var(--border-line);
    }
    .hero-heading {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 25px;
      flex-wrap: wrap;
      gap: 15px;
    }
    .hero-h1 {
      font-size: 30px;
      font-weight: 800;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-sub {
      color: var(--text-muted);
      font-size: 14px;
      margin-top: 6px;
      max-width: 680px;
    }
    .filter-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-lg);
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      box-shadow: var(--shadow-card);
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      font-size: 13px;
    }
    .filter-label {
      color: var(--text-dim);
      font-weight: 600;
      min-width: 68px;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }
    .filter-item {
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      cursor: pointer;
      font-size: 13px;
      transition: all 0.2s ease;
    }
    .filter-item:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-item.active {
      color: #fff;
      background: linear-gradient(135deg, rgba(255, 42, 109, 0.2), rgba(138, 43, 226, 0.2));
      border-color: var(--primary);
      font-weight: 600;
    }

    /* 板块 2：核心分类动漫片单卡片主体 */
    .movie-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 22px;
      margin-top: 30px;
    }
    .movie-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }
    .movie-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-accent);
      box-shadow: 0 12px 30px rgba(255, 42, 109, 0.2);
    }
    .movie-poster-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #000;
    }
    .movie-poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .movie-card:hover .movie-poster-wrap img {
      transform: scale(1.06);
    }
    .poster-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(10, 12, 20, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .movie-card:hover .poster-overlay {
      opacity: 1;
    }
    .play-btn-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 0 15px var(--primary-glow);
    }
    .card-badges {
      position: absolute;
      top: 10px;
      left: 10px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      z-index: 2;
    }
    .card-score {
      position: absolute;
      bottom: 8px;
      right: 10px;
      background: rgba(10, 12, 20, 0.85);
      backdrop-filter: blur(4px);
      color: var(--accent-gold);
      font-size: 12px;
      font-weight: 800;
      padding: 2px 8px;
      border-radius: 4px;
      border: 1px solid rgba(255, 184, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .movie-info {
      padding: 14px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .movie-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-meta {
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 8px;
      display: flex;
      justify-content: space-between;
    }
    .movie-tags {
      display: flex;
      gap: 6px;
      margin-top: auto;
      flex-wrap: wrap;
    }
    .tag-sm {
      font-size: 11px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.05);
      padding: 2px 6px;
      border-radius: 3px;
    }
    .load-more-wrap {
      text-align: center;
      margin-top: 45px;
    }
    .btn-more-category {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-surface);
      border: 1px solid var(--border-accent);
      color: #fff;
      padding: 12px 36px;
      border-radius: var(--radius-pill);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-more-category:hover {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-color: transparent;
      box-shadow: 0 4px 18px var(--primary-glow);
    }

    /* 板块 3：高口碑榜单 Top 10 */
    .top10-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 25px;
    }
    .top10-column {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .rank-item {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      gap: 16px;
      transition: all 0.25s ease;
    }
    .rank-item:hover {
      background: var(--bg-card);
      border-color: rgba(255, 42, 109, 0.3);
      transform: translateX(4px);
    }
    .rank-num {
      font-size: 20px;
      font-weight: 900;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      color: var(--text-dim);
      background: rgba(255, 255, 255, 0.04);
      flex-shrink: 0;
    }
    .rank-num.top-1 {
      color: #fff;
      background: linear-gradient(135deg, #ff2a6d, #ff5e36);
      box-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
    }
    .rank-num.top-2 {
      color: #fff;
      background: linear-gradient(135deg, #8a2be2, #4a00e0);
      box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
    }
    .rank-num.top-3 {
      color: #fff;
      background: linear-gradient(135deg, #ffb800, #ff8c00);
      box-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
    }
    .rank-thumb {
      width: 52px;
      height: 72px;
      border-radius: 4px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .rank-content {
      flex-grow: 1;
      min-width: 0;
    }
    .rank-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }
    .rank-sub {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      gap: 12px;
    }
    .rank-trend {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent-cyan);
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }

    /* 板块 4：题材标签云与声优交叉检索网格 */
    .cross-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 25px;
    }
    .cross-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-lg);
      padding: 24px;
    }
    .cross-card-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cross-card-title::before {
      content: "";
      width: 4px;
      height: 16px;
      background: var(--primary);
      border-radius: 2px;
    }
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .tag-pill {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-line);
      color: var(--text-muted);
      font-size: 13px;
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s ease;
    }
    .tag-pill span {
      font-size: 11px;
      color: var(--text-dim);
    }
    .tag-pill:hover {
      background: rgba(255, 42, 109, 0.12);
      border-color: var(--primary);
      color: #fff;
    }

    /* 板块 5：分类片源压制规范与画质说明 */
    .spec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 30px;
    }
    .spec-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
      position: relative;
      overflow: hidden;
    }
    .spec-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      opacity: 0.8;
    }
    .spec-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }
    .spec-tag-main {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
    }
    .spec-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 15px;
    }
    .spec-list li {
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
      padding-bottom: 6px;
    }
    .spec-list li span:last-child {
      color: #fff;
      font-weight: 600;
    }

    /* 板块 6：分类常见观影与播放 FAQ */
    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 25px;
      max-width: 900px;
    }
    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color 0.25s ease;
    }
    .faq-item:hover {
      border-color: rgba(255, 42, 109, 0.3);
    }
    .faq-question {
      padding: 18px 22px;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }
    .faq-icon {
      color: var(--primary);
      font-size: 18px;
      transition: transform 0.3s ease;
    }
    .faq-answer {
      padding: 0 22px 18px 22px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 板块 7：分类追番更新订阅条 */
    .subscribe-banner {
      background: linear-gradient(135deg, rgba(25, 28, 48, 0.95), rgba(18, 21, 36, 0.95));
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-lg);
      padding: 35px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
      margin-top: 10px;
      position: relative;
      overflow: hidden;
    }
    .subscribe-banner::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
      pointer-events: none;
    }
    .sub-info h3 {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }
    .sub-info p {
      font-size: 14px;
      color: var(--text-muted);
    }
    .sub-form {
      display: flex;
      gap: 12px;
      min-width: 380px;
      z-index: 1;
    }
    .sub-input {
      flex: 1;
      background: rgba(10, 12, 20, 0.7);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-pill);
      padding: 12px 18px;
      color: #fff;
      font-size: 14px;
      outline: none;
      transition: border-color 0.25s ease;
    }
    .sub-input:focus {
      border-color: var(--primary);
    }
    .sub-btn {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      border: none;
      border-radius: var(--radius-pill);
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: var(--shadow-primary);
      white-space: nowrap;
      transition: opacity 0.2s ease;
    }
    .sub-btn:hover {
      opacity: 0.92;
    }

    /* 页脚 */
    .footer-wrap {
      background: #07080e;
      border-top: 1px solid var(--border-line);
      padding-top: 60px;
      padding-bottom: 30px;
      margin-top: 60px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand-col {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .footer-logo {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
    }
    .footer-desc {
      font-size: 13px;
      color: var(--text-dim);
      line-height: 1.8;
      max-width: 320px;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--text-dim);
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    /* 响应式断点适配 */
    @media (max-width: 1024px) {
      .movie-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .top10-layout, .cross-grid {
        grid-template-columns: 1fr;
      }
      .spec-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .search-mock {
        display: none;
      }
    }
    @media (max-width: 768px) {
      .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
      .subscribe-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
      }
      .sub-form {
        width: 100%;
        min-width: 100%;
        flex-direction: column;
      }
      .nav-menu {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 6px;
      }
      .line-status {
        display: none;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .hero-h1 {
        font-size: 24px;
      }
    }
    @media (max-width: 480px) {
      .movie-grid {
        grid-template-columns: 1fr;
      }
    }

/* roulang page: category5 */
:root {
      --bg-base: #0a0c14;
      --bg-surface: #121524;
      --bg-card: #191c30;
      --bg-card-hover: #222642;
      --primary: #ff2a6d;
      --primary-glow: rgba(255, 42, 109, 0.4);
      --secondary: #8a2be2;
      --accent-cyan: #05d9e8;
      --accent-gold: #ffb800;
      --text-main: #f1f5f9;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 42, 109, 0.25);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 14px;
      --radius-pill: 9999px;
      --container-max: 1240px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
      --shadow-primary: 0 4px 20px rgba(255, 42, 109, 0.35);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    button, input, select {
      font-family: inherit;
    }
    .container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    /* 顶部工具栏式导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 12, 20, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-line);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      box-shadow: 0 0 12px var(--primary-glow);
    }
    .live-dot {
      font-size: 11px;
      color: var(--accent-cyan);
      background: rgba(5, 217, 232, 0.15);
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(5, 217, 232, 0.3);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .live-dot::before {
      content: "";
      width: 6px;
      height: 6px;
      background: var(--accent-cyan);
      border-radius: 50%;
      box-shadow: 0 0 6px var(--accent-cyan);
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }
    .nav-menu a {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }
    .nav-menu a:hover,
    .nav-menu a.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }
    .nav-menu a.active {
      color: var(--primary);
      background: rgba(255, 42, 109, 0.08);
      font-weight: 600;
    }
    .toolbar-tools {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .search-mock {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-pill);
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 13px;
      gap: 8px;
      width: 200px;
    }
    .search-mock kbd {
      margin-left: auto;
      background: rgba(255, 255, 255, 0.08);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 10px;
      color: var(--text-dim);
    }
    .line-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      padding: 5px 10px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-line);
    }
    .status-bulb {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 8px #10b981;
    }
    .btn-action-sm {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 10px var(--primary-glow);
      transition: opacity 0.2s ease;
    }
    .btn-action-sm:hover {
      opacity: 0.92;
    }
    /* 统一大板块样式 */
    .section-spacing {
      padding-top: 75px;
      padding-bottom: 75px;
      position: relative;
    }
    .section-border-b {
      border-bottom: 1px solid var(--border-line);
    }
    .section-header {
      margin-bottom: 35px;
    }
    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--primary);
      margin-bottom: 8px;
      padding: 3px 10px;
      background: rgba(255, 42, 109, 0.1);
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-accent);
    }
    .section-title {
      font-size: 28px;
      font-weight: 800;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 10px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 800px;
    }
    /* 徽章 Badge */
    .badge-res {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      background: rgba(255, 184, 0, 0.15);
      color: var(--accent-gold);
      border: 1px solid rgba(255, 184, 0, 0.35);
      border-radius: var(--radius-sm);
      padding: 2px 6px;
    }
    .badge-cyan {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      background: rgba(5, 217, 232, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(5, 217, 232, 0.35);
      border-radius: var(--radius-sm);
      padding: 2px 6px;
    }
    .badge-pink {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      background: rgba(255, 42, 109, 0.15);
      color: var(--primary);
      border: 1px solid rgba(255, 42, 109, 0.35);
      border-radius: var(--radius-sm);
      padding: 2px 6px;
    }
    /* 按钮规范 */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow-primary);
      transition: all 0.25s ease;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px var(--primary-glow);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-line);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
    }
    /* 板块1：分类紧凑型标题与多维复合筛选器 */
    .filter-hero-wrap {
      padding-top: 36px;
      padding-bottom: 30px;
      background: radial-gradient(circle at 80% -20%, rgba(138, 43, 226, 0.18), transparent 60%),
                  radial-gradient(circle at 10% 120%, rgba(255, 42, 109, 0.15), transparent 50%),
                  var(--bg-surface);
      border-bottom: 1px solid var(--border-line);
    }
    .filter-header-inner {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .category-top-meta {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .cat-main-h1 {
      font-size: 30px;
      font-weight: 900;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .cat-main-h1 span.title-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--accent-cyan);
      border: 1px solid rgba(5, 217, 232, 0.3);
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      background: rgba(5, 217, 232, 0.08);
    }
    .cat-sub-desc {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 820px;
      line-height: 1.6;
    }
    .multi-filter-box {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 18px 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .filter-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dim);
      min-width: 70px;
    }
    .filter-options {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .filter-pill {
      font-size: 12px;
      padding: 5px 12px;
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-pill:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-pill.active {
      background: linear-gradient(135deg, rgba(255, 42, 109, 0.2), rgba(138, 43, 226, 0.2));
      color: #fff;
      border-color: var(--border-accent);
      font-weight: 600;
    }
    /* 板块2：动漫片单卡片主体 */
    .anime-grid-5cols {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .anime-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-line);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      position: relative;
    }
    .anime-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card);
      border-color: rgba(255, 42, 109, 0.3);
    }
    .poster-box {
      position: relative;
      width: 100%;
      aspect-ratio: 3/4;
      overflow: hidden;
      background: var(--bg-surface);
    }
    .poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .anime-card:hover .poster-box img {
      transform: scale(1.05);
    }
    .poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 12, 20, 0.9) 0%, rgba(10, 12, 20, 0.2) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 10px;
    }
    .overlay-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .overlay-bottom {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }
    .rating-pill {
      font-size: 11px;
      font-weight: 800;
      color: #fff;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      padding: 2px 6px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 3px;
    }
    .rating-pill span.star {
      color: var(--accent-gold);
    }
    .audio-spec {
      font-size: 10px;
      color: var(--accent-cyan);
      font-family: monospace;
      font-weight: 700;
      background: rgba(5, 217, 232, 0.2);
      padding: 1px 5px;
      border-radius: 3px;
    }
    .card-content {
      padding: 14px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }
    .card-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 6px;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-seiyuu {
      font-size: 12px;
      color: var(--primary);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .card-track-info {
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.5;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-footer-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 10px;
      margin-top: auto;
    }
    .meta-tag-mini {
      font-size: 11px;
      color: var(--text-muted);
    }
    .btn-play-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .anime-card:hover .btn-play-icon {
      background: var(--primary);
      box-shadow: 0 0 10px var(--primary-glow);
    }
    .pagination-bar {
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    /* 板块3：口碑排行榜 Top 10 */
    .top-rank-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .rank-item-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: all 0.2s ease;
    }
    .rank-item-card:hover {
      background: var(--bg-card-hover);
      border-color: rgba(255, 42, 109, 0.3);
      transform: translateX(4px);
    }
    .rank-number {
      font-size: 22px;
      font-weight: 900;
      color: var(--text-dim);
      font-style: italic;
      min-width: 32px;
      text-align: center;
    }
    .rank-number.top-three {
      color: var(--accent-gold);
      text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
    }
    .rank-thumb {
      width: 60px;
      height: 60px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }
    .rank-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .rank-info {
      flex-grow: 1;
      min-width: 0;
    }
    .rank-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-meta {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .rank-hot {
      font-size: 12px;
      color: var(--primary);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: auto;
      flex-shrink: 0;
    }
    /* 板块4：题材标签云与声优交叉检索网格 */
    .seiyuu-cloud-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    .cloud-box-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
    }
    .cloud-panel-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .tag-cluster {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .cluster-badge {
      font-size: 13px;
      color: var(--text-muted);
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      transition: all 0.2s ease;
      cursor: pointer;
    }
    .cluster-badge:hover {
      color: #fff;
      border-color: var(--accent-cyan);
      background: rgba(5, 217, 232, 0.1);
      transform: translateY(-2px);
    }
    .cluster-badge.highlight {
      color: var(--primary);
      border-color: var(--border-accent);
      background: rgba(255, 42, 109, 0.08);
      font-weight: 600;
    }
    /* 板块5：片源压制规范与母带级音轨说明 */
    .audio-specs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .spec-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
      position: relative;
    }
    .spec-card-icon {
      font-size: 24px;
      color: var(--accent-cyan);
      margin-bottom: 14px;
    }
    .spec-card-title {
      font-size: 17px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }
    .spec-card-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .spec-card-meta {
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 12px;
      color: var(--accent-gold);
      font-weight: 600;
    }
    /* 板块6：手风琴折叠 FAQ */
    .faq-accordion-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-item-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color 0.25s ease;
    }
    .faq-item-card:hover {
      border-color: rgba(255, 42, 109, 0.3);
    }
    .faq-summary {
      padding: 18px 24px;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }
    .faq-summary::after {
      content: "+";
      font-size: 20px;
      color: var(--primary);
      transition: transform 0.2s ease;
    }
    details[open] .faq-summary::after {
      content: "−";
      transform: rotate(180deg);
    }
    .faq-content {
      padding: 0 24px 20px 24px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 14px;
    }
    /* 板块7：声优更新订阅条 */
    .sub-bar-box {
      background: linear-gradient(135deg, rgba(25, 28, 48, 0.95), rgba(18, 21, 36, 0.95));
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-lg);
      padding: 34px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      box-shadow: 0 10px 30px rgba(255, 42, 109, 0.1);
    }
    .sub-bar-info h3 {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }
    .sub-bar-info p {
      font-size: 14px;
      color: var(--text-muted);
    }
    .sub-input-group {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 380px;
    }
    .sub-field {
      flex-grow: 1;
      background: rgba(10, 12, 20, 0.8);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-pill);
      padding: 12px 20px;
      color: #fff;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s ease;
    }
    .sub-field:focus {
      border-color: var(--primary);
    }
    /* 页脚样式 */
    .footer-wrap {
      background: #08090f;
      border-top: 1px solid var(--border-line);
      padding-top: 60px;
      padding-bottom: 35px;
      margin-top: 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand-col .footer-logo {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
    }
    .footer-desc {
      font-size: 13px;
      color: var(--text-dim);
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 13px;
      color: var(--text-muted);
      transition: color 0.2s ease;
    }
    .footer-links a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
      font-size: 12px;
      color: var(--text-dim);
    }
    .footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    /* 响应式适配 */
    @media (max-width: 1100px) {
      .anime-grid-5cols {
        grid-template-columns: repeat(3, 1fr);
      }
      .audio-specs-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 768px) {
      .header-inner {
        flex-wrap: wrap;
        padding-top: 10px;
        padding-bottom: 10px;
      }
      .site-header {
        height: auto;
      }
      .nav-menu {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 6px;
      }
      .search-mock, .line-status {
        display: none;
      }
      .anime-grid-5cols {
        grid-template-columns: repeat(2, 1fr);
      }
      .top-rank-container,
      .seiyuu-cloud-wrapper {
        grid-template-columns: 1fr;
      }
      .sub-bar-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
      }
      .sub-input-group {
        width: 100%;
        min-width: unset;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 480px) {
      .anime-grid-5cols {
        grid-template-columns: 1fr;
      }
      .sub-input-group {
        flex-direction: column;
      }
      .sub-field, .btn-primary {
        width: 100%;
      }
    }
