/* roulang page: index */
:root {
      --primary: #1E40AF;
      --primary-hover: #1D4ED8;
      --primary-light: #EFF6FF;
      --accent: #0284C7;
      --accent-neon: #38BDF8;
      --bg-main: #F8FAFC;
      --bg-sub: #F1F5F9;
      --bg-white: #FFFFFF;
      --text-main: #0F172A;
      --text-muted: #334155;
      --text-sub: #64748B;
      --border-color: #E2E8F0;
      --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
      --shadow-card: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 15px -3px rgba(30, 64, 175, 0.08);
      --shadow-hover: 0 12px 25px -4px rgba(30, 64, 175, 0.16);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
      background-color: var(--bg-main);
      color: var(--text-muted);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-gap {
      padding: 80px 0;
    }

    .section-header {
      margin-bottom: 48px;
    }

    .section-badge {
      display: inline-block;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      background-color: var(--primary-light);
      border-radius: var(--radius-full);
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.3;
      margin-bottom: 14px;
    }

    .section-desc {
      font-size: 16px;
      color: var(--text-sub);
      max-width: 680px;
      line-height: 1.7;
    }

    .text-center {
      text-align: center;
    }
    .text-center .section-desc {
      margin-left: auto;
      margin-right: auto;
    }

    /* 顶部导航 */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      height: 72px;
      transition: var(--transition);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.5px;
    }

    .brand-logo svg {
      width: 32px;
      height: 32px;
      fill: var(--primary);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: var(--radius-full);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
      border: none;
      cursor: pointer;
    }

    .btn-cta:hover {
      opacity: 0.95;
      transform: translateY(-1px);
      color: #fff;
    }

    .menu-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background-color: var(--bg-sub);
      border: 1px solid var(--border-color);
      cursor: pointer;
      color: var(--text-main);
      transition: var(--transition);
    }

    .menu-trigger:hover {
      background-color: #E2E8F0;
    }

    /* 全屏侧滑抽屉导航 */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(4px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .drawer-panel {
      position: fixed;
      top: 0;
      right: -420px;
      width: 420px;
      max-width: 100%;
      height: 100%;
      background: var(--bg-white);
      z-index: 2001;
      box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
      transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 32px 28px;
      overflow-y: auto;
    }

    .drawer-overlay.active .drawer-panel {
      right: 0;
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .drawer-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-sub);
      font-size: 26px;
      line-height: 1;
    }

    .drawer-search {
      position: relative;
      margin-bottom: 28px;
    }

    .drawer-search input {
      width: 100%;
      padding: 12px 16px;
      padding-left: 42px;
      background: var(--bg-sub);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      font-size: 14px;
      color: var(--text-main);
      outline: none;
    }

    .drawer-search svg {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      fill: var(--text-sub);
    }

    .drawer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 32px;
    }

    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      background: var(--bg-sub);
    }

    .drawer-nav-item a:hover,
    .drawer-nav-item.active a {
      background: var(--primary-light);
      color: var(--primary);
    }

    .drawer-footer-info {
      margin-top: auto;
      padding-top: 24px;
      border-top: 1px solid var(--border-color);
      font-size: 12px;
      color: var(--text-sub);
    }

    /* 板块1：Hero 杂志分栏首屏 */
    .hero-section {
      padding-top: 140px;
      padding-bottom: 70px;
      background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-main) 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: center;
    }

    .hero-h1 {
      font-size: 42px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero-h1 span {
      color: var(--primary);
      position: relative;
    }

    .hero-lead {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .hero-cta-group {
      display: flex;
      gap: 16px;
      margin-bottom: 36px;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 26px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-full);
      box-shadow: var(--shadow-sm);
    }

    .btn-secondary:hover {
      background: var(--bg-sub);
      color: var(--primary);
    }

    .hero-stats-strip {
      display: flex;
      gap: 36px;
      padding-top: 24px;
      border-top: 1px solid var(--border-color);
    }

    .stat-item-num {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-item-label {
      font-size: 13px;
      color: var(--text-sub);
    }

    /* Hero 右侧精选杂志卡片 */
    .hero-magazine-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 16px;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(226, 232, 240, 0.8);
      position: relative;
    }

    .magazine-media {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 16/10;
    }

    .magazine-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .magazine-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(15, 23, 42, 0.75);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: var(--radius-full);
      backdrop-filter: blur(4px);
    }

    .magazine-play-btn {
      position: absolute;
      bottom: 12px;
      right: 12px;
      width: 44px;
      height: 44px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .magazine-play-btn svg {
      width: 18px;
      height: 18px;
      fill: #fff;
      margin-left: 2px;
    }

    .magazine-meta {
      padding: 16px 8px 4px;
    }

    .magazine-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    .magazine-sub {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.5;
    }

    /* 板块2：功能分组区 */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .feature-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      transition: var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: var(--accent-neon);
    }

    .feature-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .feature-icon-box svg {
      width: 26px;
      height: 26px;
      fill: var(--primary);
    }

    .feature-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .feature-desc {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.65;
    }

    /* 板块3：多端使用场景区 */
    .scene-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .scene-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
    }

    .scene-card-header {
      padding: 24px;
      background: linear-gradient(180deg, var(--bg-sub) 0%, #FFFFFF 100%);
      border-bottom: 1px solid var(--border-color);
    }

    .scene-tag {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 6px;
      display: block;
    }

    .scene-card-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-main);
    }

    .scene-card-body {
      padding: 24px;
      flex-grow: 1;
    }

    .scene-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .scene-list li {
      font-size: 14px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .scene-list li svg {
      width: 16px;
      height: 16px;
      fill: var(--primary);
      flex-shrink: 0;
    }

    /* 板块4：播放器截图与界面演示 */
    .player-demo-container {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 20px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
    }

    .player-window {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: #000;
    }

    .player-poster {
      width: 100%;
      height: 480px;
      object-fit: cover;
      opacity: 0.88;
    }

    .player-controls-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0) 100%);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .player-progress-bar {
      height: 4px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 2px;
      position: relative;
      cursor: pointer;
    }

    .player-progress-fill {
      width: 68%;
      height: 100%;
      background: var(--accent-neon);
      border-radius: 2px;
    }

    .player-actions-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;
      font-size: 13px;
    }

    .player-spec-badges {
      display: flex;
      gap: 10px;
    }

    .spec-pill {
      background: rgba(255, 255, 255, 0.15);
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
    }

    /* 板块5：专属当季热播展位 */
    .anime-poster-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .anime-card {
      background: var(--bg-white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .anime-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }

    .anime-cover-box {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      background: var(--bg-sub);
    }

    .anime-cover-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .anime-card:hover .anime-cover-box img {
      transform: scale(1.05);
    }

    .anime-tag-score {
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(30, 64, 175, 0.85);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
    }

    .anime-tag-status {
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: rgba(15, 23, 42, 0.7);
      color: #fff;
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 4px;
    }

    .anime-info-box {
      padding: 14px 12px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .anime-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.4;
      margin-bottom: 4px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .anime-desc-text {
      font-size: 12px;
      color: var(--text-sub);
      line-height: 1.5;
    }

    /* 板块6：画质升级对比与引擎案例 */
    .compare-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .compare-box {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      position: relative;
    }

    .compare-tag {
      display: inline-block;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .compare-tag.standard {
      background: var(--bg-sub);
      color: var(--text-sub);
    }

    .compare-tag.pro {
      background: var(--primary);
      color: #fff;
    }

    .compare-heading {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
    }

    .compare-details-list {
      list-style: none;      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .compare-details-list li {
      font-size: 14px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* 板块7：影院会员特权与套餐价格 */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .pricing-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      position: relative;
      transition: var(--transition);
    }

    .pricing-card.featured {
      border: 2px solid var(--primary);
      transform: scale(1.03);
      box-shadow: var(--shadow-hover);
    }

    .pricing-badge-popular {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 16px;
      border-radius: var(--radius-full);
      box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
    }

    .pricing-plan-name {
      font-size: 20px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .pricing-price-wrap {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 20px;
    }

    .pricing-currency {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
    }

    .pricing-number {
      font-size: 38px;
      font-weight: 800;
      color: var(--text-main);
    }

    .pricing-period {
      font-size: 13px;
      color: var(--text-sub);
    }

    .pricing-features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 30px;
      flex-grow: 1;
    }

    .pricing-features-list li {
      font-size: 14px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pricing-features-list li svg {
      width: 16px;
      height: 16px;
      fill: var(--primary);
      flex-shrink: 0;
    }

    .btn-plan {
      width: 100%;
      text-align: center;
      padding: 12px;
      font-size: 14px;
      font-weight: 700;
      border-radius: var(--radius-full);
      background: var(--bg-sub);
      color: var(--text-main);
      border: 1px solid var(--border-color);
      transition: var(--transition);
    }

    .btn-plan:hover,
    .pricing-card.featured .btn-plan {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    /* 板块8：核心影迷评价墙 */
    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .review-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--primary);
      font-size: 16px;
    }

    .review-user-info {
      flex-grow: 1;
    }

    .review-username {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
    }

    .review-user-tag {
      font-size: 12px;
      color: var(--text-sub);
    }

    .review-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .review-rating-stars {
      color: #F59E0B;
      font-size: 14px;
      letter-spacing: 2px;
    }

    /* 板块9：片库口碑与数据仪表盘 */
    .dashboard-strip {
      background: linear-gradient(135deg, #1E40AF 0%, #0F172A 100%);
      border-radius: var(--radius-lg);
      padding: 48px 36px;
      color: #fff;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }

    .dashboard-data-num {
      font-size: 40px;
      font-weight: 800;
      color: var(--accent-neon);
      margin-bottom: 6px;
      line-height: 1;
    }

    .dashboard-data-label {
      font-size: 15px;
      font-weight: 600;
      color: #E2E8F0;
      margin-bottom: 4px;
    }

    .dashboard-data-desc {
      font-size: 12px;
      color: #94A3B8;
    }

    /* 板块10：影评与动漫文化资讯列表 */
    .article-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .article-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }

    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .article-cover {
      height: 180px;
      overflow: hidden;
    }

    .article-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .article-card:hover .article-cover img {
      transform: scale(1.05);
    }

    .article-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .article-date-tag {
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .article-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.45;
      margin-bottom: 8px;
    }

    .article-summary {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.6;
      margin-bottom: 16px;
      flex-grow: 1;
    }

    .article-link-action {
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* 板块11：观影常见问题解答 FAQ */
    .faq-container {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: var(--bg-white);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .faq-question {
      padding: 18px 24px;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }

    .faq-answer {
      padding: 0 24px 20px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 板块12：全平台开通与观影 CTA */
    .cta-banner-card {
      background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #0284C7 100%);
      border-radius: var(--radius-lg);
      padding: 56px 40px;
      color: #fff;
      text-align: center;
      box-shadow: 0 15px 30px rgba(30, 64, 175, 0.25);
    }

    .cta-banner-title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 14px;
      color: #fff;
    }

    .cta-banner-subtitle {
      font-size: 16px;
      color: #DBEAFE;
      max-width: 640px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    .cta-btn-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 36px;
      background: #fff;
      color: var(--primary);
      font-size: 15px;
      font-weight: 700;
      border-radius: var(--radius-full);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
      border: none;
      cursor: pointer;
    }

    .cta-btn-white:hover {
      background: #F8FAFC;
      transform: translateY(-2px);
      color: var(--primary-hover);
    }

    /* 全局统一页脚 */
    .site-footer {
      background: #0F172A;
      color: #94A3B8;
      padding: 64px 0 32px;
      font-size: 14px;
      border-top: 1px solid #1E293B;
    }

    .footer-top-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand-title {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-brand-desc {
      font-size: 13px;
      line-height: 1.7;
      color: #64748B;
      max-width: 320px;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #F8FAFC;
      margin-bottom: 18px;
    }

    .footer-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav-links a {
      color: #94A3B8;
      font-size: 13px;
    }

    .footer-nav-links a:hover {
      color: #38BDF8;
    }

    .footer-bottom-bar {
      padding-top: 32px;
      border-top: 1px solid #1E293B;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #64748B;
    }

    /* 响应式断点控制 */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .anime-poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
      .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .section-gap {
        padding: 56px 0;
      }
      .hero-section {
        padding-top: 100px;
        padding-bottom: 48px;
      }
      .hero-h1 {
        font-size: 30px;
      }
      .hero-stats-strip {
        flex-direction: column;
        gap: 16px;
      }
      .feature-grid,
      .scene-grid,
      .compare-wrapper,
      .pricing-grid,
      .review-grid,
      .article-grid {
        grid-template-columns: 1fr;
      }
      .anime-poster-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .pricing-card.featured {
        transform: none;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }

/* roulang page: category1 */
:root {
      --primary: #1E40AF;
      --primary-hover: #1D4ED8;
      --primary-light: #EFF6FF;
      --accent: #0284C7;
      --accent-neon: #38BDF8;
      --bg-main: #F8FAFC;
      --bg-sub: #F1F5F9;
      --bg-white: #FFFFFF;
      --text-main: #0F172A;
      --text-muted: #334155;
      --text-sub: #64748B;
      --border-color: #E2E8F0;
      --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
      --shadow-card: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 15px -3px rgba(30, 64, 175, 0.08);
      --shadow-hover: 0 12px 25px -4px rgba(30, 64, 175, 0.16);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
      background-color: var(--bg-main);
      color: var(--text-muted);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      margin: 0;
      padding-top: 72px;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--primary);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section-gap {
      padding: 72px 0;
    }
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      background-color: var(--primary-light);
      border-radius: var(--radius-full);
      margin-bottom: 12px;
      border: 1px solid rgba(30, 64, 175, 0.15);
    }
    .section-title {
      font-size: 30px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.3;
      margin-bottom: 14px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--text-sub);
      line-height: 1.7;
    }

    /* 顶部导航 Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.85);
      height: 72px;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.5px;
    }
    .brand-logo svg {
      width: 32px;
      height: 32px;
      fill: var(--primary);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: var(--radius-full);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
      border: none;
      cursor: pointer;
    }
    .btn-cta:hover {
      opacity: 0.95;
      transform: translateY(-1px);
      color: #fff;
      box-shadow: 0 6px 16px rgba(30, 64, 175, 0.35);
    }
    .menu-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background-color: var(--bg-sub);
      border: 1px solid var(--border-color);
      cursor: pointer;
      color: var(--text-main);
      transition: var(--transition);
    }
    .menu-trigger:hover {
      background-color: #E2E8F0;
    }

    /* 抽屉导航 Drawer */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.5);
      backdrop-filter: blur(4px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-panel {
      position: fixed;
      top: 0;
      right: -420px;
      width: 420px;
      max-width: 100%;
      height: 100%;
      background: var(--bg-white);
      z-index: 2001;
      box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
      transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 32px 28px;
      overflow-y: auto;
    }
    .drawer-overlay.active .drawer-panel {
      right: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }
    .drawer-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-sub);
      font-size: 28px;
      line-height: 1;
      padding: 4px;
    }
    .drawer-search {
      position: relative;
      margin-bottom: 24px;
    }
    .drawer-search input {
      width: 100%;
      padding: 12px 16px 12px 42px;
      background: var(--bg-sub);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      font-size: 14px;
      color: var(--text-main);
      outline: none;
    }
    .drawer-search svg {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      fill: var(--text-sub);
    }
    .drawer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0 0 28px 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 18px;
      border-radius: var(--radius-md);
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      background: var(--bg-sub);
      border: 1px solid transparent;
    }
    .drawer-nav-item a:hover,
    .drawer-nav-item.active a {
      background: var(--primary-light);
      color: var(--primary);
      border-color: rgba(30, 64, 175, 0.2);
    }
    .drawer-footer-info {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid var(--border-color);
      font-size: 12px;
      color: var(--text-sub);
    }

    /* 板块 1: 分类专栏 H1 引导区 */
    .cat-hero-banner {
      background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-sub) 100%);
      border-bottom: 1px solid var(--border-color);
      padding: 44px 0 36px 0;
    }
    .cat-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-sub);
      margin-bottom: 16px;
    }
    .cat-breadcrumb a:hover {
      color: var(--primary);
    }
    .cat-header-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 20px;
    }
    .cat-title-group h1 {
      font-size: 34px;
      font-weight: 800;
      color: var(--text-main);
      margin: 0 0 10px 0;
      letter-spacing: -0.5px;
    }
    .cat-subtitle {
      font-size: 15px;
      color: var(--text-sub);
      max-width: 640px;
      line-height: 1.6;
      margin: 0;
    }
    .cat-metrics-pill {
      display: flex;
      gap: 16px;
      background: var(--bg-white);
      padding: 12px 24px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .metric-item {
      display: flex;
      flex-direction: column;
    }
    .metric-num {
      font-size: 20px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1.2;
    }
    .metric-label {
      font-size: 12px;
      color: var(--text-sub);
    }

    /* 板块 2: 多维度智能检索矩阵 */
    .filter-section {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      padding: 24px 28px;
      margin-top: -24px;
      position: relative;
      z-index: 10;
    }
    .filter-group-row {
      display: flex;
      align-items: baseline;
      padding: 10px 0;
      border-bottom: 1px dashed #E2E8F0;
    }
    .filter-group-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 80px;
      flex-shrink: 0;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-main);
    }
    .filter-tags-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      flex-grow: 1;
    }
    .filter-tag {
      padding: 5px 14px;
      font-size: 13px;
      color: var(--text-muted);
      border-radius: var(--radius-full);
      background: var(--bg-sub);
      transition: var(--transition);
      cursor: pointer;
    }
    .filter-tag:hover {
      background: #E2E8F0;
      color: var(--primary);
    }
    .filter-tag.active {
      background: var(--primary);
      color: #FFFFFF;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
    }

    /* 板块 3: 本类热门聚焦轮播/宽卡片 */
    .spotlight-wrapper {
      background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
      color: #FFFFFF;
    }
    .spotlight-text-side {
      padding: 44px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .spotlight-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(56, 189, 248, 0.15);
      color: var(--accent-neon);
      border: 1px solid rgba(56, 189, 248, 0.3);
      padding: 4px 12px;
      font-size: 12px;
      border-radius: var(--radius-full);
      width: fit-content;
      margin-bottom: 16px;
      font-weight: 600;
    }
    .spotlight-title {
      font-size: 28px;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 14px;
      line-height: 1.3;
    }
    .spotlight-desc {
      font-size: 14px;
      line-height: 1.7;
      color: #CBD5E1;
      margin-bottom: 24px;
    }
    .spotlight-meta-list {
      display: flex;
      gap: 20px;
      font-size: 13px;
      color: #94A3B8;
      margin-bottom: 28px;
    }
    .spotlight-meta-list span strong {
      color: #FFFFFF;
    }
    .spotlight-actions {
      display: flex;
      gap: 14px;
      align-items: center;
    }
    .btn-play-hero {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
      color: #FFFFFF;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--radius-full);
      box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
    }
    .btn-play-hero:hover {
      transform: translateY(-2px);
      color: #FFFFFF;
      box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45);
    }
    .btn-fav-hero {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 11px 22px;
      background: rgba(255, 255, 255, 0.1);
      color: #FFFFFF;
      font-size: 14px;
      border-radius: var(--radius-full);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .btn-fav-hero:hover {
      background: rgba(255, 255, 255, 0.18);
      color: #FFFFFF;
    }
    .spotlight-img-side {
      position: relative;
      min-height: 320px;
      overflow: hidden;
    }
    .spotlight-img-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.6s ease;
    }
    .spotlight-wrapper:hover .spotlight-img-side img {
      transform: scale(1.04);
    }

    /* 板块 4: 分类片库网格主体 */
    .anime-grid-matrix {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .anime-poster-card {
      background: var(--bg-white);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .anime-poster-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(30, 64, 175, 0.3);
    }
    .poster-thumbnail-box {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background-color: #E2E8F0;
    }
    .poster-thumbnail-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .anime-poster-card:hover .poster-thumbnail-box img {
      transform: scale(1.06);
    }
    .poster-badge-quality {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(15, 23, 42, 0.78);
      backdrop-filter: blur(4px);
      color: #FFFFFF;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      letter-spacing: 0.5px;
    }
    .poster-badge-score {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(2, 132, 199, 0.9);
      color: #FFFFFF;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
    }
    .poster-badge-ep {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(15, 23, 42, 0.85);
      color: var(--accent-neon);
      font-size: 11px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 4px;
    }
    .poster-details-content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .poster-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin: 0 0 6px 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-card-tags {
      display: flex;
      gap: 6px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }
    .sub-tag {
      font-size: 11px;
      color: var(--text-sub);
      background: var(--bg-sub);
      padding: 2px 8px;
      border-radius: 4px;
    }
    .poster-card-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #F1F5F9;
      padding-top: 10px;
      font-size: 12px;
      color: var(--text-sub);
    }
    .btn-card-stream {
      color: var(--primary);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .btn-card-stream:hover {
      color: var(--accent);
    }

    /* 分页控件 Pagination */
    .pagination-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
    }
    .page-btn {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-md);
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition);
    }
    .page-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    .page-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #FFFFFF;
    }

    /* 板块 5: 新番放送排期日历 */
    .schedule-table-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }
    .schedule-days-header {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      background: var(--bg-sub);
      border-bottom: 1px solid var(--border-color);
      text-align: center;
    }
    .day-tab-btn {
      padding: 16px 8px;
      font-size: 14px;
      font-weight: 700;
      color: var(--text-muted);
      cursor: pointer;
      border: none;
      background: transparent;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .day-tab-btn:hover {
      background: rgba(30, 64, 175, 0.05);
      color: var(--primary);
    }
    .day-tab-btn.active {
      background: var(--bg-white);
      color: var(--primary);
      box-shadow: inset 0 3px 0 var(--primary);
    }
    .day-tab-sub {
      font-size: 11px;
      font-weight: 500;
      color: var(--text-sub);
    }
    .schedule-body-content {
      padding: 24px;
    }
    .schedule-shows-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .schedule-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px;
      background: var(--bg-sub);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      transition: var(--transition);
    }
    .schedule-item:hover {
      background: var(--bg-white);
      border-color: var(--primary);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }
    .schedule-time-badge {
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      background: var(--primary-light);
      padding: 6px 10px;
      border-radius: var(--radius-sm);
      white-space: nowrap;
    }
    .schedule-item-info {
      flex-grow: 1;
      overflow: hidden;
    }
    .schedule-item-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      margin: 0 0 4px 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .schedule-item-status {
      font-size: 12px;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* 板块 6: 分类专属高分排行榜 */
    .ranking-grid-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .rank-board-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-card);
      padding: 24px;
    }
    .rank-board-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-color);
    }
    .rank-board-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .rank-board-title svg {
      width: 20px;
      height: 20px;
      fill: var(--accent);
    }
    .rank-list-items {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .rank-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 12px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }
    .rank-row:hover {
      background: var(--bg-sub);
    }
    .rank-idx {
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-full);
      background: var(--bg-sub);
      font-size: 13px;
      font-weight: 800;
      color: var(--text-sub);
      flex-shrink: 0;
    }
    .rank-row:nth-child(1) .rank-idx {
      background: #EF4444;
      color: #FFFFFF;
    }
    .rank-row:nth-child(2) .rank-idx {
      background: #F97316;
      color: #FFFFFF;
    }
    .rank-row:nth-child(3) .rank-idx {
      background: #EAB308;
      color: #FFFFFF;
    }
    .rank-thumb-mini {
      width: 50px;
      height: 34px;
      border-radius: 4px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .rank-item-meta {
      flex-grow: 1;
      overflow: hidden;
    }
    .rank-item-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      margin: 0 0 2px 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-item-count {
      font-size: 12px;
      color: var(--text-sub);
    }
    .rank-score-val {
      font-size: 14px;
      font-weight: 800;
      color: var(--accent);
      flex-shrink: 0;
    }

    /* 板块 7: 相关专题导流板块 */
    .topics-slider-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .topic-feature-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 180px;
      box-shadow: var(--shadow-card);
      display: flex;
      align-items: flex-end;
      padding: 24px;
      color: #FFFFFF;
    }
    .topic-feature-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      transition: transform 0.5s ease;
    }
    .topic-feature-card:hover .topic-feature-bg {
      transform: scale(1.08);
    }
    .topic-feature-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.85) 100%);
      z-index: 2;
    }
    .topic-feature-content {
      position: relative;
      z-index: 3;
    }
    .topic-feature-title {
      font-size: 18px;
      font-weight: 800;
      color: #FFFFFF;
      margin: 0 0 6px 0;
    }
    .topic-feature-desc {
      font-size: 13px;
      color: #CBD5E1;
      margin: 0;
      line-height: 1.5;
    }

    /* 页脚 Footer */
    .site-footer {
      background-color: #0B1120;
      color: #94A3B8;
      padding: 64px 0 32px 0;
      border-top: 1px solid #1E293B;
      margin-top: 80px;
    }
    .footer-top-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }
    .footer-brand-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 16px;
    }
    .footer-brand-desc {
      font-size: 14px;
      line-height: 1.7;
      color: #64748B;
      max-width: 320px;
      margin: 0;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }
    .footer-nav-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-nav-links a {
      color: #64748B;
      font-size: 14px;
    }
    .footer-nav-links a:hover {
      color: var(--accent-neon);
      transform: translateX(3px);
    }
    .footer-bottom-bar {
      border-top: 1px solid #1E293B;
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
      color: #475569;
    }

    /* 响应式断点 */
    @media (max-width: 1024px) {
      .anime-grid-matrix {
        grid-template-columns: repeat(3, 1fr);
      }
      .schedule-shows-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
    }
    @media (max-width: 768px) {
      .spotlight-wrapper {
        grid-template-columns: 1fr;
      }
      .spotlight-text-side {
        padding: 32px 24px;
      }
      .anime-grid-matrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .ranking-grid-layout {
        grid-template-columns: 1fr;
      }
      .topics-slider-track {
        grid-template-columns: 1fr;
      }
      .schedule-shows-grid {
        grid-template-columns: 1fr;
      }
      .cat-title-group h1 {
        font-size: 26px;
      }
      .cat-metrics-pill {
        width: 100%;
        justify-content: space-around;
      }
      .schedule-days-header {
        overflow-x: auto;
        display: flex;
      }
      .day-tab-btn {
        min-width: 70px;
        flex-shrink: 0;
      }
    }
    @media (max-width: 480px) {
      .anime-grid-matrix {
        grid-template-columns: 1fr;
      }
      .filter-group-row {
        flex-direction: column;
        gap: 8px;
      }
      .filter-label {
        width: 100%;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
    }

/* roulang page: category2 */
:root {
      --primary: #1E40AF;
      --primary-hover: #1D4ED8;
      --primary-light: #EFF6FF;
      --accent: #0284C7;
      --accent-neon: #38BDF8;
      --bg-main: #F8FAFC;
      --bg-sub: #F1F5F9;
      --bg-white: #FFFFFF;
      --text-main: #0F172A;
      --text-muted: #334155;
      --text-sub: #64748B;
      --border-color: #E2E8F0;
      --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
      --shadow-card: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 15px -3px rgba(30, 64, 175, 0.08);
      --shadow-hover: 0 12px 25px -4px rgba(30, 64, 175, 0.16);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
      background-color: var(--bg-main);
      color: var(--text-muted);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section-gap {
      padding: 72px 0;
    }
    .section-header {
      margin-bottom: 36px;
    }
    .section-badge {
      display: inline-block;
      padding: 5px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      background-color: var(--primary-light);
      border-radius: var(--radius-full);
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .section-title {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.3;
      margin-bottom: 12px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--text-sub);
      max-width: 720px;
      line-height: 1.7;
    }

    /* 顶部固定导航 */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      height: 72px;
      transition: var(--transition);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.5px;
    }
    .brand-logo svg {
      width: 32px;
      height: 32px;
      fill: var(--primary);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: var(--radius-full);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
      border: none;
      cursor: pointer;
    }
    .btn-cta:hover {
      opacity: 0.95;
      transform: translateY(-1px);
      color: #fff;
    }
    .menu-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background-color: var(--bg-sub);
      border: 1px solid var(--border-color);
      cursor: pointer;
      color: var(--text-main);
      transition: var(--transition);
    }
    .menu-trigger:hover {
      background-color: #E2E8F0;
    }

    /* 全屏侧滑抽屉导航 */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(4px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-panel {
      position: fixed;
      top: 0;
      right: -420px;
      width: 420px;
      max-width: 100%;
      height: 100%;
      background: var(--bg-white);
      z-index: 2001;
      box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
      transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 32px 28px;
      overflow-y: auto;
    }
    .drawer-overlay.active .drawer-panel {
      right: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }
    .drawer-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-sub);
      font-size: 26px;
      line-height: 1;
    }
    .drawer-search {
      position: relative;
      margin-bottom: 28px;
    }
    .drawer-search input {
      width: 100%;
      padding: 12px 16px;
      padding-left: 42px;
      background: var(--bg-sub);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      font-size: 14px;
      color: var(--text-main);
      outline: none;
    }
    .drawer-search svg {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      fill: var(--text-sub);
    }
    .drawer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 32px;
      margin-left: 0;
    }
    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      background: var(--bg-sub);
    }
    .drawer-nav-item a:hover,
    .drawer-nav-item.active a {
      background: var(--primary-light);
      color: var(--primary);
    }
    .drawer-footer-info {
      margin-top: auto;
      padding-top: 24px;
      border-top: 1px solid var(--border-color);
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.6;
    }

    /* 分类专栏 H1 标头与面包屑 */
    .cat-header-hero {
      padding-top: 120px;
      padding-bottom: 40px;
      background: linear-gradient(180deg, #EFF6FF 0%, var(--bg-main) 100%);
      border-bottom: 1px solid var(--border-color);
    }
    .cat-breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-sub);
      margin-bottom: 16px;
    }
    .cat-breadcrumbs a:hover {
      color: var(--primary);
    }
    .cat-h1 {
      font-size: 34px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .cat-h1 .h1-tag {
      font-size: 14px;
      font-weight: 700;
      padding: 4px 12px;
      background: var(--accent);
      color: #fff;
      border-radius: var(--radius-full);
    }
    .cat-summary-box {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(226, 232, 240, 0.8);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .cat-summary-text {
      max-width: 800px;
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-muted);
      margin: 0;
    }
    .cat-stat-badge {
      display: flex;
      gap: 24px;
      border-left: 2px solid var(--border-color);
      padding-left: 24px;
    }
    .stat-item-num {
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      display: block;
      line-height: 1.2;
    }
    .stat-item-lbl {
      font-size: 12px;
      color: var(--text-sub);
    }

    /* 多维筛选矩阵 */
    .filter-section {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
      margin-bottom: 32px;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px dashed var(--border-color);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 80px;
      flex-shrink: 0;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-sub);
      padding-top: 5px;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-btn {
      display: inline-block;
      padding: 5px 14px;
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      background: var(--bg-sub);
      border: 1px solid transparent;
      transition: var(--transition);
      cursor: pointer;
    }
    .filter-btn:hover {
      color: var(--primary);
      background: var(--primary-light);
    }
    .filter-btn.active {
      background: var(--primary);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
    }

    /* 聚焦精选大卡展示 */
    .spotlight-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
      margin-bottom: 48px;
    }
    @media (min-width: 900px) {
      .spotlight-card {
        flex-direction: row;
        align-items: stretch;
      }
    }
    .spotlight-cover-wrapper {
      position: relative;
      flex: 1 1 52%;
      min-height: 320px;
      overflow: hidden;
    }
    .spotlight-cover-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .spotlight-card:hover .spotlight-cover-wrapper img {
      transform: scale(1.03);
    }
    .spotlight-badge {
      position: absolute;
      top: 18px;
      left: 18px;
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(8px);
      color: var(--accent-neon);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      border: 1px solid rgba(56, 189, 248, 0.3);
    }
    .spotlight-content {
      flex: 1 1 48%;
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--bg-white);
    }
    .spotlight-tag-row {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
    }
    .spotlight-tag {
      font-size: 12px;
      padding: 3px 10px;
      background: var(--primary-light);
      color: var(--primary);
      border-radius: 4px;
      font-weight: 600;
    }
    .spotlight-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .spotlight-meta {
      display: flex;
      gap: 16px;
      font-size: 13px;
      color: var(--text-sub);
      margin-bottom: 16px;
    }
    .spotlight-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .spotlight-action {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    /* 剧场版海报网格主体 */
    .anime-poster-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }
    @media (min-width: 640px) {
      .anime-poster-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
      }
    }
    @media (min-width: 1024px) {
      .anime-poster-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
      }
    }
    .poster-card {
      background: var(--bg-white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: #BFDBFE;
    }
    .poster-thumb-box {
      position: relative;
      aspect-ratio: 3 / 4.2;
      overflow: hidden;
      background: var(--bg-sub);
    }
    .poster-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-thumb-box img {
      transform: scale(1.05);
    }
    .poster-ribbon {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(15, 23, 42, 0.85);
      color: #38BDF8;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      backdrop-filter: blur(4px);
    }
    .poster-quality {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 4px;
    }
    .poster-score {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: #F59E0B;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 4px;
    }
    .poster-info {
      padding: 14px 12px 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .poster-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-sub {
      font-size: 12px;
      color: var(--text-sub);
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    .btn-play-quick {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      background: var(--primary-light);
      padding: 7px 0;
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }
    .poster-card:hover .btn-play-quick {
      background: var(--primary);
      color: #fff;
    }

    /* 分页导航控制器 */
    .pagination-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 36px;
      margin-bottom: 24px;
    }
    .page-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 14px;
      border-radius: var(--radius-md);
      font-size: 14px;
      font-weight: 600;
      background: var(--bg-white);
      color: var(--text-main);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .page-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    .page-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    /* 展映与修复排期表 */
    .schedule-panel {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      margin-bottom: 72px;
    }
    .schedule-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media (min-width: 768px) {
      .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (min-width: 1024px) {
      .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    .schedule-item {
      padding: 16px 20px;
      background: var(--bg-sub);
      border-radius: var(--radius-md);
      border-left: 4px solid var(--primary);
      transition: var(--transition);}
    .schedule-item:hover {
      background: var(--primary-light);
      transform: translateY(-2px);
    }
    .schedule-date {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 6px;
    }
    .schedule-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .schedule-specs {
      font-size: 12px;
      color: var(--text-sub);
    }

    /* 分类专属榜单与专栏导流板块 */
    .ranking-grid-section {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 64px;
    }
    @media (min-width: 900px) {
      .ranking-grid-section {
        grid-template-columns: 2fr 1fr;
      }
    }
    .ranking-card-box {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
    }
    .rank-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .rank-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 14px;
      border-radius: var(--radius-md);
      background: var(--bg-sub);
      transition: var(--transition);
    }
    .rank-item:hover {
      background: var(--primary-light);
    }
    .rank-num {
      font-size: 16px;
      font-weight: 800;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      background: #E2E8F0;
      color: var(--text-sub);
      flex-shrink: 0;
    }
    .rank-item:nth-child(1) .rank-num {
      background: #EF4444;
      color: #fff;
    }
    .rank-item:nth-child(2) .rank-num {
      background: #F97316;
      color: #fff;
    }
    .rank-item:nth-child(3) .rank-num {
      background: #F59E0B;
      color: #fff;
    }
    .rank-info {
      flex-grow: 1;
      min-width: 0;
    }
    .rank-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 2px;
    }
    .rank-meta {
      font-size: 12px;
      color: var(--text-sub);
    }
    .rank-score {
      font-size: 14px;
      font-weight: 800;
      color: var(--accent);
      flex-shrink: 0;
    }

    .feature-topics-box {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
    }
    .topic-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px;
      background: var(--bg-sub);
      border-radius: var(--radius-md);
      margin-bottom: 14px;
      transition: var(--transition);
    }
    .topic-card:last-child {
      margin-bottom: 0;
    }
    .topic-card:hover {
      background: var(--primary-light);
      transform: translateX(4px);
    }
    .topic-img {
      width: 72px;
      height: 72px;
      border-radius: var(--radius-sm);
      object-fit: cover;
      flex-shrink: 0;
    }
    .topic-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
      line-height: 1.4;
    }
    .topic-count {
      font-size: 12px;
      color: var(--accent);
    }

    /* 播放环境与视听体验参数 */
    .specs-banner {
      background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 50%, #0284C7 100%);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      color: #fff;
      margin-bottom: 72px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .specs-lead {
      max-width: 600px;
    }
    .specs-lead h3 {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .specs-lead p {
      font-size: 14px;
      color: #E2E8F0;
      line-height: 1.6;
      margin: 0;
    }
    .specs-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .spec-pill {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* 页脚统一样式 */
    .site-footer {
      background: #0B1329;
      color: #94A3B8;
      padding: 72px 0 32px;
      border-top: 1px solid #1E293B;
    }
    .footer-top-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }
    @media (min-width: 768px) {
      .footer-top-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
      }
    }
    .footer-brand-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 16px;
    }
    .footer-brand-desc {
      font-size: 14px;
      line-height: 1.7;
      color: #64748B;
      max-width: 320px;
    }
    .footer-col-title {
      font-size: 16px;
      font-weight: 700;
      color: #F8FAFC;
      margin-bottom: 18px;
    }
    .footer-nav-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-nav-links a {
      font-size: 14px;
      color: #94A3B8;
    }
    .footer-nav-links a:hover {
      color: var(--accent-neon);
      transform: translateX(4px);
    }
    .footer-bottom-bar {
      border-top: 1px solid #1E293B;
      padding-top: 28px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 13px;
      color: #64748B;
    }

