/* roulang page: index */
:root {
      --bg-dark: #0B0F19;
      --bg-secondary: #121826;
      --bg-card: #1B2234;
      --bg-card-alt: #161D2E;
      --brand-primary: #7C3AED;
      --brand-secondary: #D946EF;
      --brand-gradient: linear-gradient(135deg, #7C3AED 0%, #D946EF 100%);
      --accent-amber: #F59E0B;
      --accent-cyan: #06B6D4;
      --text-main: #FFFFFF;
      --text-muted: #94A3B8;
      --text-sub: #64748B;
      --border-glow: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(124, 58, 237, 0.35);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 26px;
      --shadow-soft: 0 16px 36px -8px rgba(0, 0, 0, 0.55);
      --shadow-glow: 0 0 25px rgba(124, 58, 237, 0.3);
      --transition-smooth: all 0.25s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
      line-height: 1.65;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: var(--text-main);
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--brand-secondary);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* 顶部政务规范微服务条 */
    .top-gov-bar {
      background-color: #0E1422;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 12px;
      color: var(--text-sub);
      padding: 6px 0;
    }
    .gov-broadcast {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .gov-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: #10B981;
      box-shadow: 0 0 8px #10B981;
      display: inline-block;
    }
    .gov-links {
      display: flex;
      justify-content: flex-end;
      gap: 18px;
    }
    .gov-links a {
      color: var(--text-sub);
    }
    .gov-links a:hover {
      color: var(--accent-cyan);
    }

    /* 主导航 */
    .main-nav-bar {
      background-color: rgba(18, 24, 38, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-glow);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 14px 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-badge {
      width: 40px;
      height: 40px;
      background: var(--brand-gradient);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 20px;
      color: #fff;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    }
    .brand-title {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: #fff;
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .brand-subtitle {
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 400;
      letter-spacing: 1px;
    }

    .nav-menu {
      display: flex;
      gap: 22px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-menu li a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 6px 12px;
      border-radius: 6px;
      position: relative;
    }
    .nav-menu li a:hover,
    .nav-menu li a.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }
    .nav-menu li a.active::after {
      content: "";
      position: absolute;
      bottom: -14px;
      left: 12px;
      right: 12px;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
    }

    .nav-right-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .search-pill {
      background: #0B0F19;
      border: 1px solid var(--border-glow);
      border-radius: 9999px;
      padding: 6px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--text-sub);
    }
    .cache-btn {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-glow);
      color: #fff;
      padding: 7px 16px;
      border-radius: 9999px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
    }
    .cache-btn:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.2);
    }

    /* 模块通用样式与间距 */
    section.cinema-section {
      padding: 72px 0;
      position: relative;
    }
    .section-head {
      margin-bottom: 38px;
    }
    .section-pill-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      color: #D946EF;
      font-size: 12px;
      padding: 4px 12px;
      border-radius: 9999px;
      margin-bottom: 12px;
      font-weight: 600;
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 10px;
      color: #fff;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 15px;
      max-width: 820px;
      line-height: 1.7;
    }

    /* 大圆角容器卡片系统 */
    .cinema-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-xl);
      padding: 28px;
      box-shadow: var(--shadow-soft);
      transition: var(--transition-smooth);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .cinema-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-accent);
      box-shadow: var(--shadow-glow);
    }

    /* 数据徽章 */
    .badge-amber {
      background: rgba(245, 158, 11, 0.15);
      color: var(--accent-amber);
      border: 1px solid rgba(245, 158, 11, 0.3);
      padding: 3px 10px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .badge-cyan {
      background: rgba(6, 182, 212, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(6, 182, 212, 0.3);
      padding: 3px 10px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
    }
    .badge-live {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #10B981;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.3);
      padding: 3px 10px;
      border-radius: 9999px;
      font-weight: 500;
    }
    .live-pulse {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10B981;
      animation: pulseAnim 1.8s infinite;
    }
    @keyframes pulseAnim {
      0% { transform: scale(0.9); opacity: 0.7; }
      50% { transform: scale(1.4); opacity: 1; }
      100% { transform: scale(0.9); opacity: 0.7; }
    }

    /* 按钮组 */
    .btn-gradient {
      background: var(--brand-gradient);
      color: #fff;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 9999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 4px 18px rgba(124, 58, 237, 0.45);
      transition: var(--transition-smooth);
      border: none;
      cursor: pointer;
    }
    .btn-gradient:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(217, 70, 239, 0.55);
    }
    .btn-ghost {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid var(--border-glow);
      color: #fff;
      font-weight: 600;
      padding: 12px 26px;
      border-radius: 9999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: var(--transition-smooth);
    }
    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.25);
      color: #fff;
    }

    /* 板块一：痛点呈现 */
    .pain-card {
      background: linear-gradient(180deg, rgba(30, 20, 42, 0.7) 0%, rgba(18, 24, 38, 0.9) 100%);
      border: 1px solid rgba(239, 68, 68, 0.25);
      border-radius: var(--radius-xl);
      padding: 30px;
    }
    .pain-card .icon-flag {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: rgba(239, 68, 68, 0.15);
      color: #F87171;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    /* 板块二：Hero 试用申请与 KPI 仪表盘 */
    .hero-wrapper {
      position: relative;
      padding: 85px 0 95px 0;
      background-size: cover;
      background-position: center;
      border-bottom: 1px solid var(--border-glow);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 75% 25%, rgba(124, 58, 237, 0.22) 0%, rgba(11, 15, 25, 0.92) 65%, #0B0F19 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero-h1 {
      font-size: 40px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 20px;
      color: #fff;
      letter-spacing: -0.5px;
    }
    .hero-intro {
      font-size: 16px;
      color: #CBD5E1;
      line-height: 1.8;
      margin-bottom: 30px;
    }
    .hero-dashboard-box {
      background: rgba(27, 34, 52, 0.85);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(124, 58, 237, 0.4);
      border-radius: var(--radius-xl);
      padding: 32px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }
    .kpi-stat-item {
      padding: 14px;
      border-radius: var(--radius-md);
      background: rgba(11, 15, 25, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
    }
    .kpi-number {
      font-size: 26px;
      font-weight: 700;
      color: var(--accent-cyan);
      display: block;
      line-height: 1.2;
    }
    .kpi-label {
      font-size: 12px;
      color: var(--text-sub);
    }

    /* 板块三：流程卡片 */
    .step-num-badge {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(124, 58, 237, 0.2);
      border: 1px solid rgba(124, 58, 237, 0.4);
      color: #D946EF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-bottom: 16px;
    }

    /* 板块四：成果指标 */
    .metrics-banner {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(217, 70, 239, 0.1) 100%);
      border: 1px solid rgba(124, 58, 237, 0.35);
      border-radius: var(--radius-xl);
      padding: 40px;
    }
    .metric-value-huge {
      font-size: 38px;
      font-weight: 800;
      color: #fff;
      background: linear-gradient(90deg, #FFFFFF 0%, #E2E8F0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
      margin-bottom: 6px;
    }

    /* 板块五：影迷原声评价 */
    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #fff;
      font-size: 14px;
    }

    /* 板块七/八/九：海报网格与卡片 */
    .poster-card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-glow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .poster-card:hover {
      transform: translateY(-5px);
      border-color: rgba(124, 58, 237, 0.5);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    }
    .poster-thumb-box {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .poster-thumb-box img {
      width: 100%;
      height: 100%;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-thumb-box img {
      transform: scale(1.05);
    }
    .poster-tag-top {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
    }
    .poster-score-top {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
    }
    .poster-info-body {
      padding: 18px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .poster-title-text {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .poster-meta-text {
      font-size: 13px;
      color: var(--text-sub);
      margin-bottom: 12px;
      line-height: 1.5;
    }

    /* 板块十：网络监控 */
    .node-monitor-item {
      background: rgba(11, 15, 25, 0.6);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      margin-bottom: 14px;
    }
    .latency-bar-container {
      background: rgba(255, 255, 255, 0.05);
      height: 6px;
      border-radius: 999px;
      overflow: hidden;
      margin-top: 10px;
    }
    .latency-bar-inner {
      height: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, #10B981, #06B6D4);
    }

    /* 板块十二：折叠问答 Accordion */
    .faq-item-box {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 22px 26px;
      margin-bottom: 14px;
    }
    .faq-q-text {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .faq-a-text {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    /* 板块十四：底端收口 CTA */
    .cta-banner-card {
      background: radial-gradient(circle at 20% 50%, rgba(217, 70, 239, 0.25) 0%, rgba(124, 58, 237, 0.2) 60%, rgba(18, 24, 38, 0.95) 100%), var(--bg-card);
      border: 1px solid rgba(124, 58, 237, 0.5);
      border-radius: var(--radius-xl);
      padding: 55px 40px;
      text-align: center;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    }

    /* 页脚 */
    footer.cinema-footer {
      background: #0E1422;
      border-top: 1px solid var(--border-glow);
      padding: 60px 0 30px 0;
      color: var(--text-muted);
      font-size: 13px;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 10px;
    }
    .footer-links-list a {
      color: var(--text-muted);
    }
    .footer-links-list a:hover {
      color: #fff;
    }
    .footer-bottom-line {
      margin-top: 50px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      color: var(--text-sub);
      font-size: 12px;
    }

    /* 响应式断点优化 */
    @media (max-width: 1023px) {
      .nav-menu {
        display: none;
      }
      .hero-h1 {
        font-size: 32px;
      }
      .section-title {
        font-size: 24px;
      }
      section.cinema-section {
        padding: 50px 0;
      }
    }
    @media (max-width: 639px) {
      .top-gov-bar {
        display: none;
      }
      .hero-wrapper {
        padding: 50px 0 60px 0;
      }
      .hero-h1 {
        font-size: 26px;
      }
      .hero-intro {
        font-size: 14px;
      }
      .cta-banner-card {
        padding: 35px 20px;
      }
      .metrics-banner {
        padding: 24px 18px;
      }
      .metric-value-huge {
        font-size: 28px;
      }
    }

/* roulang page: category1 */
:root {
      --bg-dark: #0B0F19;
      --bg-secondary: #121826;
      --bg-card: #1B2234;
      --bg-card-alt: #161D2E;
      --brand-primary: #7C3AED;
      --brand-secondary: #D946EF;
      --brand-gradient: linear-gradient(135deg, #7C3AED 0%, #D946EF 100%);
      --accent-amber: #F59E0B;
      --accent-cyan: #06B6D4;
      --text-main: #FFFFFF;
      --text-muted: #94A3B8;
      --text-sub: #64748B;
      --border-glow: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(124, 58, 237, 0.35);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 26px;
      --shadow-soft: 0 16px 36px -8px rgba(0, 0, 0, 0.55);
      --shadow-glow: 0 0 25px rgba(124, 58, 237, 0.3);
      --transition-smooth: all 0.25s ease;
    }

    body {
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
      line-height: 1.65;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: var(--text-main);
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--brand-secondary);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* 顶栏微服务条 */
    .gov-micro-bar {
      background: #0E1422;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 6px 0;
      font-size: 12px;
      color: var(--text-sub);
    }
    .micro-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .micro-notice {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .pulse-dot {
      width: 7px;
      height: 7px;
      background: #10B981;
      border-radius: 50%;
      box-shadow: 0 0 8px #10B981;
      display: inline-block;
    }
    .gov-links {
      display: flex;
      gap: 16px;
    }
    .gov-links a {
      color: var(--text-sub);
    }
    .gov-links a:hover {
      color: var(--accent-cyan);
    }

    /* 主导航 */
    .main-nav-bar {
      background-color: rgba(18, 24, 38, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-glow);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 14px 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-badge {
      width: 40px;
      height: 40px;
      background: var(--brand-gradient);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 20px;
      color: #fff;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    }
    .brand-title {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: #fff;
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .brand-subtitle {
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 400;
      letter-spacing: 1px;
    }
    .nav-menu {
      display: flex;
      gap: 22px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-menu li a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 6px 12px;
      border-radius: 6px;
      position: relative;
    }
    .nav-menu li a:hover,
    .nav-menu li a.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }
    .nav-menu li a.active::after {
      content: "";
      position: absolute;
      bottom: -14px;
      left: 12px;
      right: 12px;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
    }
    .nav-right-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .search-pill {
      background: #0B0F19;
      border: 1px solid var(--border-glow);
      border-radius: 9999px;
      padding: 6px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--text-sub);
    }
    .cache-btn {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-glow);
      color: #fff;
      padding: 7px 16px;
      border-radius: 9999px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
    }
    .cache-btn:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.2);
    }

    /* 模块通用样式与间距 */
    section.cinema-section {
      padding: 64px 0;
      position: relative;
    }
    .section-head {
      margin-bottom: 34px;
    }
    .section-pill-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      color: #D946EF;
      font-size: 12px;
      padding: 4px 12px;
      border-radius: 9999px;
      margin-bottom: 12px;
      font-weight: 600;
    }
    .section-title {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 10px;
      color: #fff;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 14px;
      max-width: 820px;
      line-height: 1.7;
    }

    /* 大圆角容器卡片系统 */
    .cinema-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-xl);
      padding: 28px;
      box-shadow: var(--shadow-soft);
      transition: var(--transition-smooth);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .cinema-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-accent);
      box-shadow: var(--shadow-glow);
    }

    /* 数据徽章 */
    .badge-amber {
      background: rgba(245, 158, 11, 0.15);
      color: var(--accent-amber);
      border: 1px solid rgba(245, 158, 11, 0.3);
      padding: 3px 8px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .badge-cyan {
      background: rgba(6, 182, 212, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(6, 182, 212, 0.3);
      padding: 3px 8px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
    }
    .badge-live {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: #10B981;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.3);
      padding: 2px 8px;
      border-radius: 9999px;
      font-weight: 500;
    }

    /* 按钮组 */
    .btn-gradient {
      background: var(--brand-gradient);
      color: #fff;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 9999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 14px;
      box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
      border: none;
      cursor: pointer;
    }
    .btn-gradient:hover {
      box-shadow: 0 6px 20px rgba(217, 70, 239, 0.6);
      transform: translateY(-1px);
      color: #fff;
    }
    .btn-outline {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-glow);
      color: var(--text-main);
      padding: 10px 22px;
      border-radius: 9999px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
    }

    /* 板块一专属：检索面板与路线图预告节点条 */
    .filter-board {
      background: var(--bg-card-alt);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-xl);
      padding: 30px;
      box-shadow: var(--shadow-soft);
    }
    .cat-breadcrumb {
      font-size: 13px;
      color: var(--text-sub);
      margin-bottom: 12px;
    }
    .cat-breadcrumb a {
      color: var(--text-muted);
    }
    .cat-breadcrumb span {
      margin: 0 8px;
    }
    .filter-row {
      display: flex;
      align-items: baseline;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
    }
    .filter-label {
      width: 80px;
      font-size: 13px;
      color: var(--text-sub);
      font-weight: 600;
      flex-shrink: 0;
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-item {
      font-size: 13px;
      padding: 3px 12px;
      border-radius: 6px;
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-item:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-item.active {
      background: var(--brand-gradient);
      color: #fff;
      font-weight: 600;
    }

    /* 路线图进度节点条（Blueprint Hero 规范） */
    .roadmap-container {
      margin-top: 24px;
      padding: 18px 24px;
      background: rgba(11, 15, 25, 0.7);
      border-radius: var(--radius-md);
      border: 1px solid rgba(124, 58, 237, 0.25);
    }
    .roadmap-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }
    .roadmap-title {
      font-size: 13px;
      font-weight: 700;
      color: #D946EF;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .roadmap-timeline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      margin: 10px 0;
    }
    .roadmap-line {
      position: absolute;
      top: 14px;
      left: 10px;
      right: 10px;
      height: 2px;
      background: rgba(255, 255, 255, 0.1);
      z-index: 1;
    }
    .roadmap-line-progress {
      position: absolute;
      top: 14px;
      left: 10px;
      width: 70%;
      height: 2px;
      background: var(--brand-gradient);
      z-index: 2;
    }
    .roadmap-node {
      position: relative;
      z-index: 3;
      text-align: center;
      width: 22%;
    }
    .node-point {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #1B2234;
      border: 2px solid var(--border-glow);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 6px;
      font-size: 11px;
      font-weight: 700;
    }
    .roadmap-node.active .node-point {
      border-color: #D946EF;
      background:#7C3AED;
      color: #fff;
      box-shadow: 0 0 12px rgba(217, 70, 239, 0.5);
    }
    .node-text {
      font-size: 12px;
      color: var(--text-muted);
      display: block;
    }
    .node-date {
      font-size: 11px;
      color: var(--text-sub);
    }

    /* 影视封面海报卡网格（板块二） */
    .movie-poster-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      position: relative;
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      height: calc(100% - 24px);
    }
    .movie-poster-card:hover {
      transform: translateY(-6px);
      border-color: rgba(217, 70, 239, 0.4);
      box-shadow: 0 16px 30px -6px rgba(0, 0, 0, 0.7);
    }
    .poster-wrap {
      position: relative;
      width: 100%;
      padding-top: 142%;
      overflow: hidden;
      background: #0B0F19;
    }
    .poster-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .movie-poster-card:hover .poster-wrap img {
      transform: scale(1.06);
    }
    .poster-overlay {
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 2;
    }
    .poster-spec {
      position: absolute;
      bottom: 8px;
      left: 10px;
      font-size: 11px;
      color: #fff;
      background: rgba(0, 0, 0, 0.65);
      padding: 2px 6px;
      border-radius: 4px;
      backdrop-filter: blur(4px);
    }
    .poster-info {
      padding: 14px 12px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }
    .movie-card-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-card-meta {
      font-size: 12px;
      color: var(--text-sub);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* 翻页组件 */
    .pagination-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 36px;
    }
    .page-item {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .page-item:hover,
    .page-item.active {
      background: var(--brand-gradient);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    }

    /* 本周热度 TOP 榜（板块三） */
    .top-rank-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 22px;
      display: flex;
      gap: 18px;
      position: relative;
      overflow: hidden;
      transition: var(--transition-smooth);
      height: 100%;
    }
    .top-rank-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-4px);
    }
    .rank-number-box {
      font-size: 32px;
      font-weight: 900;
      font-style: italic;
      color: rgba(255, 255, 255, 0.12);
      line-height: 1;
      width: 36px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .rank-1 .rank-number-box {
      color: var(--accent-amber);
    }
    .top-thumb {
      width: 90px;
      height: 125px;
      border-radius: 8px;
      flex-shrink: 0;
      overflow: hidden;
    }
    .top-rank-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }
    .top-rank-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .top-rank-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* 专题合集特辑（板块四） */
    .special-topic-card {
      background: linear-gradient(180deg, rgba(27, 34, 52, 0.8) 0%, rgba(18, 24, 38, 0.95) 100%);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-xl);
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: var(--transition-smooth);
    }
    .special-topic-card:hover {
      border-color: rgba(217, 70, 239, 0.4);
      transform: translateY(-4px);
    }
    .topic-badges-row {
      display: flex;
      gap: 10px;
      margin-bottom: 14px;
    }
    .topic-title {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .topic-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .topic-preview-thumbs {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }
    .topic-mini-thumb {
      flex: 1;
      height: 90px;
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* 播放配置建议（板块五） */
    .config-guide-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 26px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .config-icon-circle {
      width: 44px;
      height: 44px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #D946EF;
    }
    .config-card-title {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
    }
    .config-card-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 延伸视听资讯（板块六） */
    .article-item-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: var(--transition-smooth);
      margin-bottom: 14px;
    }
    .article-item-card:hover {
      border-color: var(--border-accent);
      background: rgba(27, 34, 52, 0.95);
      transform: translateX(4px);
    }
    .article-tag {
      font-size: 11px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--accent-cyan);
      padding: 3px 8px;
      border-radius: 4px;
      flex-shrink: 0;
    }
    .article-main-title {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      flex-grow: 1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .article-time {
      font-size: 12px;
      color: var(--text-sub);
      flex-shrink: 0;
    }

    /* 更新订阅与片源反馈（板块七） */
    .feedback-banner {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(217, 70, 239, 0.08) 100%);
      border: 1px solid rgba(217, 70, 239, 0.25);
      border-radius: var(--radius-xl);
      padding: 36px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .feedback-info h3 {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .feedback-info p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
      max-width: 600px;
      line-height: 1.6;
    }
    .feedback-action-group {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    /* 页脚样式 */
    .cinema-footer {
      background: #080C14;
      border-top: 1px solid var(--border-glow);
      padding: 56px 0 28px;
      font-size: 13px;
      color: var(--text-sub);
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 10px;
    }
    .footer-links-list a {
      color: var(--text-muted);
    }
    .footer-links-list a:hover {
      color: var(--brand-secondary);
    }
    .footer-bottom-line {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 40px;
      padding-top: 24px;
      text-align: center;
      color: var(--text-sub);
      font-size: 12px;
    }

    /* 移动端适配响应式 */
    @media (max-width: 1023px) {
      .nav-menu {
        display: none;
      }
      .filter-row {
        flex-direction: column;
        gap: 6px;
      }
      .filter-label {
        width: 100%;
      }
      .feedback-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px;
      }
      .feedback-action-group {
        width: 100%;
        flex-direction: column;
      }
      .feedback-action-group button,
      .feedback-action-group a {
        width: 100%;
      }
    }

/* roulang page: category2 */
:root {
    --bg-dark: #0B0F19;
    --bg-secondary: #121826;
    --bg-card: #1B2234;
    --bg-card-alt: #161D2E;
    --brand-primary: #7C3AED;
    --brand-secondary: #D946EF;
    --brand-gradient: linear-gradient(135deg, #7C3AED 0%, #D946EF 100%);
    --accent-amber: #F59E0B;
    --accent-cyan: #06B6D4;
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --text-sub: #64748B;
    --border-glow: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(124, 58, 237, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 26px;
    --shadow-soft: 0 16px 36px -8px rgba(0, 0, 0, 0.55);
    --shadow-glow: 0 0 25px rgba(124, 58, 237, 0.3);
    --transition-smooth: all 0.25s ease;
  }
  * { box-sizing: border-box; }
  body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
    line-height: 1.65;
    font-size: 15px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
  }
  a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-smooth);
  }
  a:hover {
    color: var(--brand-secondary);
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .gov-links a { color: var(--text-sub); }
  .gov-links a:hover { color: var(--accent-cyan); }
  .main-nav-bar {
    background-color: rgba(18, 24, 38, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo-badge {
    width: 40px;
    height: 40px;
    background: var(--brand-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
  }
  .brand-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .brand-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 1px;
  }
  .nav-menu {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-menu li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 6px;
    position: relative;
  }
  .nav-menu li a:hover,
  .nav-menu li a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }
  .nav-menu li a.active::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--brand-gradient);
    border-radius: 2px;
  }
  .nav-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .search-pill {
    background: #0B0F19;
    border: 1px solid var(--border-glow);
    border-radius: 9999px;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-sub);
  }
  .cache-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glow);
    color: #fff;
    padding: 7px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .cache-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
  }
  section.cinema-section {
    padding: 56px 0;
    position: relative;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .section-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #D946EF;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 12px;
    font-weight: 600;
  }
  .section-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: #fff;
  }
  .section-desc {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 820px;
    line-height: 1.7;
  }
  .cinema-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .cinema-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
  }
  .badge-amber {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .badge-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
  }
  .badge-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #10B981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 3px 10px;
    border-radius: 9999px;
    font-weight: 500;
  }
  .btn-gradient {
    background: var(--brand-gradient);
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
    transition: var(--transition-smooth);
    font-size: 14px;
  }
  .btn-gradient:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.5);
    color: #fff;
  }
  .btn-sub {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border: 1px solid var(--border-glow);
    padding: 10px 22px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .btn-sub:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
  }

  /* 分类页特有样式体系 */
  .category-filter-panel {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    margin-top: 24px;
  }
  .filter-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .filter-row:last-child {
    border-bottom: none;
  }
  .filter-label {
    font-size: 13px;
    color: var(--text-sub);
    min-width: 68px;
    font-weight: 600;
  }
  .filter-item {
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .filter-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }
  .filter-item.active {
    background: var(--brand-primary);
    color: #fff;
    font-weight: 600;
  }
  .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 12px;
  }
  .breadcrumb-nav a {
    color: var(--text-muted);
  }
  .breadcrumb-nav a:hover {
    color: var(--brand-secondary);
  }

  /* 剧集网格卡片 */
  .series-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .series-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
  }
  .series-cover-box {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #0B0F19;
  }
  .series-cover-box img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
  }
  .series-card:hover .series-cover-box img {
    transform: scale(1.06);
  }
  .series-tag-top {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 2;
  }
  .series-tag-bottom {
    position: absolute;
    bottom: 8px;
    right: 8px;
    left: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 8px 6px 4px 6px;
    z-index: 2;
  }
  .series-info {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .series-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .series-desc {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.5;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .series-meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 8px;
  }

  /* 翻页组件 */
  .pagination-container {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
  }
  .page-link:hover,
  .page-link.active {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
  }

  /* 热度 Top 宽卡 */
  .top-hot-card {
    background: linear-gradient(145deg, rgba(27, 34, 52, 0.9) 0%, rgba(18, 24, 38, 0.95) 100%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
  }
  .top-hot-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-3px);
  }
  .top-hot-rank {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-amber);
    color: #000;
    font-weight: 800;
    font-size: 12px;
    padding: 4px 12px;
    border-bottom-right-radius: 12px;
  }
  .top-hot-img {
    width: 100px;
    height: 135px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  /* 专题大画廊卡片 */
  .collection-card {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
  }
  .collection-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
  }
  .collection-bg-banner {
    height: 160px;
    position: relative;
  }
  .collection-bg-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-card-alt) 10%, transparent 90%);
  }
  .collection-body {
    padding: 24px;
    position: relative;
    margin-top: -40px;
    z-index: 2;
  }

  /* 反馈通道小表单 */
  .feedback-box {
    background: linear-gradient(135deg, rgba(27, 34, 52, 0.8) 0%, rgba(18, 24, 38, 0.9) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 36px;
    text-align: center;
  }
  .feedback-form {
    max-width: 580px;
    margin: 20px auto 0 auto;
    display: flex;
    gap: 10px;
  }
  .feedback-input {
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid var(--border-glow);
    color: #fff;
    padding: 10px 18px;
    border-radius: 9999px;
    font-size: 14px;
    flex: 1;
    outline: none;
  }
  .feedback-input:focus {
    border-color: var(--brand-primary);
  }

  /* 页脚 */
  .cinema-footer {
    background: #090D15;
    border-top: 1px solid var(--border-glow);
    padding: 60px 0 30px;
    margin-top: 60px;
  }
  .footer-col-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
  }
  .footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-links-list li {
    margin-bottom: 10px;
  }
  .footer-links-list a {
    color: var(--text-sub);
    font-size: 13px;
  }
  .footer-links-list a:hover {
    color: var(--accent-cyan);
  }
  .footer-bottom-line {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    margin-top: 30px;
    font-size: 12px;
    color: var(--text-sub);
    text-align: center;
  }

  @media screen and (max-width: 1023px) {
    .nav-menu { display: none; }
    .top-hot-card { margin-bottom: 16px; }
  }
  @media screen and (max-width: 639px) {
    .feedback-form { flex-direction: column; }
    .section-title { font-size: 22px; }
    .category-filter-panel { padding: 18px; }
    .top-hot-card { flex-direction: column; align-items: flex-start; }
    .top-hot-img { width: 100%; height: 160px; }
  }

