/* roulang page: index */
:root {
      --bg-base: #0e1017;
      --bg-surface: #161922;
      --bg-elevated: #1f2430;
      --brand-gradient: linear-gradient(135deg, #6320ee 0%, #fa5252 100%);
      --accent-cyan: #20c997;
      --accent-orange: #fa5252;
      --accent-purple: #6320ee;
      --text-main: #ffffff;
      --text-muted: #a0aec0;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(250, 82, 82, 0.4);
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 999px;
      --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 24px rgba(250, 82, 82, 0.35);
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: #fff;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container-wide {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* 顶部通报槽 (招投标公告风格演化) */
    .top-notice-bar {
      background: #090a0f;
      border-bottom: 1px solid var(--border-subtle);
      font-size: 13px;
      padding: 8px 0;
      color: var(--text-muted);
    }
    .top-notice-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .notice-pill {
      background: rgba(32, 201, 151, 0.12);
      color: var(--accent-cyan);
      border: 1px solid rgba(32, 201, 151, 0.25);
      padding: 2px 10px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
    }

    /* 主导航栏 */
    .site-header {
      background: rgba(14, 16, 23, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 74px;
    }
    .brand-logo {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-item {
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 500;
      padding: 6px 0;
      position: relative;
    }
    .nav-item:hover, .nav-item.active {
      color: #ffffff;
    }
    .nav-item.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
    }
    .header-status-chip {
      background: rgba(250, 82, 82, 0.1);
      border: 1px solid rgba(250, 82, 82, 0.3);
      color: #ff8787;
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent-orange);
      box-shadow: 0 0 8px var(--accent-orange);
    }

    /* 按钮与徽章 */
    .btn-brand {
      background: var(--brand-gradient);
      color: #ffffff;
      padding: 12px 28px;
      border-radius: var(--radius-pill);
      font-size: 15px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-glow);
      transition: var(--transition-smooth);
    }
    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 32px rgba(250, 82, 82, 0.55);
      color: #ffffff;
    }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      color: #ffffff;
      padding: 12px 24px;
      border-radius: var(--radius-pill);
      font-size: 15px;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
      background: rgba(99, 32, 238, 0.2);
      border: 1px solid rgba(99, 32, 238, 0.4);
      color: #e599f7;
    }
    .badge-cyan {
      background: rgba(32, 201, 151, 0.15);
      border-color: rgba(32, 201, 151, 0.4);
      color: var(--accent-cyan);
    }

    /* 板块通用标题 */
    .section-spacing {
      padding: 70px 0;
    }
    .section-header {
      margin-bottom: 40px;
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      letter-spacing: -0.3px;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
      max-width: 800px;
    }

    /* 1. Hero 视觉指标看板区 (路线图预告 + 节点条) */
    .hero-section {
      padding: 60px 0 50px 0;
      background-image: linear-gradient(180deg, rgba(14, 16, 23, 0.7) 0%, #0e1017 100%), url('/assets/images/80e03ed0452850fd.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .hero-h1 {
      font-size: 40px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -0.8px;
    }
    .hero-intro {
      font-size: 16px;
      line-height: 1.8;
      color: #cbd5e1;
      margin-bottom: 28px;
      max-width: 780px;
    }
    .hero-search-box {
      display: flex;
      max-width: 620px;
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 6px 8px;
      margin-bottom: 35px;
    }
    .hero-search-box input {
      background: transparent;
      border: none;
      color: #ffffff;
      padding: 10px 18px;
      flex-grow: 1;
      font-size: 15px;
      outline: none;
    }
    .roadmap-node-bar {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin-top: 30px;
    }
    .node-card {
      background: rgba(22, 25, 34, 0.85);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 20px;
      transition: var(--transition-smooth);
    }
    .node-card:hover {
      border-color: rgba(250, 82, 82, 0.3);
      transform: translateY(-4px);
    }
    .node-status {
      font-size: 12px;
      color: var(--accent-cyan);
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
    }
    .node-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .node-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 2. 神马影院流媒体服务矩阵 (四列大圆角卡) */
    .feature-grid-4 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .card-feature {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 30px 24px;
      box-shadow: var(--shadow-card);
      transition: var(--transition-smooth);
    }
    .card-feature:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
    }
    .card-feature-badge {
      margin-bottom: 16px;
    }
    .card-feature-title {
      font-size: 19px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #fff;
    }
    .card-feature-p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.65;
    }

    /* 3. 播放体验多维结果对比看板 (高对比表格大卡) */
    .compare-container {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 32px;
      overflow-x: auto;
      box-shadow: var(--shadow-card);
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }
    .compare-table th {
      color: #cbd5e1;
      font-size: 15px;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-subtle);
      background: transparent;
    }
    .compare-table td {
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      font-size: 14px;
      color: var(--text-muted);
      background: transparent;
    }
    .compare-table tr:hover td {
      background: rgba(255, 255, 255, 0.02);
    }
    .compare-lead {
      color: #ffffff;
      font-weight: 600;
    }
    .compare-highlight {
      color: var(--accent-cyan);
      font-weight: 600;
    }

    /* 4. 神马影院技术演化里程碑 (横向时间轴) */
    .timeline-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      position: relative;
    }
    .timeline-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 26px;
      position: relative;
    }
    .timeline-phase {
      color: var(--accent-orange);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .timeline-title {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #ffffff;
    }
    .timeline-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 5. 实时更新与影视资讯流 (左大图，右列表) */
    .media-info-layout {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
    }
    .featured-cover-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .featured-cover-img-wrapper {
      position: relative;
      height: 280px;
      overflow: hidden;
    }
    .featured-cover-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .featured-cover-body {
      padding: 24px;
      flex-grow: 1;
    }
    .news-list-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .news-item {
      padding: 16px 0;
      border-bottom: 1px solid var(--border-subtle);
    }
    .news-item:last-child {
      border-bottom: none;
    }
    .news-tag-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 6px;
      font-size: 12px;
    }
    .news-item-title {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 6px;
    }
    .news-item-snippet {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 6. 多重专线播放保障与平台稳定性体系 (三列深色卡) */
    .security-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }
    .card-security {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 32px 26px;
      position: relative;
    }
    .card-security-head {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 14px;
      color: #fff;
    }
    .card-security-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 7. 多元观影场景定制解决方案 (网格大卡带图) */
    .scene-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 22px;
    }
    .scene-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--transition-smooth);
    }
    .scene-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-hover);
    }
    .scene-img-box {
      height: 160px;
      overflow: hidden;
    }
    .scene-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .scene-body {
      padding: 22px;
    }
    .scene-title {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }
    .scene-p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 8. 题材专题库与片单矩阵 (允许去分类页的入口) */
    .topics-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
    }
    .topic-card {
      background: linear-gradient(180deg, #1c212c 0%, #151821 100%);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 24px 20px;
      text-align: center;
      display: block;
      transition: var(--transition-smooth);
    }
    .topic-card:hover {
      border-color: rgba(250, 82, 82, 0.4);
      box-shadow: 0 10px 24px rgba(0,0,0,0.4);
      transform: translateY(-4px);
    }
    .topic-name {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }
    .topic-count {
      font-size: 13px;
      color: var(--accent-cyan);
      margin-bottom: 12px;
    }
    .topic-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 9. 观影互动与快速响应指南 (双列图标大卡) */
    .support-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }
    .support-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 28px;
      display: flex;
      gap: 20px;
    }
    .support-icon-box {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: rgba(99, 32, 238, 0.15);
      border: 1px solid rgba(99, 32, 238, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #d0bfff;
      font-size: 20px;
      flex-shrink: 0;
    }
    .support-info h4 {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .support-info p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 10. 常见问题 FAQ (手风琴大卡) */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px 28px;
    }
    .faq-q {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .faq-q-badge {
      color: var(--accent-orange);
      font-weight: 800;
    }
    .faq-a {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 11. 体验官招募与片单预约表单 */
    .subscribe-box {
      background: linear-gradient(135deg, rgba(99, 32, 238, 0.15) 0%, rgba(250, 82, 82, 0.1) 100%), var(--bg-surface);
      border: 1px solid rgba(250, 82, 82, 0.3);
      border-radius: var(--radius-lg);
      padding: 50px 30px;
      text-align: center;
      max-width: 860px;
      margin: 0 auto;
      box-shadow: var(--shadow-card);
    }
    .subscribe-box h3 {
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
    }
    .subscribe-box p {
      color: var(--text-muted);
      font-size: 15px;
      max-width: 620px;
      margin: 0 auto 28px auto;
      line-height: 1.65;
    }
    .form-inline {
      display: flex;
      max-width: 520px;
      margin: 0 auto 20px auto;
      gap: 10px;
    }
    .form-inline input {
      flex: 1;
      background: rgba(14, 16, 23, 0.8);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 12px 20px;
      color: #fff;
      font-size: 14px;
      outline: none;
    }
    .form-inline input:focus {
      border-color: rgba(250, 82, 82, 0.5);
    }
    .form-subtext {
      font-size: 12px;
      color: #64748b;
    }

    /* 页脚 */
    .site-footer {
      background: #08090d;
      border-top: 1px solid var(--border-subtle);
      padding: 50px 0 30px 0;
      color: var(--text-muted);
      font-size: 13px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 30px;
      margin-bottom: 40px;
    }
    .footer-brand h4 {
      font-size: 20px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 14px;
    }
    .footer-brand p {
      line-height: 1.65;
      max-width: 320px;
    }
    .footer-col h5 {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 14px;
    }
    .footer-col ul {
      list-style: none;
    }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .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: 14px;
    }

    /* 响应式媒体查询 */
    @media (max-width: 1024px) {
      .media-info-layout {
        grid-template-columns: 1fr;
      }
      .footer-grid {        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero-h1 {
        font-size: 28px;
      }
      .nav-container {
        height: auto;
        padding: 16px 0;
        flex-direction: column;
        gap: 14px;
      }
      .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .form-inline {
        flex-direction: column;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .compare-container {
        padding: 16px;
      }
      .top-notice-flex {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* roulang page: category2 */
:root {
      --bg-base: #0e1017;
      --bg-surface: #161922;
      --bg-elevated: #1f2430;
      --brand-gradient: linear-gradient(135deg, #6320ee 0%, #fa5252 100%);
      --accent-cyan: #20c997;
      --accent-orange: #fa5252;
      --accent-purple: #6320ee;
      --text-main: #ffffff;
      --text-muted: #a0aec0;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(250, 82, 82, 0.4);
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 999px;
      --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 24px rgba(250, 82, 82, 0.35);
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: #ffffff;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container-wide {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* 顶部主导航 */
    .site-header {
      background: rgba(14, 16, 23, 0.9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 74px;
    }

    .brand-logo {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-item {
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 500;
      padding: 6px 0;
      position: relative;
    }

    .nav-item:hover, .nav-item.active {
      color: #ffffff;
    }

    .nav-item.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
    }

    .header-status-chip {
      background: rgba(250, 82, 82, 0.1);
      border: 1px solid rgba(250, 82, 82, 0.3);
      color: #ff8787;
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      background-color: #fa5252;
      border-radius: 50%;
      box-shadow: 0 0 8px #fa5252;
      animation: pulseDot 2s infinite;
    }

    @keyframes pulseDot {
      0% { transform: scale(0.95); opacity: 0.8; }
      50% { transform: scale(1.2); opacity: 1; }
      100% { transform: scale(0.95); opacity: 0.8; }
    }

    /* 次行通告条 */
    .notice-bar {
      background: rgba(22, 25, 34, 0.7);
      border-bottom: 1px solid var(--border-subtle);
      padding: 8px 0;
      font-size: 13px;
    }
    .notice-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .notice-content {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-muted);
    }
    .notice-tag {
      background: rgba(32, 201, 151, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(32, 201, 151, 0.3);
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      font-size: 11px;
      font-weight: 600;
    }

    /* 通用组件 */
    .badge-pill {
      display: inline-flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
      background: rgba(99, 32, 238, 0.2);
      border: 1px solid rgba(99, 32, 238, 0.4);
      color: #e599f7;
    }

    .badge-cyan {
      background: rgba(32, 201, 151, 0.15);
      border-color: rgba(32, 201, 151, 0.4);
      color: var(--accent-cyan);
    }

    .badge-orange {
      background: rgba(250, 82, 82, 0.15);
      border-color: rgba(250, 82, 82, 0.4);
      color: #ff8787;
    }

    .btn-brand {
      background: var(--brand-gradient);
      color: #ffffff;
      padding: 12px 30px;
      border-radius: var(--radius-pill);
      font-size: 15px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-glow);
      transition: var(--transition-smooth);
    }
    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 32px rgba(250, 82, 82, 0.6);
      color: #ffffff;
    }

    .section-spacing {
      padding: 60px 0;
    }

    .section-header {
      margin-bottom: 32px;
    }

    .section-title {
      font-size: 26px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      letter-spacing: -0.3px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-desc {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    /* 1. 分类统计与面包屑区 */
    .channel-hero {
      padding: 36px 0 24px;
      border-bottom: 1px solid var(--border-subtle);
      background: linear-gradient(180deg, rgba(31, 36, 48, 0.4) 0%, rgba(14, 16, 23, 0) 100%);
    }

    .breadcrumb-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .breadcrumb-nav a:hover {
      color: var(--accent-orange);
    }
    .breadcrumb-separator {
      color: #4a5568;
    }

    .channel-header-box {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .channel-title-group h1 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 10px;
      color: #ffffff;
    }

    .channel-stats-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .stat-chip {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: #cbd5e1;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .stat-chip strong {
      color: #ffffff;
      font-weight: 700;
    }

    /* 2. 多维分类智能筛选矩阵 */
    .filter-matrix {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 24px;
      margin-top: 30px;
      box-shadow: var(--shadow-card);
    }

    .filter-row {
      display: flex;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .filter-label {
      width: 80px;
      flex-shrink: 0;
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 600;
      padding-top: 4px;
    }

    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      flex-grow: 1;
    }

    .filter-opt {
      font-size: 13px;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      color: #cbd5e1;
      background: transparent;
      border: 1px solid transparent;
      transition: var(--transition-smooth);
      cursor: pointer;
    }
    .filter-opt:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-opt.active {
      background: var(--brand-gradient);
      color: #ffffff;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(250, 82, 82, 0.3);
    }

    /* 3. 分类影视主体卡片展示网格 */
    .drama-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      transition: var(--transition-smooth);
      box-shadow: 0 10px 24px rgba(0,0,0,0.3);
    }
    .drama-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: var(--shadow-card);
    }

    .poster-wrap {
      position: relative;
      width: 100%;
      padding-top: 140%;
      overflow: hidden;
      background: #11141c;
    }
    .poster-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .drama-card:hover .poster-wrap img {
      transform: scale(1.06);
    }

    .badge-rating {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(14, 16, 23, 0.85);
      backdrop-filter: blur(6px);
      color: #ffd43b;
      font-weight: 800;
      font-size: 12px;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 212, 59, 0.3);
      z-index: 2;
    }

    .badge-stream {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(99, 32, 238, 0.85);
      backdrop-filter: blur(6px);
      color: #ffffff;
      font-size: 11px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      z-index: 2;
    }

    .drama-info {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .drama-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .drama-meta {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .drama-desc {
      font-size: 13px;
      color: #94a3b8;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 14px;
      flex-grow: 1;
    }

    .drama-action-bar {
      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;
    }

    .ep-tag {
      font-size: 12px;
      color: var(--accent-cyan);
      font-weight: 500;
    }

    .play-link {
      font-size: 12px;
      font-weight: 600;
      color: #fa5252;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .play-link:hover {
      color: #ff8787;
    }

    .pagination-wrapper {
      text-align: center;
      margin-top: 40px;
    }

    /* 4. 榜单大卡看板 */
    .top-rank-container {
      background: linear-gradient(135deg, rgba(22, 25, 34, 0.95) 0%, rgba(31, 36, 48, 0.8) 100%);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--shadow-card);
    }

    .rank-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: var(--transition-smooth);
    }
    .rank-item:hover {
      background: rgba(255, 255, 255, 0.02);
      border-radius: var(--radius-md);
      padding-left: 10px;
      padding-right: 10px;
    }
    .rank-item:last-child {
      border-bottom: none;
    }

    .rank-num {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-muted);
      flex-shrink: 0;
    }
    .rank-num.top-1 {
      background: #fa5252;
      color: #ffffff;
      box-shadow: 0 0 12px rgba(250, 82, 82, 0.5);
    }
    .rank-num.top-2 {
      background: #ff922b;
      color: #ffffff;
    }
    .rank-num.top-3 {
      background: #fcc419;
      color: #111;
    }

    .rank-detail {
      flex-grow: 1;
      min-width: 0;
    }
    .rank-name {
      font-size: 15px;
      font-weight: 700;
      color: #ffffff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 2px;
    }
    .rank-meta {
      font-size: 12px;
      color: var(--text-muted);
    }

    .rank-score-pill {
      font-size: 13px;
      font-weight: 700;
      color: var(--accent-cyan);
      background: rgba(32, 201, 151, 0.1);
      border: 1px solid rgba(32, 201, 151, 0.25);
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      white-space: nowrap;
    }

    /* 5. 题材专题剧评与看点深度解析 */
    .spotlight-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 24px;
      transition: var(--transition-smooth);
    }
    .spotlight-card:hover {
      border-color: rgba(99, 32, 238, 0.4);
      box-shadow: var(--shadow-card);
    }
    .spotlight-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .spotlight-body {
      padding: 24px;
    }
    .spotlight-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }
    .spotlight-title {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
    }
    .spotlight-text {
      font-size: 14px;
      color: #94a3b8;
      line-height: 1.7;
    }

    /* 6. 跨端播放画质与参数卡 */
    .spec-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 24px;
      height: 100%;
      position: relative;
      transition: var(--transition-smooth);
    }
    .spec-card:hover {
      border-color: rgba(32, 201, 151, 0.4);
      transform: translateY(-4px);
    }
    .spec-badge {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent-cyan);
      background: rgba(32, 201, 151, 0.12);
      border: 1px solid rgba(32, 201, 151, 0.3);
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      display: inline-block;
      margin-bottom: 12px;
    }
    .spec-title {
      font-size: 17px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }
    .spec-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .spec-list li {
      font-size: 13px;
      color: #94a3b8;
      padding: 6px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
    }
    .spec-list li:last-child {
      border-bottom: none;
    }
    .spec-val {
      color: #ffffff;
      font-weight: 600;
    }

    /* 7. 片源收录准则与版权保障 */
    .policy-banner {
      background: linear-gradient(90deg, rgba(99, 32, 238, 0.15) 0%, rgba(22, 25, 34, 0.8) 100%);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 32px;
      position: relative;
    }
    .policy-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      flex-wrap: wrap;
    }
    .policy-info {
      max-width: 820px;
    }
    .policy-info h3 {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }
    .policy-info p {
      font-size: 14px;
      color: #94a3b8;
      line-height: 1.7;
      margin-bottom: 0;
    }

    /* 页脚 */
    .site-footer {
      background: #090a0f;
      border-top: 1px solid var(--border-subtle);
      padding: 60px 0 30px;
      margin-top: 60px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand h4 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 14px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }
    .footer-brand p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 320px;
    }
    .footer-col h5 {
      font-size: 15px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 16px;
    }
    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .footer-col ul li a {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-col ul li a:hover {
      color: #ffffff;
      padding-left: 4px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 24px;
      font-size: 13px;
      color: #64748b;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    /* 移动端与响应式适配 */
    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 768px) {
      .nav-container {
        height: auto;
        padding: 14px 0;
        flex-direction: column;
        gap: 14px;
      }
      .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
      }
      .header-status-chip {
        display: none;
      }
      .channel-title-group h1 {
        font-size: 24px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
      .policy-grid {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* roulang page: category1 */
:root {
      --bg-base: #0e1017;
      --bg-surface: #161922;
      --bg-elevated: #1f2430;
      --brand-gradient: linear-gradient(135deg, #6320ee 0%, #fa5252 100%);
      --accent-cyan: #20c997;
      --accent-orange: #fa5252;
      --accent-purple: #6320ee;
      --text-main: #ffffff;
      --text-muted: #a0aec0;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(250, 82, 82, 0.4);
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 999px;
      --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 24px rgba(250, 82, 82, 0.35);
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: #fff;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container-wide {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .notice-pill {
      background: rgba(32, 201, 151, 0.12);
      color: var(--accent-cyan);
      border: 1px solid rgba(32, 201, 151, 0.25);
      padding: 2px 10px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
    }
    /* 主导航栏 */
    .site-header {
      background: rgba(14, 16, 23, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 74px;
    }
    .brand-logo {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-item {
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 500;
      padding: 6px 0;
      position: relative;
    }
    .nav-item:hover, .nav-item.active {
      color: #ffffff;
    }
    .nav-item.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
    }
    .header-status-chip {
      background: rgba(250, 82, 82, 0.1);
      border: 1px solid rgba(250, 82, 82, 0.3);
      color: #ff8787;
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: var(--accent-orange);
      box-shadow: 0 0 8px var(--accent-orange);
    }
    /* 公告条 */
    .notice-bar {
      background: rgba(31, 36, 48, 0.6);
      border-bottom: 1px solid var(--border-subtle);
      padding: 8px 0;
      font-size: 13px;
      color: var(--text-muted);
    }
    .notice-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    /* 按钮与徽章通用 */
    .btn-brand {
      background: var(--brand-gradient);
      color: #ffffff;
      padding: 12px 28px;
      border-radius: var(--radius-pill);
      font-size: 15px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-glow);
      transition: var(--transition-smooth);
    }
    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 32px rgba(250, 82, 82, 0.55);
      color: #ffffff;
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
      background: rgba(99, 32, 238, 0.2);
      border: 1px solid rgba(99, 32, 238, 0.4);
      color: #e599f7;
    }
    .badge-cyan {
      background: rgba(32, 201, 151, 0.15);
      border-color: rgba(32, 201, 151, 0.4);
      color: var(--accent-cyan);
    }
    .badge-gold {
      background: rgba(255, 193, 7, 0.15);
      border: 1px solid rgba(255, 193, 7, 0.4);
      color: #ffd43b;
    }
    .section-spacing {
      padding: 56px 0;
    }
    .section-header {
      margin-bottom: 32px;
    }
    .section-title {
      font-size: 26px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
      letter-spacing: -0.3px;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
    }

    /* 板块1：分类统计与头部 */
    .cat-header-panel {
      padding: 40px 0 24px 0;
      background: radial-gradient(circle at 10% 20%, rgba(99, 32, 238, 0.15) 0%, rgba(14, 16, 23, 0.9) 70%);
      border-bottom: 1px solid var(--border-subtle);
    }
    .breadcrumbs-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 18px;
    }
    .breadcrumbs-bar a:hover {
      color: #fff;
    }
    .category-main-title {
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 14px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .category-stat-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-top: 14px;
    }
    .stat-chip {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 6px 16px;
      font-size: 13px;
      color: #e2e8f0;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .stat-chip strong {
      color: var(--accent-orange);
    }

    /* 板块2：多维分类智能筛选矩阵 */
    .filter-matrix-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-card);
    }
    .filter-group-row {
      display: flex;
      align-items: flex-start;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .filter-group-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 90px;
      flex-shrink: 0;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      padding-top: 4px;
    }
    .filter-tags-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      flex-grow: 1;
    }
    .filter-tag-chip {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid transparent;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: #cbd5e1;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-tag-chip:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }
    .filter-tag-chip.active {
      background: var(--brand-gradient);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(250, 82, 82, 0.3);
    }

    /* 板块3：分类影视主体网格 */
    .movie-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 24px;
      transition: var(--transition-smooth);
      position: relative;
    }
    .movie-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
    }
    .movie-poster-box {
      position: relative;
      width: 100%;
      height: 280px;
      overflow: hidden;
      background-color: #0b0c10;
    }
    .movie-poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .movie-card:hover .movie-poster-box img {
      transform: scale(1.05);
    }
    .poster-badge-top-right {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
    }
    .poster-badge-bottom-left {
      position: absolute;
      bottom: 10px;
      left: 10px;
      z-index: 2;
    }
    .movie-info-body {
      padding: 16px;
    }
    .movie-title-text {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-meta-sub {
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }
    .movie-desc-excerpt {
      font-size: 13px;
      color: #94a3b8;
      line-height: 1.5;
      height: 40px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .pagination-bar {
      text-align: center;
      margin-top: 18px;
    }

    /* 板块4：分类专属热播榜单 */
    .top-rank-container {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 28px;
    }
    .rank-table-row {
      display: flex;
      align-items: center;
      padding: 14px 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      transition: var(--transition-smooth);
    }
    .rank-table-row:last-child {
      border-bottom: none;
    }
    .rank-table-row:hover {
      background: rgba(255, 255, 255, 0.02);
      border-radius: var(--radius-md);
    }
    .rank-num-box {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 17px;
      border-radius: 10px;
      margin-right: 18px;
      background: rgba(255, 255, 255, 0.05);
      color: #94a3b8;
    }
    .rank-top1 { background: var(--brand-gradient); color: #fff; }
    .rank-top2 { background: rgba(250, 82, 82, 0.2); color: #ff8787; border: 1px solid rgba(250, 82, 82, 0.4); }
    .rank-top3 { background: rgba(99, 32, 238, 0.2); color: #e599f7; border: 1px solid rgba(99, 32, 238, 0.4); }
    .rank-main-info {
      flex-grow: 1;
    }
    .rank-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 4px;
    }
    .rank-sub {
      font-size: 13px;
      color: var(--text-muted);
    }
    .rank-metrics {
      display: flex;
      align-items: center;
      gap: 16px;
      text-align: right;
    }

    /* 板块5：分类专题赏析与深度解析 */
    .spotlight-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      transition: var(--transition-smooth);
    }
    @media (min-width: 768px) {
      .spotlight-card {
        flex-direction: row;
      }
      .spotlight-thumb {
        width: 42%;
        flex-shrink: 0;
      }
      .spotlight-content {
        width: 58%;
      }
    }
    .spotlight-thumb {
      height: 240px;
      position: relative;
    }
    @media (min-width: 768px) {
      .spotlight-thumb {
        height: auto;
      }
    }
    .spotlight-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .spotlight-content {
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .spotlight-tag {
      margin-bottom: 10px;
    }
    .spotlight-title {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
    }
    .spotlight-p {
      color: #94a3b8;
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    /* 板块6：跨端设备适配与画质参数说明 */
    .spec-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .spec-card:hover {
      border-color: rgba(250, 82, 82, 0.35);
      transform: translateY(-4px);
    }
    .spec-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(99, 32, 238, 0.15);
      border: 1px solid rgba(99, 32, 238, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: #fa5252;
    }
    .spec-title {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }
    .spec-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .spec-item-list {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 13px;
      color: #cbd5e1;
    }
    .spec-item-list li {
      padding: 4px 0;
      display: flex;
      justify-content: space-between;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }

    /* 板块7：片源收录准则与合规声明 */
    .compliance-card {
      background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(22, 25, 34, 0.9) 100%);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-card);
    }
    .compliance-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 768px) {
      .compliance-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    .comp-item h4 {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .comp-item p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }

    /* 页脚 */
    .site-footer {
      background-color: #0b0d13;
      border-top: 1px solid var(--border-subtle);
      padding: 60px 0 30px;
      margin-top: 60px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 540px) {      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
    .footer-brand h4 {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }
    .footer-brand p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.7;
      max-width: 340px;
    }
    .footer-col h5 {
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-col li {
      margin-bottom: 10px;
    }
    .footer-col a {
      color: var(--text-muted);
      font-size: 13px;
    }
    .footer-col a:hover {
      color: var(--accent-orange);
    }
    .footer-bottom {
      border-top: 1px solid var(--border-subtle);
      padding-top: 24px;
      font-size: 13px;
      color: #64748b;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    @media (max-width: 768px) {
      .main-nav {
        display: none;
      }
      .header-status-chip {
        font-size: 11px;
        padding: 4px 10px;
      }
      .category-main-title {
        font-size: 26px;
      }
      .rank-table-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
      .rank-metrics {
        text-align: left;
      }
    }

/* roulang page: category3 */
:root {
      --bg-base: #0e1017;
      --bg-surface: #161922;
      --bg-elevated: #1f2430;
      --brand-gradient: linear-gradient(135deg, #6320ee 0%, #fa5252 100%);
      --accent-cyan: #20c997;
      --accent-orange: #fa5252;
      --accent-purple: #6320ee;
      --text-main: #ffffff;
      --text-muted: #a0aec0;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(250, 82, 82, 0.4);
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 999px;
      --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 24px rgba(250, 82, 82, 0.35);
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    * {
      box-sizing: border-box;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      margin: 0;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: #ffffff;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container-wide {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .notice-pill {
      background: rgba(32, 201, 151, 0.12);
      color: var(--accent-cyan);
      border: 1px solid rgba(32, 201, 151, 0.25);
      padding: 2px 10px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
    }
    .site-header {
      background: rgba(14, 16, 23, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 74px;
    }
    .brand-logo {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-item {
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 500;
      padding: 6px 0;
      position: relative;
    }
    .nav-item:hover, .nav-item.active {
      color: #ffffff;
    }
    .nav-item.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
    }
    .header-status-chip {
      background: rgba(250, 82, 82, 0.1);
      border: 1px solid rgba(250, 82, 82, 0.3);
      color: #ff8787;
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: var(--accent-orange);
      box-shadow: 0 0 8px var(--accent-orange);
      animation: pulseDot 2s infinite ease-in-out;
    }
    @keyframes pulseDot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.3); opacity: 0.6; }
    }
    .notice-bar {
      background: rgba(22, 25, 34, 0.95);
      border-bottom: 1px solid var(--border-subtle);
      padding: 9px 0;
      font-size: 13px;
      color: var(--text-muted);
    }
    .notice-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      flex-wrap: wrap;
    }
    .notice-tag {
      background: rgba(99, 32, 238, 0.25);
      color: #e599f7;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      margin-right: 8px;
    }
    .breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .breadcrumbs a:hover {
      color: var(--accent-cyan);
    }
    .breadcrumbs span.separator {
      opacity: 0.4;
    }
    .btn-brand {
      background: var(--brand-gradient);
      color: #ffffff;
      padding: 12px 28px;
      border-radius: var(--radius-pill);
      font-size: 15px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-glow);
      transition: var(--transition-smooth);
    }
    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 32px rgba(250, 82, 82, 0.55);
      color: #ffffff;
    }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      color: #ffffff;
      padding: 10px 22px;
      border-radius: var(--radius-pill);
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
      color: #fff;
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
      background: rgba(99, 32, 238, 0.25);
      border: 1px solid rgba(99, 32, 238, 0.4);
      color: #e599f7;
    }
    .badge-cyan {
      background: rgba(32, 201, 151, 0.15);
      border-color: rgba(32, 201, 151, 0.4);
      color: var(--accent-cyan);
    }
    .badge-orange {
      background: rgba(250, 82, 82, 0.18);
      border-color: rgba(250, 82, 82, 0.45);
      color: #ff8787;
    }
    .section-spacing {
      padding: 55px 0;
    }
    .section-header {
      margin-bottom: 30px;
    }
    .section-title {
      font-size: 26px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
      letter-spacing: -0.3px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.7;
      max-width: 860px;
    }
    .cat-header-panel {
      padding: 40px 0 25px 0;
      background: linear-gradient(180deg, rgba(22, 25, 34, 0.6) 0%, rgba(14, 16, 23, 0) 100%);
      border-bottom: 1px solid var(--border-subtle);
    }
    .cat-title-wrap {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .cat-h1 {
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -0.6px;
      margin: 0;
      background: linear-gradient(135deg, #ffffff 30%, #a0aec0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .cat-meta-stats {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .stat-badge-chip {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .stat-badge-chip b {
      color: #ffffff;
      font-weight: 700;
    }
    .filter-matrix {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-card);
      margin-top: 30px;
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 600;
      min-width: 76px;
      flex-shrink: 0;
    }
    .filter-items {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-chip {
      display: inline-block;
      padding: 5px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-chip:hover {
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.15);
    }
    .filter-chip.active {
      background: var(--brand-gradient);
      color: #ffffff;
      font-weight: 600;
      border-color: transparent;
      box-shadow: 0 4px 12px rgba(250, 82, 82, 0.3);
    }
    .media-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition-smooth);
      height: 100%;
      position: relative;
    }
    .media-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: var(--shadow-glow);
    }
    .media-cover-wrap {
      position: relative;
      width: 100%;
      padding-top: 135%;
      overflow: hidden;
      background: #11131a;
    }
    .media-cover-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .media-card:hover .media-cover-wrap img {
      transform: scale(1.05);
    }
    .media-floating-badges {
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 2;
    }
    .media-score-badge {
      background: rgba(14, 16, 23, 0.82);
      backdrop-filter: blur(8px);
      color: #ffd43b;
      font-weight: 800;
      font-size: 13px;
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 212, 59, 0.3);
    }
    .media-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .media-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .media-tags-line {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .media-spec-row {
      margin-top: auto;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
    }
    .spec-text {
      color: var(--accent-cyan);
      font-weight: 600;
    }
    .load-more-box {
      text-align: center;
      margin-top: 36px;
    }
    .ranking-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 22px;
      height: 100%;
      box-shadow: var(--shadow-card);
      transition: var(--transition-smooth);
    }
    .ranking-card:hover {
      border-color: rgba(99, 32, 238, 0.4);
    }
    .rank-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .rank-item {
      display: flex;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      gap: 12px;
    }
    .rank-item:last-child {
      border-bottom: none;
    }
    .rank-num {
      width: 26px;
      height: 26px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      flex-shrink: 0;
    }
    .rank-item:nth-child(1) .rank-num {
      background: var(--brand-gradient);
      color: #fff;
    }
    .rank-item:nth-child(2) .rank-num {
      background: rgba(250, 82, 82, 0.25);
      color: #ff8787;
      border: 1px solid rgba(250, 82, 82, 0.4);
    }
    .rank-item:nth-child(3) .rank-num {
      background: rgba(32, 201, 151, 0.2);
      color: var(--accent-cyan);
      border: 1px solid rgba(32, 201, 151, 0.4);
    }
    .rank-title {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      flex-grow: 1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-value {
      font-size: 12px;
      color: var(--text-muted);
      flex-shrink: 0;
    }
    .spotlight-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: row;
      box-shadow: var(--shadow-card);
      margin-bottom: 24px;
    }
    .spotlight-thumb {
      flex: 0 0 380px;
      position: relative;
      min-height: 260px;
    }
    .spotlight-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .spotlight-info {
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex-grow: 1;
    }
    .spotlight-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #ffffff;
    }
    .spotlight-para {
      font-size: 14px;
      line-height: 1.75;
      color: #cbd5e1;
      margin-bottom: 16px;
    }
    .spec-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 24px;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .spec-card:hover {
      transform: translateY(-4px);
      border-color: rgba(32, 201, 151, 0.4);
    }
    .spec-icon-box {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(32, 201, 151, 0.12);
      border: 1px solid rgba(32, 201, 151, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-cyan);
      margin-bottom: 16px;
    }
    .spec-h3 {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
    }
    .spec-list {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.8;
    }
    .spec-list li {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      margin-bottom: 6px;
    }
    .compliance-card {
      background: linear-gradient(135deg, rgba(22, 25, 34, 0.95) 0%, rgba(31, 36, 48, 0.8) 100%);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 34px;
      box-shadow: var(--shadow-card);
    }
    .compliance-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    .compliance-item h4 {
      font-size: 17px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .compliance-item p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 0;
    }
    .site-footer {
      background: #090a0f;
      border-top: 1px solid var(--border-subtle);
      padding: 60px 0 30px;
      margin-top: 50px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 36px;
      margin-bottom: 40px;
    }
    .footer-brand h4 {
      font-size: 22px;
      font-weight: 800;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 14px;
    }
    .footer-brand p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 320px;
    }
    .footer-col h5 {
      font-size: 15px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 16px;
    }
    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-col li {
      margin-bottom: 10px;
    }
    .footer-col a {
      color: var(--text-muted);
      font-size: 13px;
    }
    .footer-col a:hover {
      color: #ffffff;
      padding-left: 4px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #64748b;
      flex-wrap: wrap;
      gap: 12px;
    }
    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .spotlight-thumb {
        flex: 0 0 300px;
      }
    }
    @media (max-width: 768px) {
      .nav-container {
        height: auto;
        padding: 14px 20px;
        flex-direction: column;
        gap: 12px;
      }
      .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
      }
      .cat-h1 {
        font-size: 26px;
      }
      .spotlight-card {
        flex-direction: column;
      }
      .spotlight-thumb {
        flex: auto;
        height: 200px;
      }
      .compliance-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