/* roulang page: category3 */
:root {
      --primary: #1E40AF;
      --primary-hover: #1D4ED8;
      --primary-light: #EFF6FF;
      --accent: #0284C7;
      --accent-neon: #38BDF8;
      --bg-main: #F8FAFC;
      --bg-sub: #F1F5F9;
      --bg-white: #FFFFFF;
      --text-main: #0F172A;
      --text-muted: #334155;
      --text-sub: #64748B;
      --border-color: #E2E8F0;
      --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
      --shadow-card: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 15px -3px rgba(30, 64, 175, 0.08);
      --shadow-hover: 0 12px 25px -4px rgba(30, 64, 175, 0.16);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
      background-color: var(--bg-main);
      color: var(--text-muted);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-gap {
      padding: 72px 0;
    }

    .section-header {
      margin-bottom: 40px;
    }

    .section-badge {
      display: inline-block;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      background-color: var(--primary-light);
      border-radius: var(--radius-full);
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    .section-title {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.35;
      margin-bottom: 12px;
    }

    .section-desc {
      font-size: 15px;
      color: var(--text-sub);
      max-width: 680px;
      line-height: 1.7;
    }

    /* 顶部导航 */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      height: 72px;
      transition: var(--transition);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.5px;
    }

    .brand-logo svg {
      width: 32px;
      height: 32px;
      fill: var(--primary);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: var(--radius-full);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
      border: none;
      cursor: pointer;
    }

    .btn-cta:hover {
      opacity: 0.95;
      transform: translateY(-1px);
      color: #fff;
    }

    .menu-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background-color: var(--bg-sub);
      border: 1px solid var(--border-color);
      cursor: pointer;
      color: var(--text-main);
      transition: var(--transition);
    }

    .menu-trigger:hover {
      background-color: #E2E8F0;
    }

    /* 全屏侧滑抽屉导航 */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(4px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .drawer-panel {
      position: fixed;
      top: 0;
      right: -420px;
      width: 420px;
      max-width: 100%;
      height: 100%;
      background: var(--bg-white);
      z-index: 2001;
      box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
      transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 32px 28px;
      overflow-y: auto;
    }

    .drawer-overlay.active .drawer-panel {
      right: 0;
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .drawer-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-sub);
      font-size: 26px;
      line-height: 1;
    }

    .drawer-search {
      position: relative;
      margin-bottom: 24px;
    }

    .drawer-search input {
      width: 100%;
      padding: 12px 16px;
      padding-left: 42px;
      background: var(--bg-sub);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      font-size: 14px;
      color: var(--text-main);
      outline: none;
    }

    .drawer-search svg {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      fill: var(--text-sub);
    }

    .drawer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      background: var(--bg-sub);
    }

    .drawer-nav-item a:hover,
    .drawer-nav-item.active a {
      background: var(--primary-light);
      color: var(--primary);
    }

    .drawer-footer-info {
      margin-top: auto;
      padding-top: 24px;
      border-top: 1px solid var(--border-color);
      font-size: 13px;
      color: var(--text-sub);
    }

    /* 页面主体内容间距与板块定制 */
    .page-wrapper {
      padding-top: 72px;
    }

    /* 板块 1: 分类专栏 H1 标头引导区 */
    .category-hero-header {
      background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
      padding: 48px 0 40px;
      border-bottom: 1px solid var(--border-color);
    }

    .breadcrumb-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-sub);
      margin-bottom: 18px;
    }

    .breadcrumb-nav a:hover {
      color: var(--primary);
    }

    .breadcrumb-separator {
      color: #CBD5E1;
    }

    .category-h1-row {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
    }

    .category-title-block h1 {
      font-size: 34px;
      font-weight: 900;
      color: var(--text-main);
      line-height: 1.25;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .category-subtitle {
      font-size: 16px;
      color: var(--text-sub);
      max-width: 720px;
      line-height: 1.7;
    }

    .header-score-stats {
      display: flex;
      gap: 16px;
    }

    .stat-badge-box {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 12px 18px;
      box-shadow: var(--shadow-sm);
      text-align: center;
    }

    .stat-badge-num {
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-badge-text {
      font-size: 12px;
      color: var(--text-sub);
      font-weight: 500;
    }

    /* 板块 2: 多维智能筛选矩阵 */
    .filter-matrix-section {
      background: var(--bg-white);
      padding: 24px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .filter-card-wrap {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .filter-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .filter-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-sub);
      min-width: 68px;
    }

    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-pill {
      display: inline-block;
      padding: 6px 14px;
      font-size: 13px;
      border-radius: var(--radius-full);
      color: var(--text-muted);
      background: var(--bg-sub);
      transition: var(--transition);
      cursor: pointer;
    }

    .filter-pill:hover,
    .filter-pill.active {
      background: var(--primary);
      color: #FFFFFF;
      box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
    }

    /* 板块 3: 榜首热推宽幅精选展台 */
    .spotlight-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      display: grid;
      grid-template-columns: 460px 1fr;
      transition: var(--transition);
    }

    .spotlight-card:hover {
      box-shadow: var(--shadow-hover);
    }

    .spotlight-media {
      position: relative;
      overflow: hidden;
      min-height: 320px;
    }

    .spotlight-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .spotlight-card:hover .spotlight-media img {
      transform: scale(1.04);
    }

    .spotlight-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
      color: #FFFFFF;
      font-size: 12px;
      font-weight: 800;
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 10px rgba(190, 18, 60, 0.35);
    }

    .spotlight-content {
      padding: 36px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .spotlight-meta-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .rating-badge-gold {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #FEF3C7;
      color: #B45309;
      font-weight: 800;
      font-size: 14px;
      padding: 4px 10px;
      border-radius: var(--radius-sm);
    }

    .tag-blue {
      background: var(--primary-light);
      color: var(--primary);
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: var(--radius-sm);
    }

    .spotlight-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .spotlight-desc {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .spotlight-specs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      padding-top: 20px;
      border-top: 1px solid var(--border-color);
      margin-bottom: 24px;
    }

    .spec-item-title {
      font-size: 12px;
      color: var(--text-sub);
      margin-bottom: 4px;
    }

    .spec-item-value {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
    }

    .spotlight-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-play-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      background: var(--primary);
      color: #FFFFFF;
      font-weight: 700;
      font-size: 14px;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 14px rgba(30, 64, 175, 0.28);
    }

    .btn-play-primary:hover {
      background: var(--primary-hover);
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    .btn-outline-sub {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 12px 22px;
      background: var(--bg-sub);
      color: var(--text-main);
      font-weight: 600;
      font-size: 14px;
      border-radius: var(--radius-full);
      border: 1px solid var(--border-color);
    }

    .btn-outline-sub:hover {
      background: #E2E8F0;
    }

    /* 板块 4: 分类片库网格主体 */
    .anime-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .anime-card {
      background: var(--bg-white);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .anime-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: #CBD5E1;
    }

    .anime-thumb-wrapper {
      position: relative;
      width: 100%;
      height: 240px;
      overflow: hidden;
      background: #1E293B;
    }

    .anime-thumb-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .anime-card:hover .anime-thumb-wrapper img {
      transform: scale(1.06);
    }

    .card-top-rank {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(4px);
      color: #FFFFFF;
      font-size: 12px;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 4px;
      border-left: 3px solid var(--accent-neon);
    }

    .card-score-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #F59E0B;
      color: #FFFFFF;
      font-size: 12px;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    }

    .card-resolution-badge {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(15, 23, 42, 0.78);
      color: var(--accent-neon);
      font-size: 11px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      letter-spacing: 0.5px;
    }

    .anime-card-body {
      padding: 16px 18px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .anime-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .anime-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .anime-tag {
      font-size: 11px;
      padding: 2px 7px;
      border-radius: 4px;
      background: var(--bg-sub);
      color: var(--text-sub);
    }

    .anime-card-synopsis {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.6;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex-grow: 1;
    }

    .anime-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 12px;
      border-top: 1px solid var(--border-color);
      font-size: 12px;
      color: var(--text-sub);
    }

    .card-play-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--primary);
      font-weight: 700;
      font-size: 12px;
    }

    .card-play-link:hover {
      color: var(--accent);
    }

    /* 单一翻页组件 */
    .pagination-wrapper {
      margin-top: 48px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }

    .page-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      transition: var(--transition);
    }

    .page-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .page-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #FFFFFF;
      box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
    }

    /* 板块 5: 神作周度评分榜与口碑风向 */
    .ranking-leaderboard-section {
      background: var(--bg-white);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .ranking-grid-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .rank-board-card {
      background: var(--bg-sub);
      border-radius: var(--radius-lg);
      padding: 28px;
      border: 1px solid var(--border-color);
    }

    .board-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .board-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .board-time-tag {
      font-size: 12px;
      color: var(--text-sub);
      background: #FFFFFF;
      padding: 4px 10px;
      border-radius: var(--radius-full);
      border: 1px solid var(--border-color);
    }

    .board-item-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .board-item-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 14px;
      background: #FFFFFF;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      transition: var(--transition);
    }

    .board-item-row:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow-sm);
      border-color: #CBD5E1;
    }

    .board-index {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 800;
      background: var(--bg-sub);
      color: var(--text-sub);
      flex-shrink: 0;
    }

    .board-item-row:nth-child(1) .board-index {
      background: #FEE2E2;
      color: #DC2626;
    }

    .board-item-row:nth-child(2) .board-index {
      background: #FFEDD5;
      color: #EA580C;
    }

    .board-item-row:nth-child(3) .board-index {
      background: #FEF3C7;
      color: #D97706;
    }

    .board-anime-meta {
      flex-grow: 1;
      min-width: 0;
    }

    .board-anime-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 3px;
    }

    .board-anime-sub {
      font-size: 12px;
      color: var(--text-sub);
    }

    .board-score-val {
      font-size: 15px;
      font-weight: 800;
      color: #EA580C;
      margin-left: auto;
      flex-shrink: 0;
    }

    /* 板块 6: 殿堂级评审维度解析 */
    .eval-criteria-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .criteria-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 28px 22px;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      position: relative;
    }

    .criteria-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .criteria-icon-box {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 18px;
    }

    .criteria-icon-box svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    .criteria-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .criteria-desc {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.7;
    }

    /* 板块 7: 深度番剧影评专栏集 */
    .articles-preview-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .article-post-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .article-post-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .article-img-box {
      width: 100%;
      height: 180px;
      overflow: hidden;
      position: relative;
    }

    .article-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .article-post-card:hover .article-img-box img {
      transform: scale(1.05);
    }

    .article-card-info {
      padding: 22px 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .article-meta-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: var(--text-sub);
      margin-bottom: 10px;
    }

    .article-heading {
      font-size: 16px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .article-excerpt {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.7;
      margin-bottom: 18px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex-grow: 1;
    }

    .article-view-more {
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* 板块 8: 观影疑问与画质解码 FAQ */
    .faq-accordion-box {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 12px 24px;
      box-shadow: var(--shadow-card);
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item-row {
      padding: 20px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .faq-item-row:last-child {
      border-bottom: none;
    }

    .faq-question-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      line-height: 1.4;
    }

    .faq-answer-content {
      margin-top: 10px;
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.8;
    }

    /* 页脚组件统一 */
    .site-footer {
      background: #0B1120;
      color: #94A3B8;
      padding: 64px 0 32px;
      border-top: 1px solid #1E293B;
    }

    .footer-top-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 16px;
    }

    .footer-brand-desc {
      font-size: 14px;
      line-height: 1.8;
      color: #64748B;
      max-width: 340px;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #F8FAFC;
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }

    .footer-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav-links a {
      font-size: 14px;
      color: #94A3B8;
    }

    .footer-nav-links a:hover {
      color: #38BDF8;
      padding-left: 4px;
    }

    .footer-bottom-bar {
      padding-top: 28px;
      border-top: 1px solid #1E293B;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: #475569;
      flex-wrap: wrap;
      gap: 16px;
    }

    /* 响应式媒体查询适配 */
    @media (max-width: 1024px) {
      .spotlight-card {
        grid-template-columns: 1fr;
      }
      .spotlight-media {
        height: 280px;
        min-height: auto;
      }
      .anime-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .ranking-grid-layout {
        grid-template-columns: 1fr;
      }
      .eval-criteria-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
    }

    @media (max-width: 768px) {
      .section-gap {
        padding: 52px 0;
      }
      .anime-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
      .anime-thumb-wrapper {
        height: 180px;
      }
      .articles-preview-grid {
        grid-template-columns: 1fr;
      }
      .spotlight-content {
        padding: 24px;
      }
      .spotlight-title {
        font-size: 20px;
      }
      .category-title-block h1 {
        font-size: 26px;
      }
      .drawer-panel {
        width: 100%;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .anime-grid {
        grid-template-columns: 1fr;
      }
      .header-score-stats {
        width: 100%;
        justify-content: space-between;
      }
      .stat-badge-box {
        flex: 1;
      }
      .spotlight-specs {
        grid-template-columns: 1fr;
      }
    }

/* roulang page: category4 */
:root {
      --primary: #1E40AF;
      --primary-hover: #1D4ED8;
      --primary-light: #EFF6FF;
      --accent: #0284C7;
      --accent-neon: #38BDF8;
      --bg-main: #F8FAFC;
      --bg-sub: #F1F5F9;
      --bg-white: #FFFFFF;
      --text-main: #0F172A;
      --text-muted: #334155;
      --text-sub: #64748B;
      --border-color: #E2E8F0;
      --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
      --shadow-card: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 15px -3px rgba(30, 64, 175, 0.08);
      --shadow-hover: 0 12px 25px -4px rgba(30, 64, 175, 0.16);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
      background-color: var(--bg-main);
      color: var(--text-muted);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section-gap {
      padding: 72px 0;
    }
    .section-header {
      margin-bottom: 36px;
    }
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      background-color: var(--primary-light);
      border-radius: var(--radius-full);
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .section-title {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.35;
      margin-bottom: 10px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--text-sub);
      max-width: 720px;
      line-height: 1.7;
    }
    
    /* 顶部导航 */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.85);
      height: 72px;
      transition: var(--transition);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.5px;
    }
    .brand-logo svg {
      width: 32px;
      height: 32px;
      fill: var(--primary);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: var(--radius-full);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
      border: none;
      cursor: pointer;
    }
    .btn-cta:hover {
      opacity: 0.95;
      transform: translateY(-1px);
      color: #fff;
    }
    .menu-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background-color: var(--bg-sub);
      border: 1px solid var(--border-color);
      cursor: pointer;
      color: var(--text-main);
      transition: var(--transition);
    }
    .menu-trigger:hover {
      background-color: #E2E8F0;
    }

    /* 全屏侧滑抽屉导航 */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(4px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-panel {
      position: fixed;
      top: 0;
      right: -420px;
      width: 420px;
      max-width: 100%;
      height: 100%;
      background: var(--bg-white);
      z-index: 2001;
      box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
      transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 32px 28px;
      overflow-y: auto;
    }
    .drawer-overlay.active .drawer-panel {
      right: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }
    .drawer-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-sub);
      font-size: 26px;
      line-height: 1;
    }
    .drawer-search {
      position: relative;
      margin-bottom: 24px;
    }
    .drawer-search input {
      width: 100%;
      padding: 12px 16px;
      padding-left: 42px;
      background: var(--bg-sub);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      font-size: 14px;
      color: var(--text-main);
      outline: none;
      box-shadow: none;
      margin: 0;
    }
    .drawer-search svg {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      fill: var(--text-sub);
    }
    .drawer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 0 0 28px 0;
      padding: 0;
    }
    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      background: var(--bg-sub);
    }
    .drawer-nav-item a:hover,
    .drawer-nav-item.active a {
      background: var(--primary-light);
      color: var(--primary);
    }
    .drawer-footer-info {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid var(--border-color);
      font-size: 13px;
      color: var(--text-sub);
    }

    /* 板块 1: 路线图预告式 Hero */
    .hero-roadmap-wrapper {
      padding-top: 112px;
      padding-bottom: 48px;
      background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
      border-bottom: 1px solid var(--border-color);
    }
    .breadcrumb-nav {
      font-size: 13px;
      color: var(--text-sub);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .breadcrumb-nav a {
      color: var(--text-muted);
    }
    .breadcrumb-nav a:hover {
      color: var(--primary);
    }
    .hero-h1 {
      font-size: 34px;
      font-weight: 900;
      color: var(--text-main);
      letter-spacing: -0.5px;
      line-height: 1.3;
      margin-bottom: 14px;
    }
    .hero-lead-text {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 820px;
      line-height: 1.75;
      margin-bottom: 32px;
    }
    .roadmap-timeline-box {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      box-shadow: var(--shadow-card);
      margin-bottom: 28px;
    }
    .timeline-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .timeline-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .timeline-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      position: relative;
    }
    .timeline-node {
      position: relative;
      padding: 16px;
      background: var(--bg-sub);
      border-radius: var(--radius-md);
      border-top: 4px solid var(--border-color);
    }
    .timeline-node.active {
      background: #EFF6FF;
      border-top-color: var(--primary);
    }
    .timeline-node.future {
      border-top-color: var(--accent-neon);
    }
    .timeline-node-version {
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .timeline-node-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
    }
    .timeline-node-detail {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.5;
    }
    .roadmap-action-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      background: var(--bg-white);
      border: 1px dashed #CBD5E1;
      padding: 16px 24px;
      border-radius: var(--radius-md);
    }
    .subscribe-box {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      max-width: 520px;
    }
    .subscribe-input {
      background: var(--bg-sub);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 10px 14px;
      font-size: 14px;
      outline: none;
      width: 100%;
      margin: 0;
      box-shadow: none;
    }
    .subscribe-btn {
      white-space: nowrap;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      background: var(--text-main);
      color: #fff;
      border-radius: var(--radius-md);
      border: none;
      cursor: pointer;
      transition: var(--transition);
    }
    .subscribe-btn:hover {
      background: var(--primary);
    }

    /* 板块 2: 多维度智能检索矩阵 */
    .filter-matrix-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      box-shadow: var(--shadow-sm);
      margin-top: -24px;
      position: relative;
      z-index: 10;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px dashed #E2E8F0;
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-row:first-child {
      padding-top: 0;
    }
    .filter-label {
      width: 90px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-sub);
      padding-top: 4px;
      flex-shrink: 0;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      flex: 1;
    }
    .filter-tag {
      font-size: 13px;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-tag:hover {
      color: var(--primary);
      background: var(--primary-light);
    }
    .filter-tag.active {
      background: var(--primary);
      color: #FFFFFF;
      font-weight: 600;
    }

    /* 板块 3: 4K旗舰宽卡片轮播精选 */
    .featured-cinema-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      display: grid;
      grid-template-columns: 55% 45%;
      align-items: stretch;
    }
    .cinema-banner-media {
      position: relative;
      overflow: hidden;
      min-height: 380px;
      background-color: #0F172A;
    }
    .cinema-banner-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .featured-cinema-card:hover .cinema-banner-media img {
      transform: scale(1.03);
    }
    .badge-resolution-float {
      position: absolute;
      top: 18px;
      left: 18px;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(56, 189, 248, 0.4);
      backdrop-filter: blur(8px);
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .badge-tag-text {
      font-size: 11px;
      font-weight: 800;
      color: var(--accent-neon);
      letter-spacing: 0.5px;
    }
    .cinema-banner-content {
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .featured-meta-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .quality-pill {
      font-size: 12px;
      font-weight: 700;
      background: #DCFCE7;
      color: #166534;
      padding: 2px 8px;
      border-radius: 4px;
    }
    .fps-pill {
      font-size: 12px;
      font-weight: 700;
      background: #E0F2FE;
      color: #0369A1;
      padding: 2px 8px;
      border-radius: 4px;
    }
    .cinema-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.35;
      margin-bottom: 14px;
    }
    .cinema-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .tech-specs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      padding: 16px;
      background: var(--bg-sub);
      border-radius: var(--radius-md);
      margin-bottom: 28px;
    }
    .tech-spec-item {
      text-align: center;
    }
    .tech-spec-label {
      font-size: 11px;
      color: var(--text-sub);
      margin-bottom: 2px;
    }
    .tech-spec-val {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
    }
    .btn-play-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 28px;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: var(--radius-full);
      box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
      width: fit-content;
    }
    .btn-play-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
      color: #fff;
    }

    /* 板块 4: 分类片库网格主体 */
    .anime-poster-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 22px;
    }
    .poster-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