/* roulang page: category4 */
:root {
        --bg-dark: #0B0F19;
        --bg-secondary: #121826;
        --bg-card: #1B2234;
        --bg-card-alt: #161D2E;
        --brand-primary: #7C3AED;
        --brand-secondary: #D946EF;
        --brand-gradient: linear-gradient(135deg, #7C3AED 0%, #D946EF 100%);
        --accent-amber: #F59E0B;
        --accent-cyan: #06B6D4;
        --text-main: #FFFFFF;
        --text-muted: #94A3B8;
        --text-sub: #64748B;
        --border-glow: rgba(255, 255, 255, 0.08);
        --border-accent: rgba(124, 58, 237, 0.35);
        --radius-sm: 8px;
        --radius-md: 14px;
        --radius-lg: 20px;
        --radius-xl: 26px;
        --shadow-soft: 0 16px 36px -8px rgba(0, 0, 0, 0.55);
        --shadow-glow: 0 0 25px rgba(124, 58, 237, 0.3);
        --transition-smooth: all 0.25s ease;
    }

    body {
        background-color: var(--bg-dark);
        color: var(--text-main);
        font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
        line-height: 1.65;
        font-size: 15px;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    a {
        color: var(--text-main);
        text-decoration: none;
        transition: var(--transition-smooth);
    }
    a:hover {
        color: var(--brand-secondary);
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* 顶栏微服务条 */
    .gov-service-bar {
        background-color: #0E1422;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 6px 0;
        font-size: 12px;
        color: var(--text-sub);
    }
    .gov-service-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .gov-broadcast {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .gov-broadcast-badge {
        background: rgba(6, 182, 212, 0.2);
        color: var(--accent-cyan);
        padding: 1px 8px;
        border-radius: 4px;
        font-size: 11px;
    }
    .gov-links {
        display: flex;
        gap: 16px;
    }
    .gov-links a {
        color: var(--text-sub);
    }
    .gov-links a:hover {
        color: var(--accent-cyan);
    }

    /* 主导航 */
    .main-nav-bar {
        background-color: rgba(18, 24, 38, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-glow);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 14px 0;
    }
    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .brand-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .logo-badge {
        width: 40px;
        height: 40px;
        background: var(--brand-gradient);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        color: #fff;
        box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    }
    .brand-title {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: #fff;
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }
    .brand-subtitle {
        font-size: 11px;
        color: var(--text-muted);
        font-weight: 400;
        letter-spacing: 1px;
    }
    .nav-menu {
        display: flex;
        gap: 22px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nav-menu li a {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-muted);
        padding: 6px 12px;
        border-radius: 6px;
        position: relative;
    }
    .nav-menu li a:hover,
    .nav-menu li a.active {
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
    }
    .nav-menu li a.active::after {
        content: "";
        position: absolute;
        bottom: -14px;
        left: 12px;
        right: 12px;
        height: 2px;
        background: var(--brand-gradient);
        border-radius: 2px;
    }
    .nav-right-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .search-pill {
        background: #0B0F19;
        border: 1px solid var(--border-glow);
        border-radius: 9999px;
        padding: 6px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: var(--text-sub);
    }
    .cache-btn {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--border-glow);
        color: #fff;
        padding: 7px 16px;
        border-radius: 9999px;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .cache-btn:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* 模块基础 */
    section.cinema-section {
        padding: 60px 0;
        position: relative;
    }
    .section-head {
        margin-bottom: 30px;
    }
    .section-pill-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(124, 58, 237, 0.15);
        border: 1px solid rgba(124, 58, 237, 0.3);
        color: #D946EF;
        font-size: 12px;
        padding: 4px 12px;
        border-radius: 9999px;
        margin-bottom: 12px;
        font-weight: 600;
    }
    .section-title {
        font-size: 26px;
        font-weight: 700;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
        color: #fff;
    }
    .section-desc {
        color: var(--text-muted);
        font-size: 14px;
        max-width: 820px;
        line-height: 1.7;
    }

    /* 卡片与徽章 */
    .cinema-card {
        background: var(--bg-card);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-xl);
        padding: 24px;
        box-shadow: var(--shadow-soft);
        transition: var(--transition-smooth);
        height: 100%;
        position: relative;
    }
    .cinema-card:hover {
        transform: translateY(-4px);
        border-color: var(--border-accent);
        box-shadow: var(--shadow-glow);
    }

    .badge-amber {
        background: rgba(245, 158, 11, 0.15);
        color: var(--accent-amber);
        border: 1px solid rgba(245, 158, 11, 0.3);
        padding: 3px 10px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    .badge-cyan {
        background: rgba(6, 182, 212, 0.15);
        color: var(--accent-cyan);
        border: 1px solid rgba(6, 182, 212, 0.3);
        padding: 3px 10px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
    }
    .badge-live {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: #10B981;
        background: rgba(16, 185, 129, 0.12);
        border: 1px solid rgba(16, 185, 129, 0.3);
        padding: 3px 10px;
        border-radius: 9999px;
        font-weight: 500;
    }
    .pulse-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background-color: #10B981;
        box-shadow: 0 0 8px #10B981;
    }

    .btn-gradient {
        background: var(--brand-gradient);
        color: #fff;
        font-weight: 600;
        padding: 10px 24px;
        border-radius: 9999px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: none;
        cursor: pointer;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    }
    .btn-gradient:hover {
        color: #fff;
        box-shadow: 0 6px 22px rgba(217, 70, 239, 0.45);
        transform: translateY(-2px);
    }
    .btn-outline {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-glow);
        color: var(--text-main);
        font-weight: 500;
        padding: 10px 22px;
        border-radius: 9999px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }

    /* 板块一：检索筛选面板特化 */
    .filter-panel {
        background: linear-gradient(180deg, #161E30 0%, #111726 100%);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-xl);
        padding: 30px;
        box-shadow: var(--shadow-soft);
        margin-top: 24px;
    }
    .breadcrumb-nav {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--text-sub);
        margin-bottom: 14px;
    }
    .breadcrumb-nav a {
        color: var(--text-muted);
    }
    .breadcrumb-nav a:hover {
        color: var(--brand-secondary);
    }
    .filter-row {
        display: flex;
        align-items: flex-start;
        padding: 10px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
        gap: 16px;
    }
    .filter-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .filter-label {
        color: var(--text-sub);
        font-size: 13px;
        min-width: 64px;
        padding-top: 4px;
        font-weight: 500;
    }
    .filter-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .filter-tag {
        font-size: 13px;
        padding: 4px 14px;
        border-radius: 6px;
        color: var(--text-muted);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid transparent;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .filter-tag:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }
    .filter-tag.active {
        background: rgba(124, 58, 237, 0.2);
        border-color: var(--brand-primary);
        color: #fff;
        font-weight: 600;
    }

    /* 海报卡片网格系统 */
    .poster-card {
        background: var(--bg-card);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition: var(--transition-smooth);
        margin-bottom: 24px;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .poster-card:hover {
        transform: translateY(-5px);
        border-color: var(--border-accent);
        box-shadow: var(--shadow-glow);
    }
    .poster-cover-wrap {
        position: relative;
        width: 100%;
        padding-top: 138%; /* 影视海报高宽比 */
        overflow: hidden;
        background: #0e1422;
    }
    .poster-cover-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-cover-wrap img {
        transform: scale(1.06);
    }
    .poster-badges {
        position: absolute;
        top: 10px;
        left: 10px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 2;
    }
    .poster-rate {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(11, 15, 25, 0.85);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(245, 158, 11, 0.4);
        padding: 2px 8px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 700;
        color: var(--accent-amber);
        z-index: 2;
    }
    .poster-info {
        padding: 16px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .poster-title {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .poster-meta {
        font-size: 12px;
        color: var(--text-sub);
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
    }
    .poster-desc {
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 分页组件 */
    .pagination-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 30px;
    }
    .page-item {
        min-width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: var(--bg-card);
        border: 1px solid var(--border-glow);
        color: var(--text-muted);
        font-size: 14px;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .page-item:hover {
        border-color: var(--border-accent);
        color: #fff;
    }
    .page-item.active {
        background: var(--brand-gradient);
        color: #fff;
        font-weight: 600;
        border: none;
    }

    /* 板块三：热度宽幅大卡 */
    .rank-card {
        background: linear-gradient(135deg, rgba(27, 34, 52, 0.9) 0%, rgba(18, 24, 38, 0.95) 100%);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-xl);
        overflow: hidden;
        display: flex;
        margin-bottom: 24px;
        position: relative;
        transition: var(--transition-smooth);
    }
    .rank-card:hover {
        border-color: var(--border-accent);
        transform: translateY(-4px);
    }
    .rank-thumb {
        width: 180px;
        min-width: 180px;
        position: relative;
    }
    .rank-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .rank-content {
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }
    .rank-num-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: var(--brand-gradient);
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }

    /* 板块四：特辑画廊卡 */
    .special-card {
        background: var(--bg-card);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-xl);
        overflow: hidden;
        margin-bottom: 24px;
        display: flex;
        flex-direction: column;
    }
    .special-banner {
        position: relative;
        height: 190px;
        overflow: hidden;
    }
    .special-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .special-info {
        padding: 24px;
        flex-grow: 1;
    }

    /* 板块五：播放配置建议卡 */
    .spec-box {
        background: var(--bg-card);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-lg);
        padding: 24px;
        height: 100%;
    }
    .spec-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(124, 58, 237, 0.15);
        color: var(--brand-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 16px;
    }

    /* 板块六：随笔与彩蛋资讯条目 */
    .article-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-glow);
        margin-bottom: 14px;
        transition: var(--transition-smooth);
    }
    .article-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--border-accent);
        transform: translateX(4px);
    }
    .article-thumb {
        width: 80px;
        height: 60px;
        border-radius: 6px;
        overflow: hidden;
        flex-shrink: 0;
    }

    /* 板块七：订阅与求片条 */
    .subscribe-banner {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(217, 70, 239, 0.1) 100%);
        border: 1px solid var(--border-accent);
        border-radius: var(--radius-xl);
        padding: 36px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }
    .sub-input-group {
        display: flex;
        gap: 10px;
        min-width: 320px;
    }
    .sub-input {
        background: rgba(11, 15, 25, 0.8);
        border: 1px solid var(--border-glow);
        border-radius: 9999px;
        padding: 10px 20px;
        color: #fff;
        font-size: 14px;
        outline: none;
        flex-grow: 1;
    }
    .sub-input:focus {
        border-color: var(--brand-secondary);
    }

    /* 页脚 */
    .cinema-footer {
        background-color: #0B0F19;
        border-top: 1px solid var(--border-glow);
        padding: 60px 0 30px;
        font-size: 14px;
    }
    .footer-col-title {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .footer-links-list {
        list-style: none;
        margin: 0;
        padding:0;
    }
    .footer-links-list li {
        margin-bottom: 12px;
    }
    .footer-links-list li a {
        color: var(--text-muted);
        font-size: 13px;
    }
    .footer-links-list li a:hover {
        color: var(--brand-secondary);
    }
    .footer-bottom-line {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin-top: 40px;
        padding-top: 24px;
        text-align: center;
        font-size: 12px;
        color: var(--text-sub);
    }

    @media print, screen and (max-width: 63.9375em) {
        .nav-menu {
            gap: 10px;
        }
        .nav-menu li a {
            padding: 4px 8px;
            font-size: 13px;
        }
        .rank-card {
            flex-direction: column;
        }
        .rank-thumb {
            width: 100%;
            height: 180px;
        }
        .subscribe-banner {
            padding: 24px;
        }
        .sub-input-group {
            width: 100%;
            min-width: 100%;
        }
    }

    @media print, screen and (max-width: 39.9375em) {
        .nav-menu {
            display: none;
        }
        .section-title {
            font-size: 22px;
        }
        .filter-panel {
            padding: 18px;
        }
        .filter-row {
            flex-direction: column;
            gap: 8px;
        }
    }

/* roulang page: category3 */
:root {
      --bg-dark: #0B0F19;
      --bg-secondary: #121826;
      --bg-card: #1B2234;
      --bg-card-alt: #161D2E;
      --brand-primary: #7C3AED;
      --brand-secondary: #D946EF;
      --brand-gradient: linear-gradient(135deg, #7C3AED 0%, #D946EF 100%);
      --accent-amber: #F59E0B;
      --accent-cyan: #06B6D4;
      --text-main: #FFFFFF;
      --text-muted: #94A3B8;
      --text-sub: #64748B;
      --border-glow: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(124, 58, 237, 0.35);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 26px;
      --shadow-soft: 0 16px 36px -8px rgba(0, 0, 0, 0.55);
      --shadow-glow: 0 0 25px rgba(124, 58, 237, 0.3);
      --transition-smooth: all 0.25s ease;
    }
    * { box-sizing: border-box; }
    body {
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
      line-height: 1.65;
      font-size: 15px;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { color: var(--text-main); text-decoration: none; transition: var(--transition-smooth); }
    a:hover { color: var(--brand-secondary); }
    img { max-width: 100%; height: auto; display: block; object-fit: cover; }

    /* 顶栏微服务条 */
    .top-utility-bar {
      background-color: #0E1422;
      border-bottom: 1px solid var(--border-glow);
      font-size: 12px;
      padding: 6px 0;
      color: var(--text-sub);
    }
    .utility-inner { display: flex; align-items: center; justify-content: space-between; }
    .status-notice { display: flex; align-items: center; gap: 8px; }
    .pulse-dot {
      width: 7px; height: 7px; background-color: #10B981; border-radius: 50%;
      box-shadow: 0 0 8px #10B981;
    }
    .gov-links { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; }
    .gov-links a { color: var(--text-sub); font-size: 12px; }
    .gov-links a:hover { color: var(--accent-cyan); }

    /* 主导航 */
    .main-nav-bar {
      background-color: rgba(18, 24, 38, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-glow);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 14px 0;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .brand-logo { display: flex; align-items: center; gap: 10px; }
    .logo-badge {
      width: 40px; height: 40px; background: var(--brand-gradient);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 20px; color: #fff; box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    }
    .brand-title {
      font-size: 20px; font-weight: 700; letter-spacing: 0.5px;
      color: #fff; display: flex; flex-direction: column; line-height: 1.2;
    }
    .brand-subtitle { font-size: 11px; color: var(--text-muted); font-weight: 400; letter-spacing: 1px; }
    .nav-menu { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
    .nav-menu li a {
      font-size: 14px; font-weight: 500; color: var(--text-muted);
      padding: 6px 12px; border-radius: 6px; position: relative;
    }
    .nav-menu li a:hover, .nav-menu li a.active {
      color: #fff; background: rgba(255, 255, 255, 0.05);
    }
    .nav-menu li a.active::after {
      content: ""; position: absolute; bottom: -14px; left: 12px; right: 12px;
      height: 2px; background: var(--brand-gradient); border-radius: 2px;
    }
    .nav-right-actions { display: flex; align-items: center; gap: 12px; }
    .search-pill {
      background: #0B0F19; border: 1px solid var(--border-glow);
      border-radius: 9999px; padding: 6px 16px; display: flex;
      align-items: center; gap: 8px; font-size: 12px; color: var(--text-sub);
    }
    .cache-btn {
      background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border-glow);
      color: #fff; padding: 7px 16px; border-radius: 9999px; font-size: 13px;
      font-weight: 500; cursor: pointer; transition: var(--transition-smooth);
    }
    .cache-btn:hover {
      background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.2);
    }

    /* 模块通用样式与间距 */
    section.cinema-section { padding: 64px 0; position: relative; }
    .section-head { margin-bottom: 34px; }
    .section-pill-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(124, 58, 237, 0.15); border: 1px solid rgba(124, 58, 237, 0.3);
      color: #D946EF; font-size: 12px; padding: 4px 12px; border-radius: 9999px;
      margin-bottom: 12px; font-weight: 600;
    }
    .section-title { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; color: #fff; }
    .section-desc { color: var(--text-muted); font-size: 14px; max-width: 820px; line-height: 1.7; }

    /* 大圆角容器卡片系统 */
    .cinema-card {
      background: var(--bg-card); border: 1px solid var(--border-glow);
      border-radius: var(--radius-xl); padding: 26px; box-shadow: var(--shadow-soft);
      transition: var(--transition-smooth); height: 100%; position: relative; overflow: hidden;
    }
    .cinema-card:hover {
      transform: translateY(-4px); border-color: var(--border-accent); box-shadow: var(--shadow-glow);
    }

    /* 数据徽章 */
    .badge-amber {
      background: rgba(245, 158, 11, 0.15); color: var(--accent-amber);
      border: 1px solid rgba(245, 158, 11, 0.3); padding: 3px 10px;
      border-radius: 6px; font-size: 12px; font-weight: 600;
      display: inline-flex; align-items: center; gap: 4px;
    }
    .badge-cyan {
      background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan);
      border: 1px solid rgba(6, 182, 212, 0.3); padding: 3px 10px;
      border-radius: 6px; font-size: 12px; font-weight: 600;
    }
    .badge-live {
      display: inline-flex; align-items: center; gap: 6px; font-size: 12px;
      color: #10B981; background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.3); padding: 3px 10px;
      border-radius: 9999px; font-weight: 500;
    }
    .badge-rank-gold {
      background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
      color: #000; font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 4px;
    }
    .badge-rank-silver {
      background: linear-gradient(135deg, #94A3B8 0%, #64748B 100%);
      color: #000; font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 4px;
    }

    /* 按钮组 */
    .btn-gradient {
      background: var(--brand-gradient); color: #fff; font-weight: 600;
      padding: 10px 24px; border-radius: 9999px; display: inline-flex;
      align-items: center; justify-content: center; gap: 8px; font-size: 14px;
      box-shadow: 0 4px 18px rgba(124, 58, 237, 0.4); border: none; cursor: pointer;
      transition: var(--transition-smooth);
    }
    .btn-gradient:hover {
      opacity: 0.95; transform: scale(1.02); color: #fff; box-shadow: 0 6px 22px rgba(217, 70, 239, 0.5);
    }
    .btn-outline {
      background: transparent; color: #fff; font-weight: 500;
      padding: 9px 20px; border-radius: 9999px; display: inline-flex;
      align-items: center; gap: 8px; font-size: 13px; border: 1px solid var(--border-glow);
      cursor: pointer; transition: var(--transition-smooth);
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); color: #fff;
    }

    /* 分类专属：筛选导航器 */
    .filter-panel {
      background: var(--bg-card); border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 24px;
    }
    .breadcrumb-nav {
      font-size: 13px; color: var(--text-sub); margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
    }
    .filter-row {
      display: flex; align-items: baseline; gap: 14px; padding: 9px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05); font-size: 13px;
    }
    .filter-row:last-child { border-bottom: none; }
    .filter-label { color: var(--text-sub); font-weight: 600; min-width: 54px; }
    .filter-options { display: flex; flex-wrap: wrap; gap: 8px; }
    .filter-opt {
      color: var(--text-muted); padding: 3px 10px; border-radius: 6px;
      cursor: pointer; transition: var(--transition-smooth);
    }
    .filter-opt:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
    .filter-opt.active {
      color: #fff; background: var(--brand-gradient); font-weight: 600;
    }

    /* 海报卡片网格主体 */
    .anime-poster-card {
      background: var(--bg-card); border: 1px solid var(--border-glow);
      border-radius: var(--radius-md); overflow: hidden; position: relative;
      margin-bottom: 24px; transition: var(--transition-smooth);
    }
    .anime-poster-card:hover {
      transform: translateY(-5px); border-color: var(--border-accent);
      box-shadow: var(--shadow-glow);
    }
    .poster-img-wrap {
      position: relative; width: 100%; aspect-ratio: 3 / 4.2; overflow: hidden; background: #0e1422;
    }
    .poster-img-wrap img {
      width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
    }
    .anime-poster-card:hover .poster-img-wrap img {
      transform: scale(1.05);
    }
    .poster-top-badges {
      position: absolute; top: 8px; left: 8px; right: 8px; display: flex;
      justify-content: space-between; align-items: center; z-index: 2;
    }
    .poster-bot-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.4) 60%, transparent 100%);
      padding: 24px 10px 8px; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end;
    }
    .episode-tag { font-size: 11px; color: var(--accent-cyan); font-weight: 600; }
    .rating-tag { font-size: 12px; color: var(--accent-amber); font-weight: 700; }
    .poster-meta { padding: 12px 10px; }
    .poster-title {
      font-size: 14px; font-weight: 600; color: #fff; white-space: nowrap;
      overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px;
    }
    .poster-desc {
      font-size: 12px; color: var(--text-sub); white-space: nowrap;
      overflow: hidden; text-overflow: ellipsis;
    }

    /* 分页导航 */
    .cinema-pagination {
      display: flex; justify-content: center; align-items: center;
      gap: 8px; margin-top: 20px; list-style: none; padding: 0;
    }
    .cinema-pagination li a, .cinema-pagination li span {
      display: inline-flex; align-items: center; justify-content: center;
      min-width: 38px; height: 38px; padding: 0 12px; border-radius: 8px;
      font-size: 13px; font-weight: 600; background: var(--bg-card);
      border: 1px solid var(--border-glow); color: var(--text-muted);
    }
    .cinema-pagination li a:hover {
      background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); color: #fff;
    }
    .cinema-pagination li.current span {
      background: var(--brand-gradient); color: #fff; border-color: transparent; }

    /* 热度榜卡片 */
    .ranking-wide-card {
      background: var(--bg-card); border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg); overflow: hidden; display: flex;
      flex-direction: column; height: 100%; transition: var(--transition-smooth);
    }
    .ranking-wide-card:hover {
      transform: translateY(-4px); border-color: var(--border-accent); box-shadow: var(--shadow-glow);
    }
    .rank-thumb-box { position: relative; height: 160px; overflow: hidden; }
    .rank-thumb-box img { width: 100%; height: 100%; object-fit: cover; }
    .rank-order-mark {
      position: absolute; top: 12px; left: 12px; z-index: 2;
    }
    .rank-info-content { padding: 18px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
    .rank-item-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .rank-item-tags { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }

    /* 专题策展大卡 */
    .curation-duo-card {
      background: var(--bg-card); border: 1px solid var(--border-glow);
      border-radius: var(--radius-xl); overflow: hidden; display: flex;
      flex-direction: column; height: 100%; transition: var(--transition-smooth);
    }
    @media print, screen and (min-width: 64em) {
      .curation-duo-card { flex-direction: row; }
      .curation-duo-card .curation-cover { width: 45%; }
      .curation-duo-card .curation-body { width: 55%; }
    }
    .curation-duo-card:hover {
      border-color: var(--border-accent); box-shadow: var(--shadow-glow);
    }
    .curation-cover { position: relative; min-height: 220px; overflow: hidden; }
    .curation-cover img { width: 100%; height: 100%; object-fit: cover; }
    .curation-body { padding: 26px; display: flex; flex-direction: column; justify-content: space-between; }
    .curation-badge-strip { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; }
    .curation-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .curation-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

    /* 播放技术建议与配置卡片 */
    .tech-guide-box {
      background: var(--bg-card); border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg); padding: 22px; height: 100%;
      border-top: 3px solid var(--brand-primary);
    }
    .tech-guide-title {
      font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px;
      display: flex; align-items: center; gap: 8px;
    }
    .tech-guide-list { list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--text-muted); }
    .tech-guide-list li {
      padding: 6px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
      display: flex; align-items: center; gap: 8px;
    }
    .tech-guide-list li:last-child { border-bottom: none; }
    .tech-guide-list li::before {
      content: "•"; color: var(--brand-secondary); font-size: 16px; line-height: 1;
    }

    /* 延伸推荐资讯卡 */
    .article-relation-item {
      background: var(--bg-card); border: 1px solid var(--border-glow);
      border-radius: var(--radius-md); padding: 16px; display: flex;
      gap: 16px; align-items: center; transition: var(--transition-smooth);
      margin-bottom: 14px;
    }
    .article-relation-item:hover {
      border-color: var(--border-accent); transform: translateX(4px);
    }
    .article-thumb { width: 90px; height: 60px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
    .article-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .article-detail h4 { font-size: 14px; font-weight: 600; color: #fff; margin: 0 0 4px 0; }
    .article-detail p { font-size: 12px; color: var(--text-sub); margin: 0; }

    /* 更新通知与失效反馈通道 */
    .report-strip-panel {
      background: linear-gradient(135deg, rgba(27, 34, 52, 0.95) 0%, rgba(18, 24, 38, 0.95) 100%);
      border: 1px solid var(--border-glow); border-radius: var(--radius-lg);
      padding: 30px; box-shadow: var(--shadow-soft);
    }
    .report-flex { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
    .report-info h3 { font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 6px 0; }
    .report-info p { font-size: 13px; color: var(--text-muted); margin: 0; }
    .report-actions-form { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
    .report-input {
      background: #0B0F19; border: 1px solid var(--border-glow); color: #fff;
      padding: 10px 16px; border-radius: 9999px; font-size: 13px; min-width: 240px; outline: none;
    }
    .report-input:focus { border-color: var(--brand-secondary); }

    /* 页脚样式 */
    .cinema-footer {
      background-color: #080B12; border-top: 1px solid var(--border-glow);
      padding: 56px 0 28px; font-size: 13px;
    }
    .footer-col-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; }
    .footer-links-list { list-style: none; margin: 0; padding: 0; }
    .footer-links-list li { margin-bottom: 9px; }
    .footer-links-list li a { color: var(--text-muted); }
    .footer-links-list li a:hover { color: #fff; }
    .footer-bottom-line {
      border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 40px;
      padding-top: 22px; text-align: center; color: var(--text-sub); font-size: 12px;
    }

    @media screen and (max-width: 639px) {
      .nav-menu { display: none; }
      section.cinema-section { padding: 42px 0; }
      .section-title { font-size: 22px; }
      .filter-panel { padding: 16px; }
      .report-strip-panel { padding: 20px; }
      .report-input { width: 100%; min-width: unset; }
      .report-actions-form { width: 100%; flex-direction: column; align-items: stretch; }
      .report-actions-form button { width: 100%; }
    }
