/* roulang page: index */
:root {
      --bg-deep: #0b0c10;
      --bg-surface: #13141c;
      --bg-card: #1a1c26;
      --bg-card-hover: #222533;
      --primary: #ff2e7e;
      --primary-hover: #e0266e;
      --primary-glow: rgba(255, 46, 126, 0.35);
      --secondary: #8a2be2;
      --accent-gold: #ff9900;
      --accent-cyan: #00f0ff;
      --text-main: #f5f6fa;
      --text-muted: #a0a5b5;
      --text-dim: #6c7280;
      --border-color: rgba(255, 255, 255, 0.08);
      --border-light: rgba(255, 255, 255, 0.16);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 20px rgba(255, 46, 126, 0.25);
      --transition: all 0.25s ease-out;
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    ul, ol {
      list-style: none;
    }

    button, input {
      font-family: inherit;
      border: none;
      outline: none;
    }

    .container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 资讯门户吸顶导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-color);
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .logo-box {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }

    .logo-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: var(--radius-sm);
      color: #fff;
      font-size: 16px;
      box-shadow: var(--shadow-glow);
    }

    .search-bar {
      flex: 1;
      max-width: 480px;
      margin: 0 32px;
      position: relative;
    }

    .search-input {
      width: 100%;
      height: 38px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-full);
      padding: 0 44px 0 16px;
      color: #fff;
      font-size: 13px;
      transition: var(--transition);
    }

    .search-input:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--primary);
      box-shadow: 0 0 12px var(--primary-glow);
    }

    .search-btn {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 14px;
    }

    .header-user-ops {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .header-user-ops a:hover {
      color: #fff;
    }

    .btn-vip-top {
      padding: 6px 14px;
      border-radius: var(--radius-full);
      background: linear-gradient(90deg, #ff9900, #ff5e00);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(255, 153, 0, 0.3);
    }

    .header-subnav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 44px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .header-subnav::-webkit-scrollbar { display: none; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      white-space: nowrap;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 4px 0;
      position: relative;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
    }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
    }

    .hot-ticker {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--text-dim);
      white-space: nowrap;
    }

    .hot-badge {
      padding: 2px 6px;
      background: rgba(255, 46, 126, 0.15);
      border: 1px solid rgba(255, 46, 126, 0.3);
      color: var(--primary);
      border-radius: 4px;
      font-weight: 600;
      font-size: 11px;
    }

    /* 视觉基石组件 */
    .section-spacing {
      padding: 64px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .section-header {
      margin-bottom: 32px;
    }

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--accent-cyan);
      margin-bottom: 8px;
    }

    .section-title {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--text-main);
      margin-bottom: 12px;
    }

    .section-desc {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 840px;
      line-height: 1.7;
    }

    /* 板块 1: 无大图首屏 Hero (图标矩阵 + 状态条 + 短标题) */
    .hero-matrix-section {
      padding: 56px 0 44px;
      background: radial-gradient(circle at top center, rgba(138, 43, 226, 0.15), transparent 70%);
      border-bottom: 1px solid var(--border-color);
    }

    .hero-status-strip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 6px 16px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-full);
      font-size: 13px;
      color: var(--accent-cyan);
      margin-bottom: 24px;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      background: var(--accent-cyan);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--accent-cyan);
      animation: pulseDot 2s infinite ease-in-out;
    }

    @keyframes pulseDot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.5; }
    }

    .hero-main-title {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: -1px;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #ffffff 40%, var(--text-muted) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-paragraph {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-muted);
      max-width: 860px;
      margin-bottom: 36px;
    }

    .hero-icon-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .hero-matrix-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 20px;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .hero-matrix-card:hover {
      transform: translateY(-4px);
      border-color: var(--primary);
      box-shadow: var(--shadow-card);
    }

    .matrix-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      background: rgba(255, 46, 126, 0.1);
      color: var(--primary);
      border: 1px solid rgba(255, 46, 126, 0.2);
    }

    .matrix-title {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
    }

    .matrix-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 板块 2: KPI看板 */
    .kpi-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .kpi-stat-card {
      background: linear-gradient(145deg, var(--bg-surface), var(--bg-card));
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .kpi-stat-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
    }

    .kpi-number {
      font-size: 38px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
      font-feature-settings: "tnum";
    }

    .kpi-label {
      font-size: 13px;
      color: var(--text-muted);
      letter-spacing: 0.5px;
    }

    /* 板块 3: 服务矩阵 - 多通道流媒体支撑 */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-panel {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: var(--transition);
    }

    .service-panel:hover {
      border-color: var(--secondary);
      box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
    }

    .service-badge {
      display: inline-block;
      padding: 4px 10px;
      background: rgba(138, 43, 226, 0.15);
      color: #ba68c8;
      font-size: 11px;
      font-weight: 600;
      border-radius: var(--radius-sm);
      margin-bottom: 16px;
    }

    .service-h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .service-p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .service-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .spec-pill {
      font-size: 12px;
      color: var(--text-dim);
      background: rgba(255, 255, 255, 0.04);
      padding: 3px 8px;
      border-radius: 4px;
    }

    /* 板块 4: 分类片库矩阵 (专属分类页入口) */
    .category-entry-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .category-entry-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: block;
      transition: var(--transition);
      position: relative;
    }

    .category-entry-card:hover {
      transform: translateY(-4px);
      border-color: var(--primary);
    }

    .cat-thumb {
      height: 140px;
      width: 100%;
      object-fit: cover;
      opacity: 0.8;
      transition: var(--transition);
    }

    .category-entry-card:hover .cat-thumb {
      opacity: 1;
      transform: scale(1.04);
    }

    .cat-meta {
      padding: 16px;
    }

    .cat-name {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .cat-summary {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.45;
      margin-bottom: 12px;
    }

    .cat-link-text {
      font-size: 12px;
      color: var(--primary);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* 板块 5: 结果对比 - 传统压缩源 vs 蓝光压制内核 */
    .compare-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .compare-col {
      border-radius: var(--radius-lg);
      padding: 32px;
      position: relative;
    }

    .col-tradition {
      background: rgba(255, 255, 255, 0.02);
      border: 1px dashed rgba(255, 255, 255, 0.15);
    }

    .col-platform {
      background: linear-gradient(145deg, rgba(255, 46, 126, 0.06), rgba(138, 43, 226, 0.08));
      border: 1px solid rgba(255, 46, 126, 0.35);
      box-shadow: var(--shadow-card);
    }

    .compare-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .compare-title {
      font-size: 20px;
      font-weight: 700;
    }

    .compare-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .compare-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      line-height: 1.5;
    }

    .compare-icon {
      font-size: 16px;
      margin-top: 2px;
    }

    /* 板块 6: 沉浸式多端观影环境场景呈现 */
    .scenes-showcase {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .scene-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .scene-cover-img {
      height: 190px;
      width: 100%;
      object-fit: cover;
    }

    .scene-content {
      padding: 20px;
      flex: 1;
    }

    .scene-tag {
      font-size: 12px;
      color: var(--accent-gold);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .scene-title {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .scene-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* 板块 7: 4K播放器内核技术解构 */
    .player-diagram {
      background: radial-gradient(circle at center, rgba(30, 34, 48, 0.9), var(--bg-surface));
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 40px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 36px;
      align-items: center;
    }

    .player-visual-box {
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-md);
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .mockup-header {
      display: flex;
      justify-content: space-between;
      color: var(--text-dim);
      font-size: 11px;
      margin-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding-bottom: 8px;
    }

    .mockup-screen {
      position: relative;
      height: 200px;
      background: #111;
      border-radius: 6px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mockup-screen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.65;
    }

    .playback-hud {
      position: absolute;
      bottom: 10px;
      left: 10px;
      right: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 11px;
      color: #fff;
    }

    .player-feature-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .feature-point {
      border-left: 3px solid var(--primary);
      padding-left: 16px;
    }

    .feature-point h4 {
      font-size: 16px;
      color: #fff;
      margin-bottom: 4px;
    }

    .feature-point p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 板块 8: 热门连载更新周历 (排期日历) */
    .schedule-bar {
      display: flex;
      gap: 10px;
      margin-bottom: 24px;
      overflow-x: auto;
      padding-bottom: 6px;
    }

    .day-tab {
      padding: 8px 20px;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-full);
      font-size: 13px;
      color: var(--text-muted);
      cursor: pointer;
      white-space: nowrap;
      transition: var(--transition);
    }

    .day-tab.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      box-shadow: 0 0 12px var(--primary-glow);
    }

    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .schedule-item-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 16px;
      display: flex;
      gap: 14px;
      transition: var(--transition);
    }

    .schedule-item-card:hover {
      border-color: var(--accent-cyan);
    }

    .sched-thumb {
      width: 70px;
      height: 94px;
      border-radius: 4px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .sched-info {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .sched-tag {
      font-size: 11px;
      color: var(--accent-cyan);
      font-weight: 600;
    }

    .sched-name {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.35;
      color: #fff;
    }

    .sched-ep {
      font-size: 12px;
      color: var(--text-dim);
    }

    /* 板块 9: 影漫双修联动推荐 */
    .cross-media-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .cross-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .cross-posters {
      display: flex;
      gap: 12px;
      height: 180px;
    }

    .cross-posters img {
      width: 50%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius-sm);
    }

    .cross-details h4 {
      font-size: 16px;
      color: #fff;
      margin-bottom: 6px;
    }

    .cross-details p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .cross-actions {
      display: flex;
      gap: 10px;
      margin-top: auto;
    }

    .btn-read-manga, .btn-watch-anime {
      flex: 1;
      padding: 8px 0;
      text-align: center;
      border-radius: var(--radius-sm);
      font-size: 12px;
      font-weight: 600;
    }

    .btn-read-manga {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .btn-watch-anime {
      background: var(--primary);
      color: #fff;
    }

    /* 板块 10: 平台里程碑与演进史 */
    .timeline-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }

    .timeline-node {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      position: relative;
    }

    .node-year {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 6px;
    }

    .node-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .node-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* 板块 11: 综合热度风向标榜单 */
    .ranking-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .rank-column {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 24px;
    }

    .rank-col-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .rank-col-title {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
    }

    .rank-col-badge {
      font-size: 11px;
      color: var(--accent-gold);
      background: rgba(255, 153, 0, 0.12);
      padding: 2px 8px;
      border-radius: 4px;
    }

    .rank-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .rank-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .rank-num {
      width: 24px;
      font-size: 18px;
      font-weight: 800;
      color: var(--text-dim);
      text-align: center;
      font-feature-settings: "tnum";
    }

    .rank-top1 { color: #ff334b; }
    .rank-top2 { color: #ff9900; }
    .rank-top3 { color: var(--accent-cyan); }

    .rank-item-info {
      flex: 1;
      min-width: 0;
    }

    .rank-item-name {
      font-size: 14px;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .rank-item-sub {
      font-size: 12px;
      color: var(--text-dim);
      margin-top: 2px;
    }

    .rank-heat-val {
      font-size: 12px;
      color: var(--primary);
      font-weight: 600;
      font-feature-settings: "tnum";
    }

    /* 板块 12: VIP特权方案与订阅阶梯 */
    .vip-tier-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .vip-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: var(--transition);
    }

    .vip-card.featured {
      background: linear-gradient(165deg, rgba(255, 46, 126, 0.1), var(--bg-card));
      border-color: var(--primary);
      box-shadow: var(--shadow-glow);
      transform: scale(1.02);
    }

    .vip-card-badge {
      position: absolute;
      top: -12px;
      right: 24px;
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      box-shadow: 0 2px 8px var(--primary-glow);
    }

    .vip-type-name {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .vip-price {
      font-size: 34px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 18px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

    .vip-price span {
      font-size: 13px;
      color: var(--text-dim);
      font-weight: 400;
    }

    .vip-features-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px;
      flex: 1;
    }

    .vip-feature-item {
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .vip-feature-item::before {
      content: "✓";
      color: var(--accent-cyan);
      font-weight: 800;
    }

    .btn-vip-action {
      width: 100%;
      padding: 12px 0;
      border-radius: var(--radius-sm);
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      cursor: pointer;
      transition: var(--transition);
    }

    .vip-card.featured .btn-vip-action {
      background: var(--primary);
      box-shadow: 0 4px 14px var(--primary-glow);
    }

    .vip-card.featured .btn-vip-action:hover {
      background: var(--primary-hover);
    }

    /* 板块 13: 观众弹幕与口碑精选墙 */
    .reviews-stream {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-bubble {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .reviewer-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .reviewer-meta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .avatar-mock {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
    }

    .reviewer-name {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
    }

    .review-stars {
      color: var(--accent-gold);
      font-size: 12px;
      letter-spacing: 2px;
    }

    .review-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .review-source {
      font-size: 11px;
      color: var(--text-dim);
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 8px;
    }

    /* 板块 14: 业界动态与前线情报资讯 */
    .news-list-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .news-article-row {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 20px;
      display: flex;
      gap: 16px;
      transition: var(--transition);
    }

    .news-article-row:hover {
      border-color: rgba(255, 255, 255, 0.25);
      background: var(--bg-card);
    }

    .news-date-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      flex-shrink: 0;
    }

    .news-day {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }

    .news-month {
      font-size: 11px;
      color: var(--text-dim);
    }

    .news-content-box h4 {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .news-content-box p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 板块 15: 平台安全与服务保障体系 */
    .guarantee-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .guarantee-box {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      text-align: center;
    }

    .guarantee-symbol {
      width: 48px;
      height: 48px;
      margin: 0 auto 16px;
      border-radius: 50%;
      background: rgba(0, 240, 255, 0.08);
      border: 1px solid rgba(0, 240, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-cyan);
      font-size: 20px;
      font-weight: 800;
    }

    .guarantee-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .guarantee-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 板块 16: 播放与阅读常见疑难快速解答 (FAQ) */
    .faq-container {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 980px;
      margin: 0 auto;
    }

    .faq-item-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 22px 26px;
    }

    .faq-question {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .faq-question::before {
      content: "Q";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: var(--primary);
      color: #fff;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 800;
      flex-shrink: 0;
    }

    .faq-answer {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.65;
      padding-left: 34px;
    }

    /* 板块 17: 底部私密影院畅享行动区 (单收口CTA) */
    .cta-banner-wrapper {
      background: linear-gradient(135deg, rgba(138, 43, 226, 0.25), rgba(255, 46, 126, 0.2)), var(--bg-surface);
      border: 1px solid rgba(255, 46, 126, 0.3);
      border-radius: var(--radius-lg);
      padding: 56px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-glow);
    }

    .cta-heading {
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }

    .cta-subtext {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 640px;
      margin: 0 auto 30px;
      line-height: 1.6;
    }

    .cta-action-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
    }

    .btn-main-launch {
      padding: 14px 38px;
      border-radius: var(--radius-full);
      background: var(--primary);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      box-shadow: 0 4px 20px var(--primary-glow);
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-main-launch:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }

    /* 全局统一页脚 */
    .site-footer {
      background: #08090c;
      border-top: 1px solid var(--border-color);
      padding: 56px 0 28px;
      font-size: 13px;
      color: var(--text-dim);
    }

    .footer-top-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 36px;
      margin-bottom: 40px;
    }

    .footer-brand h3 {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .footer-col h5 {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
    }

    .footer-nav-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-nav-list a {
      color: var(--text-muted);
    }

    .footer-nav-list a:hover {
      color: var(--primary);
    }

    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 12px;
    }

    .footer-disclaimer {
      line-height: 1.6;
    }

    /* 响应式断点 */
    @media (max-width: 1024px) {
      .hero-icon-grid { grid-template-columns: repeat(2, 1fr); }
      .kpi-row { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: 1fr; }
      .category-entry-grid { grid-template-columns: repeat(2, 1fr); }
      .scenes-showcase { grid-template-columns: 1fr; }
      .player-diagram { grid-template-columns: 1fr; }
      .schedule-grid { grid-template-columns: repeat(2, 1fr); }
      .cross-media-grid { grid-template-columns: 1fr; }
      .timeline-strip { grid-template-columns: repeat(2, 1fr); }
      .ranking-grid { grid-template-columns: 1fr; }
      .vip-tier-grid { grid-template-columns: 1fr; }
      .vip-card.featured { transform: none; }
      .reviews-stream { grid-template-columns: 1fr; }
      .news-list-grid { grid-template-columns: 1fr; }
      .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .header-top { height: auto; padding: 12px 0; flex-wrap: wrap; gap: 12px; }
      .search-bar { order: 3; max-width: 100%; margin: 4px 0 0; width: 100%; }
      .hero-main-title { font-size: 30px; }
      .compare-wrapper { grid-template-columns: 1fr; }
      .footer-top-grid { grid-template-columns: 1fr; }
      .footer-bottom-bar { flex-direction: column; align-items: flex-start; }
      .cta-banner-wrapper { padding: 36px 20px; }
      .cta-heading { font-size: 24px; }
    }

/* roulang page: category2 */
:root {
      --bg-deep: #0b0c10;
      --bg-surface: #13141c;
      --bg-card: #1a1c26;
      --bg-card-hover: #222533;
      --primary: #ff2e7e;
      --primary-hover: #e0266e;
      --primary-glow: rgba(255, 46, 126, 0.35);
      --secondary: #8a2be2;
      --accent-gold: #ff9900;
      --accent-cyan: #00f0ff;
      --text-main: #f5f6fa;
      --text-muted: #a0a5b5;
      --text-dim: #6c7280;
      --border-color: rgba(255, 255, 255, 0.08);
      --border-light: rgba(255, 255, 255, 0.16);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 20px rgba(255, 46, 126, 0.25);
      --transition: all 0.25s ease-out;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button, input {
      font-family: inherit;
      border: none;
      outline: none;
    }

    .container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 资讯门户吸顶导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-color);
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .logo-box {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }

    .logo-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: var(--radius-sm);
      color: #fff;
      font-size: 16px;
      box-shadow: var(--shadow-glow);
    }

    .search-bar {
      flex: 1;
      max-width: 480px;
      margin: 0 32px;
      position: relative;
    }

    .search-input {
      width: 100%;
      height: 38px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-full);
      padding: 0 44px 0 16px;
      color: #fff;
      font-size: 13px;
      transition: var(--transition);
    }

    .search-input:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--primary);
      box-shadow: 0 0 12px var(--primary-glow);
    }

    .search-btn {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 14px;
    }

    .header-user-ops {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .header-user-ops a:hover {
      color: #fff;
    }

    .btn-vip-top {
      padding: 6px 14px;
      border-radius: var(--radius-full);
      background: linear-gradient(90deg, #ff9900, #ff5e00);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(255, 153, 0, 0.3);
    }

    .header-subnav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 44px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .header-subnav::-webkit-scrollbar { display: none; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      white-space: nowrap;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 4px 0;
      position: relative;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
    }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
    }

    .hot-ticker {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .hot-badge {
      padding: 2px 6px;
      background: rgba(255, 46, 126, 0.15);
      border: 1px solid rgba(255, 46, 126, 0.3);
      color: var(--primary);
      border-radius: 4px;
      font-weight: 600;
      font-size: 11px;
    }

    /* 板块通用框架 */
    .section-spacing {
      padding: 56px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .section-header-flex {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 28px;
      gap: 20px;
      flex-wrap: wrap;
    }

    .section-badge-title {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent-cyan);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
      display: inline-block;
    }

    .section-title {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #fff;
    }

    .section-desc {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 6px;
      max-width: 680px;
    }

    /* 板块 1: 分类专属 H1 标题与筛选控制台 + 前后对比并置 */
    .filter-hero-section {
      padding: 40px 0 32px;
      background: linear-gradient(180deg, rgba(26, 28, 38, 0.7) 0%, rgba(11, 12, 16, 0.95) 100%);
      border-bottom: 1px solid var(--border-color);
    }

    .filter-header-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 24px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .filter-h1-group h1 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .count-pill {
      font-size: 13px;
      font-weight: 600;
      background: rgba(255, 46, 126, 0.15);
      border: 1px solid rgba(255, 46, 126, 0.3);
      color: var(--primary);
      padding: 2px 10px;
      border-radius: var(--radius-full);
    }

    .filter-h1-group p {
      color: var(--text-muted);
      font-size: 14px;
      margin-top: 6px;
    }

    /* Before/After 并置对比展台 */
    .compare-stage {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 20px;
      margin-bottom: 28px;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      position: relative;
    }

    .compare-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: #000;
      border: 1px solid var(--border-color);
    }

    .compare-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      filter: contrast(0.85) brightness(0.9);
    }

    .compare-card.after-card img {
      filter: contrast(1.1) saturate(1.2) brightness(1.05);
      box-shadow: inset 0 0 40px rgba(255, 46, 126, 0.2);
    }

    .compare-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      z-index: 2;
    }

    .tag-before {
      background: rgba(40, 44, 52, 0.85);
      color: var(--text-dim);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tag-after {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: #fff;
      box-shadow: 0 0 12px var(--primary-glow);
    }

    .compare-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 12px 16px;
      background: linear-gradient(0deg, rgba(11, 12, 16, 0.95), transparent);
      font-size: 13px;
      color: var(--text-main);
    }

    .compare-action-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid var(--border-color);
      flex-wrap: wrap;
      gap: 12px;
    }

    .compare-action-bar span {
      font-size: 13px;
      color: var(--text-muted);
    }

    .btn-glow-sm {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      padding: 7px 18px;
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: var(--shadow-glow);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn-glow-sm:hover {
      box-shadow: 0 0 16px var(--primary);
    }

    /* 多维深色过滤工具条 */
    .filter-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 16px 20px;
    }

    .filter-row {
      display: flex;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
      font-size: 13px;
      gap: 12px;
    }

    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .filter-row:first-child {
      padding-top: 0;
    }

    .filter-label {
      width: 60px;
      color: var(--text-dim);
      font-weight: 600;
      flex-shrink: 0;
    }

    .filter-items {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-pill {
      padding: 4px 12px;
      border-radius: var(--radius-full);
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-pill:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }

    .filter-pill.active {
      background: var(--primary);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 0 10px var(--primary-glow);
    }

    /* 板块 2: 主力内容网格 (竖版漫画卡片墙) */
    .comic-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 18px;
    }

    .comic-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .comic-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 46, 126, 0.4);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 46, 126, 0.15);
    }

    .comic-poster-wrapper {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #111;
    }

    .comic-poster-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease-out;
    }

    .comic-card:hover .comic-poster-wrapper img {
      transform: scale(1.06);
    }

    .comic-badge-top {
      position: absolute;
      top: 8px;
      left: 8px;
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      background: rgba(11, 12, 16, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--accent-cyan);
    }

    .comic-badge-rate {
      position: absolute;
      top: 8px;
      right: 8px;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      background: rgba(255, 153, 0, 0.9);
      color: #000;
    }

    .comic-ep-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px 10px 8px;
      background: linear-gradient(180deg, transparent 0%, rgba(11, 12, 16, 0.95) 100%);
      font-size: 12px;
      color: #fff;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .comic-body {
      padding: 12px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .comic-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }

    .comic-subtitle {
      font-size: 12px;
      color: var(--text-dim);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 8px;
    }

    .comic-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-top: auto;
    }

    .comic-tag-item {
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
    }

    .comic-read-btn {
      margin-top: 10px;
      width: 100%;
      padding: 6px 0;
      border-radius: var(--radius-sm);
      background: rgba(255, 46, 126, 0.12);
      border: 1px solid rgba(255, 46, 126, 0.25);
      color: var(--primary);
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      transition: var(--transition);
    }

    .comic-card:hover .comic-read-btn {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 0 10px var(--primary-glow);
    }

    /* 数字分页器 */
    .pagination-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
    }

    .page-btn {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .page-btn:hover {
      color: #fff;
      border-color: var(--border-light);
      background: var(--bg-card);
    }

    .page-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      box-shadow: 0 0 12px var(--primary-glow);
    }

    .page-btn.page-arrow {
      width: auto;
      padding: 0 14px;
    }

    /* 板块 3: 强档推荐置顶架 (横向 16:9 展架) */
    .featured-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .featured-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }

    .featured-card:hover {
      border-color: rgba(138, 43, 226, 0.4);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .featured-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .featured-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .featured-card:hover .featured-thumb img {
      transform: scale(1.05);
    }

    .featured-badge-flag {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 4px 10px;
      border-radius: 4px;
      background: linear-gradient(90deg, #ff2e7e, #8a2be2);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .featured-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .featured-title-wrap {
      margin-bottom: 10px;
    }

    .featured-manga-title {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .featured-staff {
      font-size: 12px;
      color: var(--accent-cyan);
    }

    .featured-summary {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .featured-foot {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--border-color);
      padding-top: 12px;
    }

    .featured-meta {
      font-size: 12px;
      color: var(--text-dim);
    }

    /* 板块 4: 标签与二级索引云 */
    .tagcloud-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 28px;
    }

    .tagcloud-group {
      margin-bottom: 20px;
    }

    .tagcloud-group:last-child {
      margin-bottom: 0;
    }

    .tagcloud-sublabel {
      font-size: 13px;
      font-weight: 700;
      color: var(--accent-gold);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .tagcloud-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .cloud-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      color: var(--text-muted);
      font-size: 13px;
      transition: var(--transition);
    }

    .cloud-pill:hover {
      color: #fff;
      border-color: var(--primary);
      background: var(--bg-card-hover);
      transform: translateY(-2px);
    }

    .cloud-pill span {
      color: var(--text-dim);
      font-size: 11px;
    }

    /* 板块 5: 完播榜单 TOP 5 */
    .top-rank-list {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .top-rank-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 16px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: var(--transition);
    }

    .top-rank-item:hover {
      border-color: var(--border-light);
      background: var(--bg-card);
    }

    .rank-num-badge {
      position: absolute;
      top: -10px;
      left: 14px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 2px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
      color: var(--text-muted);
    }

    .top-rank-item:nth-child(1) .rank-num-badge {
      background: #ff2e7e;
      border-color: #ff2e7e;
      color: #fff;
      box-shadow: 0 0 10px var(--primary-glow);
    }

    .top-rank-item:nth-child(2) .rank-num-badge {
      background: #ff9900;
      border-color: #ff9900;
      color: #000;
    }

    .top-rank-item:nth-child(3) .rank-num-badge {
      background: #00f0ff;
      border-color: #00f0ff;
      color: #000;
    }

    .rank-media-row {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-top: 6px;
      margin-bottom: 12px;
    }

    .rank-mini-cover {
      width: 48px;
      height: 64px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }

    .rank-mini-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .rank-title-box {
      overflow: hidden;
    }

    .rank-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .rank-cat {
      font-size: 11px;
      color: var(--text-dim);
      margin-top: 2px;
    }

    .rank-meter-bar {
      margin-top: auto;
    }

    .rank-meter-head {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .rank-progress {
      height: 4px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 2px;
      overflow: hidden;
    }

    .rank-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      border-radius: 2px;
    }

    /* 板块 6: 观影与追漫指南 */
    .guide-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .guide-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
    }

    .guide-icon-box {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: rgba(255, 46, 126, 0.1);
      border: 1px solid rgba(255, 46, 126, 0.25);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .guide-h3 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .guide-p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 板块 7: 深度情报与动态快讯 */
    .news-wire-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .news-wire-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }

    .news-wire-card:hover {
      border-color: var(--border-light);
      background: var(--bg-card);
    }

    .news-wire-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .news-wire-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .news-wire-date {
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 6px;
    }

    .news-wire-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 8px;
    }

    .news-wire-lead {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 12px;
      flex: 1;
    }

    .news-wire-link {
      font-size: 12px;
      color: var(--accent-cyan);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-weight: 600;
    }

    /* 板块 8: 专属引导条 */
    .comic-cta-banner {
      background: linear-gradient(135deg, rgba(138, 43, 226, 0.25) 0%, rgba(255, 46, 126, 0.15) 100%), var(--bg-surface);
      border: 1px solid rgba(255, 46, 126, 0.3);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .cta-banner-text h2 {
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }

    .cta-banner-text p {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 620px;
    }

    .cta-input-group {
      display: flex;
      gap: 10px;
      min-width: 380px;
    }

    .cta-input-group input {
      flex: 1;
      height: 44px;
      border-radius: var(--radius-full);
      background: rgba(11, 12, 16, 0.85);
      border: 1px solid var(--border-light);
      padding: 0 18px;
      color: #fff;
      font-size: 13px;
    }

    .cta-input-group input:focus {
      border-color: var(--primary);
    }

    .cta-sub-btn {
      height: 44px;
      padding: 0 24px;
      border-radius: var(--radius-full);
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: var(--shadow-glow);
      white-space: nowrap;
    }

    /* Footer 全局复用 */
    .site-footer {
      background: #08090c;
      border-top: 1px solid var(--border-color);
      padding: 56px 0 28px;
      color: var(--text-muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-logo {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
    }

    .footer-brand-desc {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 10px;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--text-dim);
      flex-wrap: wrap;
      gap: 12px;
    }

    /* 响应式断点 */
    @media (max-width: 1200px) {
      .comic-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .top-rank-list {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 900px) {
      .featured-row {
        grid-template-columns: 1fr;
      }
      .comic-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .guide-cards-grid,
      .news-wire-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .comic-cta-banner {
        flex-direction: column;
        align-items: stretch;
      }
      .cta-input-group {
        min-width: 100%;
      }
      .search-bar {
        margin: 0 16px;
      }
    }

    @media (max-width: 600px) {
      .compare-grid {
        grid-template-columns: 1fr;
      }
      .comic-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .top-rank-list {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .header-user-ops {
        display: none;
      }
    }

/* roulang page: category1 */
:root {
      --bg-deep: #0b0c10;
      --bg-surface: #13141c;
      --bg-card: #1a1c26;
      --bg-card-hover: #222533;
      --primary: #ff2e7e;
      --primary-hover: #e0266e;
      --primary-glow: rgba(255, 46, 126, 0.35);
      --secondary: #8a2be2;
      --accent-gold: #ff9900;
      --accent-cyan: #00f0ff;
      --text-main: #f5f6fa;
      --text-muted: #a0a5b5;
      --text-dim: #6c7280;
      --border-color: rgba(255, 255, 255, 0.08);
      --border-light: rgba(255, 255, 255, 0.16);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 20px rgba(255, 46, 126, 0.25);
      --transition: all 0.25s ease-out;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    button, input {
      font-family: inherit;
      border: none;
      outline: none;
    }
    .container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }
    /* 资讯门户吸顶导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .logo-box {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .logo-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: var(--radius-sm);
      color: #fff;
      font-size: 16px;
      box-shadow: var(--shadow-glow);
    }
    .search-bar {
      flex: 1;
      max-width: 480px;
      margin: 0 32px;
      position: relative;
    }
    .search-input {
      width: 100%;
      height: 38px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-full);
      padding: 0 44px 0 16px;
      color: #fff;
      font-size: 13px;
      transition: var(--transition);
    }
    .search-input:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--primary);
      box-shadow: 0 0 12px var(--primary-glow);
    }
    .search-btn {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 14px;
    }
    .header-user-ops {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 14px;
      color: var(--text-muted);
    }
    .header-user-ops a:hover {
      color: #fff;
    }
    .btn-vip-top {
      padding: 6px 14px;
      border-radius: var(--radius-full);
      background: linear-gradient(90deg, #ff9900, #ff5e00);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(255, 153, 0, 0.3);
    }
    .header-subnav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 44px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .header-subnav::-webkit-scrollbar { display: none; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      white-space: nowrap;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 4px 0;
      position: relative;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
    }
    .nav-links a.active::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
    }
    .hot-ticker {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .hot-badge {
      padding: 2px 6px;
      background: rgba(255, 46, 126, 0.15);
      border: 1px solid rgba(255, 46, 126, 0.3);
      color: var(--primary);
      border-radius: 4px;
      font-weight: 600;
      font-size: 11px;
    }
    /* 分类页通用板块间距与标题 */
    .cat-section {
      padding: 48px 0;
      border-bottom: 1px solid var(--border-color);
    }
    .cat-section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 28px;
    }
    .cat-title-block h2 {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .cat-title-block h2::before {
      content: "";
      display: inline-block;
      width: 4px;
      height: 20px;
      background: var(--primary);
      border-radius: 2px;
      box-shadow: 0 0 10px var(--primary-glow);
    }
    .cat-sub-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 6px;
    }

    /* 板块 1: 分类专属 H1 标题与筛选控制台 (含拼团开播活动横幅) */
    .cat-hero-filter {
      padding: 40px 0 32px;
      background: linear-gradient(180deg, rgba(26, 28, 38, 0.6) 0%, rgba(11, 12, 16, 0.95) 100%);
      border-bottom: 1px solid var(--border-color);
    }
    .cat-header-topline {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 24px;
    }
    .cat-h1 {
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .cat-count-pill {
      font-size: 13px;
      font-weight: 600;
      padding: 4px 12px;
      background: rgba(0, 240, 255, 0.12);
      border: 1px solid rgba(0, 240, 255, 0.3);
      color: var(--accent-cyan);
      border-radius: var(--radius-full);
    }
    /* 拼团转化组件：成团人数提示 + 开团/参团双按钮 */
    .group-play-card {
      display: flex;
      align-items: center;
      gap: 18px;
      background: rgba(255, 46, 126, 0.08);
      border: 1px solid rgba(255, 46, 126, 0.28);
      border-radius: var(--radius-md);
      padding: 12px 20px;
      box-shadow: 0 4px 16px rgba(255, 46, 126, 0.1);
    }
    .group-info-text {
      font-size: 13px;
      color: var(--text-main);
    }
    .group-info-text strong {
      color: var(--accent-gold);
      font-size: 15px;
    }
    .group-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .btn-create-group {
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      background: var(--primary);
      border-radius: var(--radius-full);
      box-shadow: 0 2px 10px var(--primary-glow);
    }
    .btn-create-group:hover {
      background: var(--primary-hover);
    }
    .btn-join-group {
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-full);
    }
    .btn-join-group:hover {
      background: rgba(255, 255, 255, 0.18);
    }
    /* 多级筛选控制条 */
    .filter-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 13px;
    }
    .filter-label {
      color: var(--text-dim);
      font-weight: 600;
      min-width: 56px;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-btn {
      padding: 4px 14px;
      border-radius: var(--radius-full);
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition);
      background: transparent;
    }
    .filter-btn:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-btn.active {
      color: #fff;
      background: var(--primary);
      font-weight: 600;
      box-shadow: 0 0 10px var(--primary-glow);
    }

    /* 板块 2: 分类主力内容网格 (5列) */
    .media-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .media-card {
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      transition: var(--transition);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .media-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 46, 126, 0.4);
      box-shadow: var(--shadow-card), 0 0 18px rgba(255, 46, 126, 0.2);
    }
    .media-poster-box {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #181a24;
    }
    .media-poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .media-card:hover .media-poster-box img {
      transform: scale(1.06);
    }
    .badge-corner {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(11, 12, 16, 0.85);
      backdrop-filter: blur(4px);
      border: 1px solid var(--border-color);
      padding: 3px 8px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 4px;
      color: var(--accent-gold);
    }
    .badge-episode {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 2px 8px;
      font-size: 11px;
      border-radius: 4px;
      color: #fff;
    }
    .play-mask-btn {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .media-card:hover .play-mask-btn {
      opacity: 1;
    }
    .icon-play-circle {
      width: 46px;
      height: 46px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      box-shadow: 0 0 15px var(--primary-glow);
    }
    .media-info {
      padding: 14px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .media-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .media-sub {
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 10px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .media-meta-tags {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-muted);
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 8px;
    }
    .score-highlight {
      color: var(--accent-gold);
      font-weight: 700;
    }
    /* 分页器 */
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 36px;
    }
    .page-btn {
      min-width: 38px;
      height: 38px;
      padding: 0 12px;
      border-radius: var(--radius-sm);
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      color: var(--text-muted);
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }
    .page-btn:hover, .page-btn.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      box-shadow: 0 0 12px var(--primary-glow);
    }

    /* 板块 3: 本类目强档推荐置顶架 (横版 16:9 卡片) */
    .heavy-rec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .heavy-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }
    .heavy-card:hover {
      border-color: var(--border-light);
      transform: translateY(-4px);
    }
    .heavy-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #181924;
      overflow: hidden;
    }
    .heavy-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .heavy-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .heavy-meta-line {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }
    .tag-accent {
      font-size: 11px;
      font-weight: 700;
      color: var(--accent-cyan);
      background: rgba(0, 240, 255, 0.1);
      padding: 2px 6px;
      border-radius: 4px;
    }
    .heavy-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .heavy-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex: 1;
    }
    .heavy-staff-info {
      font-size: 12px;
      color: var(--text-dim);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 12px;
    }

    /* 板块 4: 分类热词与二级标签索引云 */
    .tag-cloud-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
    }
    .tag-group-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .tag-group-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .tag-group-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dim);
      min-width: 72px;
      padding-top: 4px;
    }
    .cloud-tags-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .cloud-pill {
      font-size: 12px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-color);
      padding: 4px 12px;
      border-radius: var(--radius-full);
      transition: var(--transition);
    }
    .cloud-pill:hover {
      color: #fff;
      border-color: var(--primary);
      background: rgba(255, 46, 126, 0.12);
    }

    /* 板块 5: 本类目观影榜单 Top 5 */
    .rank-list-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }
    .rank-item-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
    }
    .rank-num-badge {
      position: absolute;
      top: 10px;
      right: 12px;
      font-size: 24px;
      font-weight: 900;
      fontstyle: italic;
      color: rgba(255, 255, 255, 0.12);
      line-height: 1;
    }
    .rank-item-card:nth-child(1) .rank-num-badge {
      color: rgba(255, 46, 126, 0.4);
    }
    .rank-item-card:nth-child(2) .rank-num-badge {
      color: rgba(255, 153, 0, 0.4);
    }
    .rank-item-card:nth-child(3) .rank-num-badge {
      color: rgba(0, 240, 255, 0.4);
    }
    .rank-thumb-mini {
      aspect-ratio: 16 / 10;
      border-radius: var(--radius-sm);
      overflow: hidden;
      background: #181a24;
    }
    .rank-thumb-mini img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .rank-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-metric {
      font-size: 12px;
      color: var(--text-dim);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .metric-value {
      color: var(--accent-cyan);
      font-weight: 600;
    }

    /* 板块 6: 分类常见知识与观影指南 */
    .guide-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .guide-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
    }
    .guide-header-text {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .guide-item {
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .guide-item:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    .guide-q {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 6px;
    }
    .guide-a {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 板块 7: 分类关联动态与快讯解读 */
    .news-three-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .news-post-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }
    .news-post-card:hover {
      border-color: var(--border-light);
      transform: translateY(-4px);
    }
    .news-post-thumb {
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #181a24;
    }
    .news-post-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .news-post-body {
      padding: 18px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .news-post-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .news-post-snippet {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .news-post-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-dim);
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 10px;
    }

    /* 板块 8: 分类专区专属引导卡 */
    .cat-subscribe-banner {
      background: linear-gradient(135deg, rgba(255, 46, 126, 0.12) 0%, rgba(138, 43, 226, 0.16) 100%);
      border: 1px solid rgba(255, 46, 126, 0.3);
      border-radius: var(--radius-lg);
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .subscribe-info h3 {
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .subscribe-info p {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 620px;
      line-height: 1.6;
    }
    .subscribe-form {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 360px;
    }
    .sub-input {
      flex: 1;
      height: 44px;
      background: rgba(11, 12, 16, 0.85);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-full);
      padding: 0 18px;
      color: #fff;
      font-size: 13px;
    }
    .sub-input:focus {
      border-color: var(--primary);
    }
    .sub-submit-btn {
      height: 44px;
      padding: 0 24px;
      background: var(--primary);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      border-radius: var(--radius-full);
      cursor: pointer;
      box-shadow: 0 4px 16px var(--primary-glow);
      white-space: nowrap;
      transition: var(--transition);
    }
    .sub-submit-btn:hover {
      background: var(--primary-hover);
    }

    /* 页脚与全局响应式 */
    .site-footer {
      background: var(--bg-surface);
      border-top: 1px solid var(--border-color);
      padding: 60px 0 30px;
      margin-top: 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-logo {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
    }
    .footer-brand-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 12px;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-dim);
    }

    @media (max-width: 1100px) {
      .media-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .rank-list-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 860px) {
      .header-top {
        flex-direction: column;
        height: auto;
        padding: 14px 0;
        gap: 12px;
      }
      .search-bar {
        width: 100%;
        max-width: 100%;
        margin: 0;
      }
      .cat-h1 {
        font-size: 24px;
      }
      .media-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .heavy-rec-grid,
      .news-three-grid,
      .guide-two-col {
        grid-template-columns: 1fr;
      }
      .cat-subscribe-banner {
        flex-direction: column;
        align-items: stretch;
      }
      .subscribe-form {
        min-width: 100%;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 560px) {
      .media-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .rank-list-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .group-play-card {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* roulang page: category3 */
:root {
      --bg-deep: #0b0c10;
      --bg-surface: #13141c;
      --bg-card: #1a1c26;
      --bg-card-hover: #222533;
      --primary: #ff2e7e;
      --primary-hover: #e0266e;
      --primary-glow: rgba(255, 46, 126, 0.35);
      --secondary: #8a2be2;
      --accent-gold: #ff9900;
      --accent-cyan: #00f0ff;
      --text-main: #f5f6fa;
      --text-muted: #a0a5b5;
      --text-dim: #6c7280;
      --border-color: rgba(255, 255, 255, 0.08);
      --border-light: rgba(255, 255, 255, 0.16);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 20px rgba(255, 46, 126, 0.25);
      --transition: all 0.25s ease-out;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button, input, select {
      font-family: inherit;
      border: none;
      outline: none;
    }

    .container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 资讯门户吸顶导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-color);
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .logo-box {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }

    .logo-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: var(--radius-sm);
      color: #fff;
      font-size: 16px;
      box-shadow: var(--shadow-glow);
    }

    .search-bar {
      flex: 1;
      max-width: 480px;
      margin: 0 32px;
      position: relative;
    }

    .search-input {
      width: 100%;
      height: 38px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-full);
      padding: 0 44px 0 16px;
      color: #fff;
      font-size: 13px;
      transition: var(--transition);
    }

    .search-input:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--primary);
      box-shadow: 0 0 12px var(--primary-glow);
    }

    .search-btn {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 14px;
    }

    .header-user-ops {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .header-user-ops a:hover {
      color: #fff;
    }

    .btn-vip-top {
      padding: 6px 14px;
      border-radius: var(--radius-full);
      background: linear-gradient(90deg, #ff9900, #ff5e00);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(255, 153, 0, 0.3);
    }

    .header-subnav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 44px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .header-subnav::-webkit-scrollbar { display: none; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      white-space: nowrap;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 4px 0;
      position: relative;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
    }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
    }

    .hot-ticker {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .hot-badge {
      padding: 2px 6px;
      background: rgba(255, 46, 126, 0.15);
      border: 1px solid rgba(255, 46, 126, 0.3);
      color: var(--primary);
      border-radius: 4px;
      font-weight: 600;
      font-size: 11px;
    }

    /* 板块通用规范 */
    .section-wrap {
      padding: 56px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .section-head-bar {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .section-head-bar .title-group h2 {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-head-bar .title-group p {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 6px;
    }

    /* 板块 1: 自测选型短问卷 Hero（蓝图变体） */
    .quiz-hero-section {
      padding: 48px 0 40px;
      background: radial-gradient(circle at 80% 20%, rgba(255, 46, 126, 0.08), transparent 50%),
                  radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.1), transparent 60%);
      border-bottom: 1px solid var(--border-color);
    }

    .quiz-hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: center;
    }

    .quiz-hero-content h1 {
      font-size: 34px;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #ffffff 60%, var(--text-muted));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .quiz-hero-content .lead-summary {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.7;
    }

    .interactive-quiz-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-card);
    }

    .quiz-step-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--accent-cyan);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .quiz-options-group {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 20px;
    }

    .quiz-btn-option {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      padding: 10px;
      font-size: 13px;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
    }

    .quiz-btn-option:hover, .quiz-btn-option.selected {
      background: rgba(255, 46, 126, 0.15);
      border-color: var(--primary);
      color: #fff;
    }

    .quiz-action-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--border-color);
    }

    .btn-start-match {
      flex: 1;
      height: 42px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      border-radius: var(--radius-md);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: var(--shadow-glow);
      transition: var(--transition);
    }

    .btn-start-match:hover {
      opacity: 0.92;
      transform: translateY(-2px);
    }

    .quiz-preview-box {
      background: var(--bg-card);
      border: 1px dashed var(--border-light);
      border-radius: var(--radius-md);
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .quiz-preview-thumb {
      width: 72px;
      height: 96px;
      border-radius: var(--radius-sm);
      object-fit: cover;
      flex-shrink: 0;
    }

    .quiz-preview-info h4 {
      font-size: 15px;
      color: #fff;
      margin-bottom: 4px;
    }

    .quiz-preview-info p {
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.5;
    }

    .quiz-preview-badge {
      display: inline-block;
      margin-top: 6px;
      padding: 2px 8px;
      background: rgba(0, 240, 255, 0.15);
      color: var(--accent-cyan);
      font-size: 11px;
      border-radius: var(--radius-full);
    }

    /* 板块 2: 多级高级筛选控制台 */
    .filter-console-section {
      background: #0e0f15;
      padding: 24px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .filter-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 12px;
    }

    .filter-row:last-child {
      margin-bottom: 0;
    }

    .filter-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dim);
      width: 64px;
      flex-shrink: 0;
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-tag-item {
      padding: 4px 12px;
      border-radius: var(--radius-full);
      font-size: 13px;
      color: var(--text-muted);
      background: transparent;
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-tag-item:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }

    .filter-tag-item.active {
      background: var(--primary);
      color: #fff;
      font-weight: 600;
    }

    /* 板块 3: 强档重磅置顶大卡片 */
    .featured-spotlight-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .spotlight-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
      box-shadow: var(--shadow-card);
    }

    .spotlight-card:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
    }

    .spotlight-media-wrap {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .spotlight-media-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .spotlight-card:hover .spotlight-media-wrap img {
      transform: scale(1.05);
    }

    .spotlight-overlay-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(6px);
      padding: 4px 8px;
      border-radius: var(--radius-sm);
      font-size: 11px;
      font-weight: 700;
      color: var(--accent-gold);
      border: 1px solid rgba(255, 153, 0, 0.4);
    }

    .spotlight-runtime-tag {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: rgba(0, 0, 0, 0.8);
      padding: 2px 8px;
      border-radius: var(--radius-sm);
      font-size: 11px;
      color: #fff;
    }

    .spotlight-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .spotlight-title {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .spotlight-meta-line {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 12px;
    }

    .spotlight-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      flex: 1;
    }

    .spotlight-btn-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      height: 38px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      transition: var(--transition);
    }

    .spotlight-btn-action:hover {
      background: var(--primary);
      border-color: var(--primary);
    }

    /* 板块 4: 主力内容高密度海报网格 (5列) */
    .movie-grid-5cols {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .movie-poster-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: var(--transition);
    }

    .movie-poster-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 46, 126, 0.5);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    }

    .movie-poster-media {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #181924;
    }

    .movie-poster-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .movie-poster-card:hover .movie-poster-media img {
      transform: scale(1.08);
    }

    .movie-badge-res {
      position: absolute;
      top: 8px;
      left: 8px;
      background: linear-gradient(90deg, #ff9900, #ff5e00);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 4px;
      letter-spacing: 0.5px;
    }

    .movie-badge-score {
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(4px);
      color: #ffcc00;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
    }

    .movie-hover-play {
      position: absolute;
      inset: 0;
      background: rgba(11, 12, 16, 0.65);
      backdrop-filter: blur(2px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--transition);
    }

    .movie-poster-card:hover .movie-hover-play {
      opacity: 1;
    }

    .play-circle-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      box-shadow: 0 0 16px var(--primary-glow);
    }

    .movie-info-body {
      padding: 12px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .movie-title-text {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }

    .movie-sub-info {
      font-size: 11px;
      color: var(--text-dim);
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .movie-tag-group {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
    }

    .movie-tag-pill {
      font-size: 10px;
      padding: 2px 6px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
      border-radius: 3px;
    }

    /* 分页控制器 */
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 36px;
    }

    .page-btn {
      min-width: 36px;
      height: 36px;
      padding: 0 12px;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      font-size: 13px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .page-btn:hover, .page-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    /* 板块 5: 剧场版特有技术指标比照 */
    .tech-specs-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .spec-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 20px;
      text-align: left;
    }

    .spec-icon-badge {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      background: rgba(0, 240, 255, 0.1);
      border: 1px solid rgba(0, 240, 255, 0.3);
      color: var(--accent-cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-bottom: 14px;
    }

    .spec-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .spec-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 板块 6: 完播榜单 Top 5 */
    .ranking-horizontal-list {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .ranking-item-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
    }

    .ranking-num {
      font-size: 24px;
      font-weight: 900;
      font-style: italic;
      line-height: 1;
      width: 24px;
      text-align: center;
    }

    .ranking-num.gold { color: #ff9900; }
    .ranking-num.silver { color: #c0c0c0; }
    .ranking-num.bronze { color: #cd7f32; }
    .ranking-num.normal { color: var(--text-dim); }

    .ranking-thumb {
      width: 48px;
      height: 64px;
      border-radius: 4px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .ranking-details {
      flex: 1;
      min-width: 0;
    }

    .ranking-details h5 {
      font-size: 13px;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }

    .ranking-metric {
      font-size: 11px;
      color: var(--accent-cyan);
    }

    /* 板块 7: 常见剧场版赏析指南 */
    .guide-faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .guide-qa-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 20px;
    }

    .guide-q {
      font-size: 15px;
      fontweight: 700;
      color: #fff;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .guide-q::before {
      content: "Q";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      background: rgba(255, 46, 126, 0.2);
      color: var(--primary);
      border-radius: 4px;
      font-size: 12px;
    }

    .guide-a {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 板块 8: 专属引导收尾卡 */
    .vip-cta-banner {
      background: linear-gradient(135deg, #1f1430, #131521 70%);
      border: 1px solid rgba(138, 43, 226, 0.35);
      border-radius: var(--radius-lg);
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-glow);
    }

    .vip-cta-content h3 {
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .vip-cta-content p {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 600px;
    }

    .vip-cta-btn-group {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .btn-glow-primary {
      padding: 12px 28px;
      border-radius: var(--radius-full);
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 4px 20px var(--primary-glow);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-glow-primary:hover {
      opacity: 0.95;
      transform: translateY(-2px);
    }

    .btn-outline-plain {
      padding: 12px 24px;
      border-radius: var(--radius-full);
      background: transparent;
      border: 1px solid var(--border-light);
      color: #fff;
      font-size: 14px;
      cursor: pointer;
    }

    .btn-outline-plain:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    /* 页脚设计 */
    .site-footer {
      background: #08090c;
      border-top: 1px solid var(--border-color);
      padding: 56px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-logo {
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-brand-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--text-dim);
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-dim);
    }

    /* 响应式适配 */
    @media (max-width: 1024px) {
      .movie-grid-5cols {
        grid-template-columns: repeat(3, 1fr);
      }
      .featured-spotlight-grid {
        grid-template-columns: 1fr;
      }
      .tech-specs-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .ranking-horizontal-list {
        grid-template-columns: repeat(2, 1fr);
      }
      .quiz-hero-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .header-top {
        height: 56px;
      }
      .search-bar {
        display: none;
      }
      .movie-grid-5cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .quiz-options-group {
        grid-template-columns: 1fr;
      }
      .guide-faq-grid {
        grid-template-columns: 1fr;
      }
      .ranking-horizontal-list {
        grid-template-columns: 1fr;
      }
      .vip-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
    }

/* roulang page: category4 */
:root {
      --bg-deep: #0b0c10;
      --bg-surface: #13141c;
      --bg-card: #1a1c26;
      --bg-card-hover: #222533;
      --primary: #ff2e7e;
      --primary-hover: #e0266e;
      --primary-glow: rgba(255, 46, 126, 0.35);
      --secondary: #8a2be2;
      --accent-gold: #ff9900;
      --accent-cyan: #00f0ff;
      --text-main: #f5f6fa;
      --text-muted: #a0a5b5;
      --text-dim: #6c7280;
      --border-color: rgba(255, 255, 255, 0.08);
      --border-light: rgba(255, 255, 255, 0.16);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 20px rgba(255, 46, 126, 0.25);
      --transition: all 0.25s ease-out;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    button, input {
      font-family: inherit;
      border: none;
      outline: none;
    }
    .container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 资讯门户吸顶导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .logo-box {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .logo-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: var(--radius-sm);
      color: #fff;
      font-size: 16px;
      box-shadow: var(--shadow-glow);
    }
    .search-bar {
      flex: 1;
      max-width: 480px;
      margin: 0 32px;
      position: relative;
    }
    .search-input {
      width: 100%;
      height: 38px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-full);
      padding: 0 44px 0 16px;
      color: #fff;
      font-size: 13px;
      transition: var(--transition);
    }
    .search-input:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--primary);
      box-shadow: 0 0 12px var(--primary-glow);
    }
    .search-btn {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 14px;
    }
    .header-user-ops {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 14px;
      color: var(--text-muted);
    }
    .header-user-ops a:hover {
      color: #fff;
    }
    .btn-vip-top {
      padding: 6px 14px;
      border-radius: var(--radius-full);
      background: linear-gradient(90deg, #ff9900, #ff5e00);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(255, 153, 0, 0.3);
    }
    .header-subnav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 44px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .header-subnav::-webkit-scrollbar { display: none; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      white-space: nowrap;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 4px 0;
      position: relative;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
    }
    .nav-links a.active::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
    }
    .hot-ticker {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .hot-badge {
      padding: 2px 6px;
      background: rgba(255, 46, 126, 0.15);
      border: 1px solid rgba(255, 46, 126, 0.3);
      color: var(--primary);
      border-radius: 4px;
      font-weight: 600;
      font-size: 11px;
    }

    /* 布局基础 */
    .section-spacing {
      padding: 60px 0;
      border-bottom: 1px solid var(--border-color);
    }
    .section-head-bar {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 28px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .section-title-wrap {
      max-width: 800px;
    }
    .section-badge-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      color: var(--accent-cyan);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }
    .section-main-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }
    .section-sub-text {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 6px;
      line-height: 1.6;
    }

    /* 板块 1: Hero 秒杀闪购条 + 专题控制台 */
    .topic-hero-panel {
      padding: 44px 0 36px;
      background: linear-gradient(180deg, rgba(26, 28, 38, 0.7) 0%, rgba(11, 12, 16, 0.95) 100%);
      border-bottom: 1px solid var(--border-color);
      position: relative;
    }
    .hero-flash-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 46, 126, 0.08);
      border: 1px solid rgba(255, 46, 126, 0.25);
      border-radius: var(--radius-md);
      padding: 14px 24px;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .flash-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .flash-pill {
      background: var(--primary);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: var(--radius-full);
      box-shadow: 0 0 10px var(--primary-glow);
    }
    .flash-timer-box {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .timer-digit {
      background: #000;
      color: var(--accent-gold);
      font-weight: 800;
      padding: 3px 8px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.1);
      font-family: monospace;
      font-size: 14px;
    }
    .flash-info-text {
      font-size: 13px;
      color: var(--text-main);
    }
    .flash-cta-btn {
      padding: 8px 18px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      border-radius: var(--radius-full);
      box-shadow: var(--shadow-glow);
    }
    .flash-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255, 46, 126, 0.4);
    }

    .topic-h1-area {
      margin-bottom: 24px;
    }
    .topic-h1-title {
      font-size: 36px;
      font-weight: 800;
      letter-spacing: -0.8px;
      color: #fff;
      margin-bottom: 12px;
    }
    .topic-h1-desc {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 900px;
      line-height: 1.7;
    }

    /* 多维筛选条 */
    .filter-deck {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 20px 24px;
    }
    .filter-row {
      display: flex;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
      gap: 16px;
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dim);
      min-width: 70px;
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-item {
      font-size: 13px;
      padding: 4px 12px;
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      background: transparent;
      cursor: pointer;
    }
    .filter-item:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-item.active {
      background: var(--primary);
      color: #fff;
      font-weight: 600;
    }

    /* 板块 2: 主力内容网格 - 专题卡片 */
    .topic-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .topic-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .topic-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 46, 126, 0.4);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    }
    .topic-poster-box {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #000;
    }
    .topic-poster-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .topic-card:hover .topic-poster-img {
      transform: scale(1.06);
    }
    .topic-badge-float {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(11, 12, 16, 0.85);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--accent-gold);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--radius-sm);
    }
    .topic-episodes-count {
      position: absolute;
      bottom: 10px;
      right: 12px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .topic-info-wrap {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .topic-card-title {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .topic-card-summary {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      flex: 1;
    }
    .topic-meta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 14px;
      font-size: 12px;
      color: var(--text-dim);
    }
    .topic-tags-inline {
      display: flex;
      gap: 6px;
    }
    .topic-tag-chip {
      background: rgba(255, 255, 255, 0.05);
      padding: 2px 6px;
      border-radius: 4px;
    }
    .topic-action-btn {
      color: var(--primary);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .topic-action-btn:hover {
      color: #fff;
    }

    .loadmore-wrap {
      text-align: center;
      margin-top: 36px;
    }
    .btn-loadmore {
      padding: 12px 36px;
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-full);
      color: var(--text-main);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-loadmore:hover {
      border-color: var(--primary);
      background: var(--bg-card-hover);
      box-shadow: 0 0 15px rgba(255, 46, 126, 0.2);
    }

    /* 板块 3: Bento Grid 强档推荐置顶 */
    .bento-grid-wrapper {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 24px;
    }
    .bento-big-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .bento-big-img-box {
      height: 320px;
      position: relative;
      overflow: hidden;
    }
    .bento-big-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .bento-big-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(19, 20, 28, 0.95) 100%);
    }
    .bento-big-body {
      padding: 24px 28px;
    }
    .bento-sub-stack {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .bento-sub-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 20px;
      display: flex;
      gap: 16px;
      align-items: center;
    }
    .bento-sub-thumb {
      width: 120px;
      height: 90px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }
    .bento-sub-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .bento-sub-detail h4 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .bento-sub-detail p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 板块 4: 二级标签与题材索引 */
    .tags-cloud-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 32px;
    }
    .tag-cloud-group {
      margin-bottom: 24px;
    }
    .tag-cloud-group:last-child {
      margin-bottom: 0;
    }
    .tag-group-heading {
      font-size: 14px;
      font-weight: 700;
      color: var(--accent-gold);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .tag-pills-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .cloud-pill {
      font-size: 13px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 6px 14px;
      border-radius: var(--radius-full);
      transition: var(--transition);
    }
    .cloud-pill:hover {
      color: #fff;
      border-color: var(--primary);
      background: rgba(255, 46, 126, 0.12);
      box-shadow: 0 0 10px rgba(255, 46, 126, 0.2);
    }
    .pill-count {
      font-size: 11px;
      color: var(--text-dim);
      margin-left: 4px;
    }

    /* 板块 5: 专题排行榜单 Top 5 */
    .ranking-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .ranking-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 16px 24px;
      transition: var(--transition);
    }
    .ranking-item:hover {
      border-color: var(--border-light);
      background: var(--bg-card);
    }
    .ranking-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .rank-num {
      font-size: 24px;
      font-weight: 900;
      font-style: italic;
      color: var(--text-dim);
      width: 32px;
      text-align: center;
    }
    .rank-num.top-1 { color: #ff2e7e; text-shadow: 0 0 10px rgba(255, 46, 126, 0.4); }
    .rank-num.top-2 { color: #ff9900; }
    .rank-num.top-3 { color: #00f0ff; }
    .rank-thumb {
      width: 72px;
      height: 48px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }
    .rank-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .rank-meta h4 {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }
    .rank-meta p {
      font-size: 12px;
      color: var(--text-muted);
    }
    .rank-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .rank-hot-bar {
      width: 140px;
      height: 6px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-full);
      overflow: hidden;
    }
    .rank-hot-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--accent-gold));
      border-radius: var(--radius-full);
    }
    .rank-score {
      font-size: 14px;
      font-weight: 800;
      color: var(--accent-gold);
      min-width: 48px;
      text-align: right;
    }

    /* 板块 6: 观影指南与画质规范 */
    .guide-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .guide-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .guide-icon-tag {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--accent-cyan);
    }
    .guide-box h4 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
    }
    .guide-box p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 板块 7: 深度解读与专题快讯 */
    .article-deck-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .article-mini-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .article-mini-card:hover {
      border-color: var(--border-light);
    }
    .article-mini-img {
      height: 150px;
      overflow: hidden;
    }
    .article-mini-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .article-mini-card:hover .article-mini-img img {
      transform: scale(1.05);
    }
    .article-mini-content {
      padding: 18px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .article-mini-content h4 {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      line-height: 1.45;
      margin-bottom: 8px;
    }
    .article-mini-content p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
      flex: 1;
    }
    .article-mini-meta {
      font-size: 12px;
      color: var(--text-dim);
      display: flex;
      justify-content: space-between;
    }

    /* 板块 8: 专属更新订阅卡 */
    .subscribe-banner-card {
      background: radial-gradient(circle at center right, rgba(138, 43, 226, 0.25), transparent 70%), var(--bg-surface);
      border: 1px solid rgba(255, 46, 126, 0.3);
      border-radius: var(--radius-lg);
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    .sub-banner-left {
      max-width: 650px;
    }
    .sub-banner-left h3 {
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .sub-banner-left p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .sub-input-row {
      display: flex;
      gap: 12px;
      min-width: 380px;
    }
    .sub-input-text {
      flex: 1;
      height: 44px;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
      padding: 0 16px;
      color: #fff;
      font-size: 13px;
    }
    .sub-input-text:focus {
      border-color: var(--primary);
    }
    .sub-submit-btn {
      height: 44px;
      padding: 0 24px;
      background: var(--primary);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      border-radius: var(--radius-sm);
      cursor: pointer;
      box-shadow: var(--shadow-glow);
    }
    .sub-submit-btn:hover {
      background: var(--primary-hover);
    }

    /* 页脚样式 */
    .site-footer {
      background: #08080c;
      border-top: 1px solid var(--border-color);
      padding: 60px 0 30px;
      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-col .footer-logo {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-brand-desc {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 12px;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      color: var(--text-muted);
      font-size: 13px;
    }
    .footer-links a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: var(--text-dim);
    }

    /* 响应式适配 */
    @media (max-width: 1024px) {
      .topic-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .bento-grid-wrapper {
        grid-template-columns: 1fr;
      }
      .guide-cards-grid,
      .article-deck-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .header-top {
        height: auto;
        padding: 12px 0;
        flex-wrap: wrap;
        gap: 12px;
      }
      .search-bar {
        order: 3;
        margin: 0;
        max-width: 100%;
        width: 100%;
      }
      .hero-flash-strip {
        flex-direction: column;
        align-items: flex-start;
      }
      .flash-cta-btn {
        width: 100%;
        text-align: center;
      }
      .topic-h1-title {
        font-size: 28px;
      }
      .topic-grid {
        grid-template-columns: 1fr;
      }
      .guide-cards-grid,
      .article-deck-grid {
        grid-template-columns: 1fr;
      }
      .subscribe-banner-card {
        flex-direction: column;
        align-items: stretch;
      }
      .sub-input-row {
        min-width: 100%;
        flex-direction: column;
      }
      .ranking-left {
        gap: 12px;
      }
      .rank-hot-bar {
        display: none;
      }
    }