/* roulang page: category4 */
:root {
      --bg-base: #0e1017;
      --bg-surface: #161922;
      --bg-elevated: #1f2430;
      --brand-gradient: linear-gradient(135deg, #6320ee 0%, #fa5252 100%);
      --accent-cyan: #20c997;
      --accent-orange: #fa5252;
      --accent-purple: #6320ee;
      --text-main: #ffffff;
      --text-muted: #a0aec0;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(250, 82, 82, 0.4);
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 999px;
      --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 24px rgba(250, 82, 82, 0.35);
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: #fff;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container-wide {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* 顶部通告条 */
    .notice-bar {
      background: rgba(22, 25, 34, 0.95);
      border-bottom: 1px solid var(--border-subtle);
      font-size: 13px;
      padding: 8px 0;
      color: var(--text-muted);
    }
    .notice-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .notice-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .notice-pill {
      background: rgba(32, 201, 151, 0.12);
      color: var(--accent-cyan);
      border: 1px solid rgba(32, 201, 151, 0.25);
      padding: 2px 10px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
    }

    /* 站点导航 */
    .site-header {
      background: rgba(14, 16, 23, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 74px;
    }
    .brand-logo {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-item {
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 500;
      padding: 6px 0;
      position: relative;
    }
    .nav-item:hover, .nav-item.active {
      color: #ffffff;
    }
    .nav-item.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
    }
    .header-status-chip {
      background: rgba(250, 82, 82, 0.1);
      border: 1px solid rgba(250, 82, 82, 0.3);
      color: #ff8787;
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .status-dot {
      width: 8px;
      height: 8px;
      background-color: var(--accent-orange);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--accent-orange);
    }

    /* 按钮与徽章系统 */
    .btn-brand {
      background: var(--brand-gradient);
      color: #ffffff;
      padding: 12px 28px;
      border-radius: var(--radius-pill);
      font-size: 15px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-glow);
      transition: var(--transition-smooth);
    }
    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 32px rgba(250, 82, 82, 0.55);
      color: #ffffff;
    }
    .btn-outline {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      color: #ffffff;
      padding: 12px 24px;
      border-radius: var(--radius-pill);
      font-size: 15px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-smooth);
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      color: #ffffff;
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
      background: rgba(99, 32, 238, 0.2);
      border: 1px solid rgba(99, 32, 238, 0.4);
      color: #e599f7;
    }
    .badge-cyan {
      background: rgba(32, 201, 151, 0.15);
      border-color: rgba(32, 201, 151, 0.4);
      color: var(--accent-cyan);
    }
    .badge-orange {
      background: rgba(250, 82, 82, 0.15);
      border-color: rgba(250, 82, 82, 0.4);
      color: #ff8787;
    }

    /* 板块通用 */
    .section-spacing {
      padding: 60px 0;
    }
    .section-header {
      margin-bottom: 30px;
    }
    .section-title {
      font-size: 26px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
    }

    /* 面包屑导航 */
    .breadcrumb-nav {
      padding: 24px 0 10px 0;
      font-size: 14px;
      color: var(--text-muted);
    }
    .breadcrumb-nav a {
      color: var(--text-muted);
    }
    .breadcrumb-nav a:hover {
      color: #ffffff;
    }
    .breadcrumb-separator {
      margin: 0 8px;
      color: rgba(255, 255, 255, 0.2);
    }

    /* 1. 分类频道专属统计与标题区 */
    .category-banner {
      background: linear-gradient(180deg, rgba(22, 25, 34, 0.8) 0%, rgba(14, 16, 23, 0.95) 100%), url('/assets/images/1c99a48a877a6aa8.jpg');
      background-size: cover;
      background-position: center;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 40px;
      margin-bottom: 40px;
      box-shadow: var(--shadow-card);
    }
    .cat-header-top {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 24px;
    }
    .cat-main-h1 {
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin: 0;
      color: #ffffff;
    }
    .cat-stats-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }
    .stat-chip {
      background: rgba(31, 36, 48, 0.8);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 6px 16px;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .stat-chip strong {
      color: #ffffff;
      font-weight: 700;
    }
    .cat-intro-p {
      color: #cbd5e1;
      font-size: 15px;
      line-height: 1.8;
      max-width: 960px;
      margin: 0;
    }

    /* 2. 多维分类智能筛选矩阵 */
    .filter-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 24px 30px;
      margin-bottom: 40px;
      box-shadow: var(--shadow-card);
    }
    .filter-row {
      display: flex;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-row:first-child {
      padding-top: 0;
    }
    .filter-label {
      width: 90px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      flex-shrink: 0;
    }
    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-btn {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      color: #cbd5e1;
      font-size: 13px;
      padding: 5px 14px;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-btn:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-btn.active {
      background: var(--brand-gradient);
      color: #ffffff;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(250, 82, 82, 0.3);
    }

    /* 3. 分类影视主体卡片展示网格 */
    .anime-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .anime-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: var(--shadow-glow);
    }
    .card-thumb-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #111;
    }
    .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.05);
    }
    .thumb-score-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(14, 16, 23, 0.85);
      border: 1px solid rgba(250, 82, 82, 0.4);
      color: #ff8787;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      backdrop-filter: blur(4px);
    }
    .thumb-quality-badge {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(14, 16, 23, 0.85);
      border: 1px solid rgba(32, 201, 151, 0.4);
      color: var(--accent-cyan);
      font-size: 11px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      backdrop-filter: blur(4px);
    }
    .card-info {
      padding: 16px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .card-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .card-meta {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .card-meta span {
      background: rgba(255, 255, 255, 0.05);
      padding: 2px 6px;
      border-radius: 4px;
    }
    .card-synopsis {
      font-size: 13px;
      color: #a0aec0;
      line-height: 1.6;
      height: 42px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      margin-bottom: 14px;
    }
    .card-foot-action {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .action-play-link {
      font-size: 13px;
      font-weight: 600;
      color: #ff8787;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .action-play-link:hover {
      color: #ffa8a8;
    }
    .more-pager-wrap {
      text-align: center;
      margin-top: 40px;
    }

    /* 4. 分类专属热播榜单与数据表现看板 */
    .chart-container {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--shadow-card);
    }
    .rank-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
    }
    .rank-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      transition: var(--transition-smooth);
    }
    .rank-item:hover {
      border-color: rgba(250, 82, 82, 0.3);
      transform: translateX(4px);
    }
    .rank-number {
      font-size: 22px;
      font-weight: 800;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
      flex-shrink: 0;
    }
    .rank-top1 {
      background: var(--brand-gradient);
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(250, 82, 82, 0.4);
    }
    .rank-top2 {
      background: rgba(250, 82, 82, 0.2);
      color: #ff8787;
      border: 1px solid rgba(250, 82, 82, 0.4);
    }
    .rank-top3 {
      background: rgba(99, 32, 238, 0.2);
      color: #e599f7;
      border: 1px solid rgba(99, 32, 238, 0.4);
    }
    .rank-body {
      flex-grow: 1;
      min-width: 0;
    }
    .rank-body-title {
      font-size: 15px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-body-tag {
      font-size: 12px;
      color: var(--text-muted);
    }
    .rank-index {
      text-align: right;
      flex-shrink: 0;
    }
    .index-val {
      font-size: 15px;
      font-weight: 700;
      color: var(--accent-cyan);
    }
    .index-lbl {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* 5. 分类专题赏析与看点深度解析 */
    .editorial-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 36px;
      margin-bottom: 30px;
      box-shadow: var(--shadow-card);
    }
    .editorial-content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
    }
    .editorial-img-box {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      aspect-ratio: 16 / 9;
    }
    .editorial-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .editorial-article h3 {
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
    }
    .editorial-article p {
      font-size: 14px;
      line-height: 1.8;
      color: #a0aec0;
      margin-bottom: 16px;
    }
    .curator-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* 6. 跨端设备适配与画质参数说明卡 */
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .spec-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      transition: var(--transition-smooth);
    }
    .spec-card:hover {
      border-color: rgba(32, 201, 151, 0.4);
      transform: translateY(-4px);
    }
    .spec-device-name {
      font-size: 17px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .spec-list {
      list-style: none;
      padding: 0;
      margin: 16px 0 0 0;
    }
    .spec-list li {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      padding: 6px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      color: #a0aec0;
    }
    .spec-list li strong {
      color: #ffffff;
      font-weight: 600;
    }

    /* 7. 片源收录准则与版权保障声明板块 */
    .policy-banner {
      background: linear-gradient(135deg, rgba(31, 36, 48, 0.6) 0%, rgba(22, 25, 34, 0.9) 100%);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-card);
    }
    .policy-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 20px;
    }
    .policy-item h4 {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .policy-item p {
      font-size: 13px;
      line-height: 1.7;
      color: #a0aec0;
      margin: 0;
    }

    /* 页脚 */
    .site-footer {
      background: #090a0f;
      border-top: 1px solid var(--border-subtle);
      padding: 60px 0 30px 0;
      margin-top: 60px;
      color: var(--text-muted);
      font-size: 14px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand h4 {
      font-size: 20px;
      font-weight: 800;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 16px;
    }
    .footer-brand p {
      line-height: 1.8;
      max-width: 360px;
    }
    .footer-col h5 {
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-col li {
      margin-bottom: 10px;
    }
    .footer-col a {
      color: var(--text-muted);
    }
    .footer-col a:hover {
      color: #ffffff;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 13px;
    }

    /* 响应式断点 */
    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .editorial-content-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .nav-container {
        height: auto;
        padding: 16px 0;
        flex-direction: column;
        gap: 14px;
      }
      .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .cat-header-top {
        flex-direction: column;
        align-items: flex-start;
      }
      .filter-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
      .filter-label {
        width: 100%;
        margin-bottom: 4px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .cat-main-h1 {
        font-size: 26px;
      }
      .category-banner {
        padding: 24px;
      }
      .editorial-card {
        padding: 20px;
      }
    }

/* roulang page: category5 */
:root {
            --bg-base: #0e1017;
            --bg-surface: #161922;
            --bg-elevated: #1f2430;
            --brand-gradient: linear-gradient(135deg, #6320ee 0%, #fa5252 100%);
            --accent-cyan: #20c997;
            --accent-orange: #fa5252;
            --accent-purple: #6320ee;
            --text-main: #ffffff;
            --text-muted: #a0aec0;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(250, 82, 82, 0.4);
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-pill: 999px;
            --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.45);
            --shadow-glow: 0 0 24px rgba(250, 82, 82, 0.35);
            --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        body {
            background-color: var(--bg-base);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        a:hover {
            color: #ffffff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container-wide {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .site-header {
            background: rgba(14, 16, 23, 0.88);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 74px;
        }
        .brand-logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .nav-item {
            color: var(--text-muted);
            font-size: 15px;
            font-weight: 500;
            padding: 6px 0;
            position: relative;
        }
        .nav-item:hover, .nav-item.active {
            color: #ffffff;
        }
        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--brand-gradient);
            border-radius: 2px;
        }
        .header-status-chip {
            background: rgba(250, 82, 82, 0.1);
            border: 1px solid rgba(250, 82, 82, 0.3);
            color: #ff8787;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fa5252;
            box-shadow: 0 0 8px #fa5252;
        }
        /* 次行通告条 */
        .notice-banner {
            background: rgba(22, 25, 34, 0.95);
            border-bottom: 1px solid var(--border-subtle);
            padding: 8px 0;
            font-size: 13px;
            color: var(--text-muted);
        }
        .notice-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .notice-pill {
            background: rgba(32, 201, 151, 0.12);
            color: var(--accent-cyan);
            border: 1px solid rgba(32, 201, 151, 0.25);
            padding: 2px 10px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 600;
        }
        /* 面包屑导航 */
        .breadcrumbs-bar {
            padding: 16px 0;
            font-size: 13px;
            color: var(--text-muted);
        }
        .breadcrumb-item {
            color: var(--text-muted);
        }
        .breadcrumb-item.active {
            color: #ffffff;
            font-weight: 500;
        }
        .breadcrumb-separator {
            margin: 0 8px;
            opacity: 0.5;
        }
        /* 板块通用 */
        .section-spacing {
            padding: 55px 0;
        }
        .section-header {
            margin-bottom: 32px;
        }
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .section-desc {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
        }
        /* 徽章与按钮 */
        .badge-pill {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 600;
            background: rgba(99, 32, 238, 0.2);
            border: 1px solid rgba(99, 32, 238, 0.4);
            color: #e599f7;
        }
        .badge-cyan {
            background: rgba(32, 201, 151, 0.15);
            border: 1px solid rgba(32, 201, 151, 0.4);
            color: var(--accent-cyan);
        }
        .badge-orange {
            background: rgba(250, 82, 82, 0.15);
            border: 1px solid rgba(250, 82, 82, 0.4);
            color: #ff8787;
        }
        .btn-brand {
            background: var(--brand-gradient);
            color: #ffffff;
            padding: 12px 28px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-glow);
            transition: var(--transition-smooth);
        }
        .btn-brand:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 32px rgba(250, 82, 82, 0.55);
            color: #ffffff;
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            color: #ffffff;
            padding: 12px 24px;
            border-radius: var(--radius-pill);
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
        }
        /* 板块1：分类频道统计与头部 */
        .category-header-panel {
            background: linear-gradient(135deg, rgba(22, 25, 34, 0.92) 0%, rgba(31, 36, 48, 0.95) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .category-header-panel::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(99, 32, 238, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .cat-h1 {
            font-size: 34px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 12px;
            background: linear-gradient(to right, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .cat-summary {
            color: #cbd5e1;
            font-size: 15px;
            max-width: 820px;
            margin-bottom: 24px;
            line-height: 1.8;
        }
        .cat-stat-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .stat-badge-unit {
            background: rgba(14, 16, 23, 0.7);
            border: 1px solid var(--border-subtle);
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            color: #e2e8f0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .stat-badge-unit strong {
            color: #ffffff;
            font-size: 15px;
        }
        /* 板块2：多维分类智能筛选矩阵 */
        .filter-matrix-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 26px 30px;
            box-shadow: var(--shadow-card);
        }
        .filter-row {
            display: flex;
            align-items: flex-start;
            padding: 12px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
        }
        .filter-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .filter-label {
            width: 90px;
            flex-shrink: 0;
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 600;
            padding-top: 5px;
        }
        .filter-items {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .filter-chip {
            padding: 4px 14px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            color: #cbd5e1;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid transparent;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .filter-chip:hover {
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.15);
        }
        .filter-chip.active {
            background: var(--brand-gradient);
            color: #ffffff;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(250, 82, 82, 0.25);
        }
        /* 板块3：分类影视主体卡片展示网格 */
        .movie-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }
        .movie-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-hover);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
        }
        .movie-cover-wrapper {
            position: relative;
            width: 100%;
            padding-top: 138%;
            background: #11141c;
            overflow: hidden;
        }
        .movie-cover-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .movie-card:hover .movie-cover-wrapper img {
            transform: scale(1.05);
        }
        .movie-top-badges {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2;
        }
        .movie-info {
            padding: 16px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .movie-title {
            font-size: 15px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .movie-meta-line {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
        }
        .movie-synopsis {
            font-size: 12px;
            color: #94a3b8;
            line-height: 1.5;
            height: 36px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .load-more-box {
            text-align: center;
            margin-top: 36px;
        }
        /* 板块4：热播榜单看板 */
        .rank-board-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 24px;
            height: 100%;
            transition: var(--transition-smooth);
        }
        .rank-board-card:hover {
            border-color: rgba(99, 32, 238, 0.4);
        }
        .rank-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            margin-bottom: 16px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .rank-title {
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .rank-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .rank-item {
            display: flex;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 13px;
        }
        .rank-item:last-child {
            border-bottom: none;
        }
        .rank-num {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 12px;
            margin-right: 12px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .rank-num.top1 { background: #fa5252; color: #fff; }
        .rank-num.top2 { background: #fd7e14; color: #fff; }
        .rank-num.top3 { background: #fcc419; color: #111; }
        .rank-item-name {
            flex-grow: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #e2e8f0;
        }
        .rank-score {
            font-weight: 700;
            color: var(--accent-cyan);
            flex-shrink: 0;
            margin-left: 10px;
        }
        /* 板块5：专题赏析大卡 */
        .feature-showcase-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-direction: row;
            box-shadow: var(--shadow-card);
        }
        .showcase-media {
            flex: 0 0 45%;
            position: relative;
            min-height: 380px;
            background: #111;
        }
        .showcase-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .showcase-body {
            flex: 0 0 55%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .showcase-tag {
            margin-bottom: 12px;
        }
        .showcase-title {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .showcase-text {
            font-size: 14px;
            line-height: 1.8;
            color: #cbd5e1;
            margin-bottom: 22px;
        }
        .spec-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .spec-pill {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            color: #94a3b8;
        }
        /* 板块6：设备与解码参数 */
        .param-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 24px;
            height: 100%;
            transition: var(--transition-smooth);
        }
        .param-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
        }
        .param-device-name {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .param-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
        }
        .param-row span:last-child {
            color: #e2e8f0;
            font-weight: 600;
        }
        /* 板块7：片源收录与声明 */
        .policy-card {
            background: linear-gradient(135deg, rgba(22, 25, 34, 0.7) 0%, rgba(14, 16, 23, 0.9) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 36px;
        }
        .policy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .policy-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-md);
            padding: 20px;
        }
        .policy-box h4 {
            font-size: 15px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .policy-box p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }
        /* 页脚 */
        .site-footer {
            background: #090a0f;
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px 0;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand h4 {
            font-size: 20px;
            font-weight: 800;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 14px;
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
            max-width: 360px;
        }
        .footer-col h5 {
            font-size: 15px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col li {
            margin-bottom: 10px;
        }
        .footer-col a {
            color: var(--text-muted);
            font-size: 13px;
        }
        .footer-col a:hover {
            color: #ffffff;
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #64748b;
            flex-wrap: wrap;
            gap: 12px;
        }
        /* 响应式断点适配 */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .feature-showcase-card {
                flex-direction: column;
            }
            .showcase-media {
                min-height: 260px;
            }
        }
        @media (max-width: 768px) {
            .nav-container {
                height: auto;
                padding: 14px 0;
                flex-direction: column;
                gap: 12px;
            }
            .main-nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 14px;
            }
            .header-status-chip {
                display: none;
            }
            .notice-flex {
                flex-direction: column;
                gap: 6px;
                text-align: center;
            }
            .cat-h1 {
                font-size: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .category-header-panel {
                padding: 24px;
            }
            .showcase-body {
                padding: 24px;
            }
        }