position: relative;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: #CBD5E1;
    }
    .poster-thumb-box {
      position: relative;
      aspect-ratio: 3 / 4.2;
      overflow: hidden;
      background-color: #0F172A;
    }
    .poster-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-thumb-box img {
      transform: scale(1.06);
    }
    .poster-badge-top {
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(15, 23, 42, 0.85);
      color: var(--accent-neon);
      font-size: 11px;
      font-weight: 800;
      padding: 3px 7px;
      border-radius: 4px;
      letter-spacing: 0.5px;
      backdrop-filter: blur(4px);
    }
    .poster-rating {
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: rgba(30, 64, 175, 0.9);
      color: #FFFFFF;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
    }
    .poster-info {
      padding: 14px 12px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .poster-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 6px;
    }
    .poster-sub {
      font-size: 12px;
      color: var(--text-sub);
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    .poster-tech-tags {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
      margin-top: auto;
    }
    .mini-tech-tag {
      font-size: 10px;
      color: var(--accent);
      background: #F0F9FF;
      border: 1px solid #BAE6FD;
      padding: 1px 5px;
      border-radius: 3px;
    }
    
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 48px;
    }
    .page-num {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-color);
      background: var(--bg-white);
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 600;
    }
    .page-num:hover,
    .page-num.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    /* 板块 5: 蓝光原盘排期日历 */
    .schedule-table-wrap {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-card);
      overflow-x: auto;
    }
    .schedule-grid-week {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 12px;
      min-width: 860px;
    }
    .week-col {
      background: var(--bg-sub);
      border-radius: var(--radius-md);
      padding: 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .week-col.today {
      background: #EFF6FF;
      border: 1px solid #BFDBFE;
    }
    .week-name {
      font-size: 14px;
      font-weight: 800;
      color: var(--text-main);
      text-align: center;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border-color);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4px;
    }
    .week-name .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }
    .week-item {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      padding: 10px 8px;
      font-size: 12px;
    }
    .week-item-title {
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .week-item-ep {
      color: var(--primary);
      font-weight: 600;
      font-size: 11px;
    }

    /* 板块 6: 4K高分神作画质榜单 */
    .ranking-section-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .rank-column-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      box-shadow: var(--shadow-card);
    }
    .rank-header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 16px;
      margin-bottom: 16px;
      border-bottom: 1px solid var(--border-color);
    }
    .rank-column-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .rank-list-items {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .rank-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 8px 10px;
      border-radius: var(--radius-md);
      transition: var(--transition);
    }
    .rank-item:hover {
      background: var(--bg-sub);
    }
    .rank-index {
      width: 28px;
      height: 28px;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 800;
      color: var(--text-sub);
      background: var(--bg-sub);
      flex-shrink: 0;
    }
    .rank-index.top1 {
      background: #FEF3C7;
      color: #B45309;
    }
    .rank-index.top2 {
      background: #E0E7FF;
      color: #3730A3;
    }
    .rank-index.top3 {
      background: #FFEDD5;
      color: #C2410C;
    }
    .rank-thumb {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      object-fit: cover;
      flex-shrink: 0;
    }
    .rank-title-group {
      flex: 1;
      min-width: 0;
    }
    .rank-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 2px;
    }
    .rank-meta {
      font-size: 12px;
      color: var(--text-sub);
    }
    .rank-score {
      font-size: 15px;
      font-weight: 800;
      color: var(--accent);
      flex-shrink: 0;
    }

    /* 板块 7: 相关画质调优与音画专栏 */
    .topics-horizontal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .topic-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .topic-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
    }
    .topic-img-holder {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    .topic-img-holder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .topic-card:hover .topic-img-holder img {
      transform: scale(1.05);
    }
    .topic-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .topic-tag {
      font-size: 11px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .topic-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.4;
      margin-bottom: 8px;
    }
    .topic-excerpt {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .topic-link-action {
      margin-top: auto;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .topic-link-action:hover {
      color: var(--primary-hover);
    }

    /* 板块 8: 4K全生态流媒体终端接入卡片 */
    .stream-spec-banner {
      background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      color: #FFFFFF;
      box-shadow: var(--shadow-hover);
    }
    .stream-spec-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 36px auto;
    }
    .stream-spec-title {
      font-size: 26px;
      font-weight: 800;
      color: #F8FAFC;
      margin-bottom: 12px;
    }
    .stream-spec-subtitle {
      font-size: 14px;
      color: #94A3B8;
      line-height: 1.65;
    }
    .stream-features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 36px;
    }
    .stream-feature-box {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-md);
      padding: 20px;
      text-align: center;
    }
    .stream-feature-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 12px auto;
      fill: var(--accent-neon);
    }
    .stream-feature-name {
      font-size: 15px;
      font-weight: 700;
      color: #F8FAFC;
      margin-bottom: 6px;
    }
    .stream-feature-desc {
      font-size: 12px;
      color: #94A3B8;
      line-height: 1.5;
    }
    .stream-cta-bar {
      text-align: center;
    }

    /* 页脚 */
    .site-footer {
      background: #FFFFFF;
      border-top: 1px solid var(--border-color);
      padding: 64px 0 32px 0;
      margin-top: 80px;
    }
    .footer-top-grid {
      display: grid;
      grid-template-columns: 2fr 1.2fr 1.2fr 2fr;
      gap: 40px;
      margin-bottom: 48px;
    }
    .footer-brand-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 20px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 14px;
    }
    .footer-brand-desc {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.7;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
    }
    .footer-nav-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-nav-links a {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-nav-links a:hover {
      color: var(--primary);
      padding-left: 3px;
    }
    .footer-bottom-bar {
      border-top: 1px solid var(--border-color);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-sub);
      flex-wrap: wrap;
      gap: 12px;
    }

    /* 响应式适配 */
    @media (max-width: 1024px) {
      .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .featured-cinema-card {
        grid-template-columns: 1fr;
      }
      .cinema-banner-media {
        min-height: 280px;
      }
      .anime-poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .ranking-section-grid {
        grid-template-columns: 1fr;
      }
      .topics-horizontal-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .stream-features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 640px) {
      .section-title {
        font-size: 22px;
      }
      .hero-h1 {
        font-size: 24px;
      }
      .timeline-grid {
        grid-template-columns: 1fr;
      }
      .roadmap-action-bar {
        flex-direction: column;
        align-items: stretch;
      }
      .anime-poster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .topics-horizontal-grid {
        grid-template-columns: 1fr;
      }
      .stream-features-grid {
        grid-template-columns: 1fr;
      }
      .stream-spec-banner {
        padding: 32px 20px;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .drawer-panel {
        width: 100%;
      }
    }

/* roulang page: category5 */
:root {
    --primary: #1E40AF;
    --primary-hover: #1D4ED8;
    --primary-light: #EFF6FF;
    --accent: #0284C7;
    --accent-neon: #38BDF8;
    --bg-main: #F8FAFC;
    --bg-sub: #F1F5F9;
    --bg-white: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #334155;
    --text-sub: #64748B;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-card: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 15px -3px rgba(30, 64, 175, 0.08);
    --shadow-hover: 0 12px 25px -4px rgba(30, 64, 175, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    background-color: var(--bg-main);
    color: var(--text-muted);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .site-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section-gap {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--primary-light);
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }

  .section-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 15px;
    color: var(--text-sub);
    max-width: 720px;
    line-height: 1.7;
  }

  .text-center {
    text-align: center;
  }

  .text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  /* 顶部导航 */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    height: 72px;
    transition: var(--transition);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
  }

  .brand-logo svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
    border: none;
    cursor: pointer;
  }

  .btn-cta:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    color: #fff;
  }

  .menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: var(--bg-sub);
    border: 1px solid var(--border-color);
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
  }

  .menu-trigger:hover {
    background-color: #E2E8F0;
  }

  /* 全屏侧滑抽屉导航 */
  .drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .drawer-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .drawer-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 2001;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    overflow-y: auto;
  }

  .drawer-overlay.active .drawer-panel {
    right: 0;
  }

  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
  }

  .drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-sub);
    font-size: 26px;
    line-height: 1;
  }

  .drawer-search {
    position: relative;
    margin-bottom: 28px;
  }

  .drawer-search input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    background: var(--bg-sub);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-main);
    outline: none;
    box-sizing: border-box;
  }

  .drawer-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text-sub);
  }

  .drawer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    padding: 0;
  }

  .drawer-nav-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    background: var(--bg-sub);
  }

  .drawer-nav-item a:hover,
  .drawer-nav-item.active a {
    background: var(--primary-light);
    color: var(--primary);
  }

  .drawer-footer-info {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.6;
  }

  /* 分类专栏 H1 标头与面包屑 */
  .category-hero {
    margin-top: 72px;
    padding: 48px 0 36px 0;
    background: linear-gradient(180deg, #EFF6FF 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--border-color);
  }

  .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 16px;
  }

  .breadcrumb-nav a:hover {
    color: var(--primary);
  }

  .breadcrumb-separator {
    color: #CBD5E1;
  }

  .category-h1 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.25;
  }

  .category-summary {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 840px;
    line-height: 1.75;
  }

  .hero-quick-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
  }

  .meta-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
  }

  .meta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
  }

  /* 多维度检索矩阵 */
  .filter-section-wrapper {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    margin-top: -24px;
    position: relative;
    z-index: 10;
  }

  .filter-row {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
  }

  .filter-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .filter-label {
    min-width: 88px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 28px;
  }

  .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
  }

  .filter-btn {
    padding: 4px 14px;
    font-size: 13px;
    border-radius: 6px;
    color: var(--text-muted);
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
  }

  .filter-btn:hover {
    background: var(--bg-sub);
    color: var(--primary);
  }

  .filter-btn.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    border-color: #BFDBFE;
  }

  /* 周历切换与排期主体 */
  .weekday-tabs-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 32px;
  }

  .weekday-tab-card {
    flex: 1;
    min-width: 140px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
  }

  .weekday-tab-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
  }

  .weekday-tab-card.active {
    background: linear-gradient(135deg, var(--primary) 0%, #1E3A8A 100%);
    color: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(30, 64, 175, 0.2);
  }

  .tab-day-name {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
  }

  .tab-day-sub {
    font-size: 12px;
    opacity: 0.85;
  }

  .tab-badge-count {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.06);
  }

  .weekday-tab-card.active .tab-badge-count {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
  }

  /* 焦点主打横幅宽卡片 */
  .featured-spotlight-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: 48px;
    transition: var(--transition);
  }

  .featured-spotlight-card:hover {
    box-shadow: var(--shadow-hover);
  }

  .spotlight-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .spotlight-cover-side {
    width: 45%;
    position: relative;
    min-height: 320px;
    overflow: hidden;
  }

  .spotlight-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .featured-spotlight-card:hover .spotlight-cover-img {
    transform: scale(1.03);
  }

  .spotlight-content-side {
    width: 55%;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .spotlight-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .spotlight-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.35;
  }

  .spotlight-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .spotlight-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .spotlight-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .btn-primary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
  }

  .btn-primary-action:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
  }

  .btn-secondary-action {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: var(--bg-sub);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
  }

  .btn-secondary-action:hover {
    background: #E2E8F0;
    color: var(--text-main);
  }

  /* 排期卡片主体网格 (Foundation 强化) */
  .schedule-grid-container {
    margin-top: 16px;
  }

  .anime-card-box {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .anime-card-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: #BFDBFE;
  }

  .card-media-wrapper {
    position: relative;
    width: 100%;
    padding-top: 135%;
    overflow: hidden;
    background: #E2E8F0;
  }

  .card-media-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .anime-card-box:hover .card-media-wrapper img {
    transform: scale(1.05);
  }

  .card-episode-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
  }

  .card-time-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(30, 64, 175, 0.9);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
  }

  .card-body-panel {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .card-anime-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }

  .mini-spec-tag {
    font-size: 11px;
    padding: 2px 6px;
    background: var(--bg-sub);
    color: var(--text-sub);
    border-radius: 4px;
  }

  .mini-spec-tag.blue {
    background: var(--primary-light);
    color: var(--primary);
  }

  .card-synopsis-text {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
  }

  .card-footer-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
  }

  .status-now-playing {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
  }

  .play-now-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .play-now-link:hover {
    color: var(--accent);
  }

  /* 分页控制器 */
  .pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .page-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
  }

  .page-link-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
  }

  .page-link-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
  }

  /* 放送提醒与服务特性卡片 */
  .features-strip-section {
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  .feature-strip-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .feature-icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .feature-icon-bubble svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
  }

  .feature-strip-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
  }

  .feature-strip-text {
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.65;
  }

  /* 周度热度榜单与上升趋势 */
  .trend-rank-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 28px;
    box-shadow: var(--shadow-card);
  }

  .rank-list-wrapper {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .rank-item-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .rank-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .rank-num-badge {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--bg-sub);
    color: var(--text-sub);
    font-weight:800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
  }

  .rank-item-row:nth-child(1) .rank-num-badge {
    background: #FEF3C7;
    color: #D97706;
  }

  .rank-item-row:nth-child(2) .rank-num-badge {
    background: #E0E7FF;
    color: #4338CA;
  }

  .rank-item-row:nth-child(3) .rank-num-badge {
    background: #FFEDD5;
    color: #C2410C;
  }

  .rank-item-thumb {
    width: 48px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 14px;
    flex-shrink: 0;
  }

  .rank-info-content {
    flex: 1;
    min-width: 0;
  }

  .rank-anime-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
  }

  .rank-meta-details {
    font-size: 12px;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .rank-index-val {
    font-weight: 700;
    color: #EF4444;
  }

  /* 常见排期问题解答 */
  .schedule-faq-container {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 32px 36px;
  }

  .faq-accordion-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
  }

  .faq-accordion-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .faq-question-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    padding: 0;
  }

  .faq-question-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--text-sub);
    transition: transform 0.3s ease;
  }

  .faq-answer-block {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* 底部页脚 */
  .site-footer {
    background: #0B1120;
    color: #94A3B8;
    padding: 64px 0 28px 0;
    border-top: 1px solid #1E293B;
  }

  .footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .footer-brand-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
  }

  .footer-brand-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #94A3B8;
    max-width: 340px;
  }

  .footer-col-title {
    font-size: 15px;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
  }

  .footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav-links a {
    color: #94A3B8;
    font-size: 13px;
  }

  .footer-nav-links a:hover {
    color: var(--accent-neon);
    padding-left: 4px;
  }

  .footer-bottom-bar {
    padding-top: 28px;
    border-top: 1px solid #1E293B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748B;
    flex-wrap: wrap;
    gap: 12px;
  }

  @media (max-width: 1024px) {
    .spotlight-grid {
      flex-direction: column;
    }
    .spotlight-cover-side,
    .spotlight-content-side {
      width: 100%;
    }
    .spotlight-cover-side {
      min-height: 260px;
    }
    .footer-top-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .section-gap {
      padding: 48px 0;
    }
    .filter-section-wrapper {
      padding: 16px;
    }
    .filter-row {
      flex-direction: column;
      gap: 8px;
    }
    .filter-label {
      min-width: 100%;
      line-height: 20px;
    }
    .spotlight-content-side {
      padding: 24px 20px;
    }
    .spotlight-title {
      font-size: 20px;
    }
    .footer-top-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .footer-bottom-bar {
      flex-direction: column;
      align-items: flex-start;
    }
    .drawer-panel {
      width: 100%;
    }
  }
