/* roulang page: index */
:root {
      --bg-base: #0B0C10;
      --bg-surface: #12151E;
      --bg-card: rgba(23, 27, 38, 0.75);
      --bg-card-hover: rgba(30, 36, 51, 0.85);
      --brand-gradient: linear-gradient(135deg, #FF3366 0%, #BA135D 50%, #7928CA 100%);
      --brand-glow: rgba(255, 51, 102, 0.35);
      --neon-cyan: #00F2FE;
      --amber-gold: #FFB800;
      --text-main: #F8FAFC;
      --text-muted: #CBD5E1;
      --text-sub: #94A3B8;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(255, 51, 102, 0.4);
      --card-radius: 22px;
      --pill-radius: 999px;
      --shadow-primary: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 1px rgba(255, 255, 255, 0.12);
      --shadow-glow: 0 0 25px rgba(255, 51, 102, 0.25);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: radial-gradient(circle at 50% 0%, #171b26 0%, var(--bg-base) 75%);
      background-color: var(--bg-base);
      color: var(--text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
      line-height: 1.68;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    a:hover, a:focus {
      color: #fff;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Foundation 栅格容器与留白微调 */
    .grid-container {
      max-width: 1240px;
    }
    .main-section {
      margin-bottom: 96px;
      position: relative;
    }
    @media print, screen and (max-width: 63.99875em) {
      .main-section {
        margin-bottom: 64px;
      }
    }

    /* 顶部悬浮导航 */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.78);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border-line);
      height: 72px;
      display: flex;
      align-items: center;
      transition: background 0.3s ease;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 22px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }
    .brand-logo-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px var(--brand-glow);
      color: #fff;
      font-size: 16px;
    }

    .header-search-bar {
      position: relative;
      width: 380px;
      max-width: 40vw;
    }
    .header-search-input {
      width: 100%;
      height: 40px;
      margin: 0;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      border-radius: var(--pill-radius);
      padding: 0 44px 0 18px;
      font-size: 13px;
      color: var(--text-main);
      outline: none;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    .header-search-input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: #FF3366;
      box-shadow: 0 0 16px rgba(255, 51, 102, 0.3);
    }
    .header-search-btn {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: var(--text-sub);
      cursor: pointer;
      font-size: 14px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .btn-nav-history {
      padding: 8px 16px;
      font-size: 13px;
      color: var(--text-muted);
      border: 1px solid var(--border-line);
      border-radius: var(--pill-radius);
      background: rgba(255, 255, 255, 0.03);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-nav-history:hover {
      border-color: rgba(255, 255, 255, 0.25);
      color: var(--text-main);
    }

    .hamburger-btn {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .hamburger-btn:hover {
      background: rgba(255, 51, 102, 0.15);
      border-color: rgba(255, 51, 102, 0.4);
    }
    .hamburger-line {
      width: 20px;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* 侧滑全屏抽屉 */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(5, 6, 8, 0.82);
      backdrop-filter: blur(14px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-panel {
      position: fixed;
      top: 0;
      right: -460px;
      width: 420px;
      max-width: 90vw;
      height: 100vh;
      background: #0F121A;
      border-left: 1px solid var(--border-line);
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.7);
      z-index: 2001;
      overflow-y: auto;
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .drawer-overlay.active .drawer-panel {
      right: 0;
    }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }
    .drawer-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: none;
      color: var(--text-sub);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .drawer-close:hover {
      background: rgba(255, 51, 102, 0.2);
      color: #fff;
    }
    .drawer-user-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-line);
      border-radius: 16px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }
    .drawer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 0 0 32px 0;
    }
    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid transparent;
      color: var(--text-main);
      font-size: 15px;
      font-weight: 500;
    }
    .drawer-nav-item a:hover,
    .drawer-nav-item.active a {
      background: rgba(255, 51, 102, 0.1);
      border-color: rgba(255, 51, 102, 0.3);
      color: #FF3366;
    }

    /* 视觉系统核心组件：圆角大卡、渐变、徽章、按钮 */
    .glow-card {
      background: var(--bg-card);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border-line);
      border-radius: var(--card-radius);
      box-shadow: var(--shadow-primary);
      padding: 30px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .glow-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: var(--shadow-primary), var(--shadow-glow);
    }

    .data-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border-radius: var(--pill-radius);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3px;
      background: rgba(255, 51, 102, 0.12);
      color: #FF3366;
      border: 1px solid rgba(255, 51, 102, 0.35);
      white-space: nowrap;
    }
    .data-badge.cyan {
      background: rgba(0, 242, 254, 0.12);
      color: var(--neon-cyan);
      border-color: rgba(0, 242, 254, 0.35);
    }
    .data-badge.gold {
      background: rgba(255, 184, 0, 0.12);
      color: var(--amber-gold);
      border-color: rgba(255, 184, 0, 0.35);
    }

    .btn-gradient {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--brand-gradient);
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      padding: 13px 30px;
      border-radius: var(--pill-radius);
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 24px var(--brand-glow);
      transition: all 0.25s ease;
    }
    .btn-gradient:hover {
      color: #fff;
      transform: scale(1.02);
      box-shadow: 0 12px 30px rgba(255, 51, 102, 0.5);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      font-weight: 600;
      font-size: 15px;
      padding: 13px 26px;
      border-radius: var(--pill-radius);
      border: 1px solid var(--border-line);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.25);
      color: #fff;
    }

    .section-header {
      margin-bottom: 44px;
      position: relative;
    }
    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.25;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--text-sub);
      max-width: 680px;
      line-height: 1.7;
    }

    /* 板块1：Hero 首屏（前后对比） */
    .hero-section {
      padding-top: 130px;
      padding-bottom: 60px;
      position: relative;
    }
    .hero-h1 {
      font-size: 46px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.18;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }
    .hero-h1 .gradient-text {
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-lead {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .hero-btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin-bottom: 40px;
    }
    .hero-diff-card {
      background: rgba(18, 21, 30, 0.85);
      border: 1px solid var(--border-line);
      border-radius: var(--card-radius);
      padding: 24px;
      box-shadow: var(--shadow-primary);
    }
    .diff-header {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid var(--border-line);
      padding-bottom: 14px;
      margin-bottom: 16px;
    }

    /* 板块4：播放器交互引擎拆解 */
    .player-showcase-stage {
      background: #000;
      border-radius: var(--card-radius);
      border: 1px solid rgba(255, 255, 255, 0.12);
      position: relative;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    }
    .player-banner-img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      opacity: 0.65;
    }
    .player-overlay-callout {
      position: absolute;
      background: rgba(15, 18, 26, 0.88);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 51, 102, 0.35);
      padding: 12px 18px;
      border-radius: 12px;
      font-size: 13px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    }

    /* 板块5：海报缩略图网格 */
    .poster-card {
      border-radius: 18px;
      overflow: hidden;
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      transition: all 0.3s ease;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: var(--shadow-primary), var(--shadow-glow);
    }
    .poster-img-wrap {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: #171b26;
    }
    .poster-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-img-wrap img {
      transform: scale(1.05);
    }
    .poster-badge-pos {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
    }
    .poster-info {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .poster-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-meta {
      font-size: 13px;
      color: var(--text-sub);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* 板块6：数据指标 */
    .metric-number {
      font-size: 42px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.1;
      margin-bottom: 8px;
      font-feature-settings: "tnum";
      letter-spacing: -1px;
    }
    .metric-number span {
      font-size: 20px;
      font-weight: 600;
      color: var(--neon-cyan);
    }

    /* 板块7：套餐价格卡 */
    .price-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--card-radius);
      padding: 34px 26px;
      text-align: center;
      position: relative;
      transition: all 0.3s ease;
    }
    .price-card.featured {
      background: linear-gradient(180deg, rgba(32, 22, 45, 0.9) 0%, rgba(18, 21, 30, 0.95) 100%);
      border-color: rgba(255, 51, 102, 0.6);
      box-shadow: 0 16px 40px rgba(255, 51, 102, 0.2);
    }
    .price-value {
      font-size: 38px;
      font-weight: 800;
      color: var(--text-main);
      margin: 16px 0;
    }
    .price-value sub {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-sub);
    }
    .price-features {
      list-style: none;
      margin: 24px 0;
      text-align: left;
    }
    .price-features li {
      padding: 8px 0;
      font-size: 14px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .price-features li i {
      color: var(--neon-cyan);
      font-size: 13px;
    }

    /* 板块9：弹幕社区动效 */
    .barrage-container {
      background: rgba(14, 17, 24, 0.95);
      border-radius: var(--card-radius);
      border: 1px solid var(--border-line);
      padding: 30px;
      position: relative;
      overflow: hidden;
      min-height: 320px;
    }
    .barrage-item {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
      padding: 8px 18px;
      border-radius: var(--pill-radius);
      color: var(--text-main);
      font-size: 13px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      white-space: nowrap;
      animation: flyAcross 18s linear infinite;
    }
    @keyframes flyAcross {
      0% { transform: translateX(110%); }
      100% { transform: translateX(-180%); }
    }

    /* 板块12：手风琴 FAQ */
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: 16px;
      margin-bottom: 14px;
      overflow: hidden;
      transition: border-color 0.25s ease;
    }
    .faq-item:hover {
      border-color: rgba(255, 51, 102, 0.3);
    }
    .faq-title {
      padding: 20px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 700;
      color: var(--text-main);
      font-size: 16px;
    }
    .faq-content {
      padding: 0 24px 22px 24px;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.75;
    }

    /* 板块13：终极转化大容器 */
    .cta-banner {
      background: linear-gradient(135deg, rgba(255, 51, 102, 0.18) 0%, rgba(121, 40, 202, 0.22) 100%), #121520;
      border: 1px solid rgba(255, 51, 102, 0.4);
      border-radius: 28px;
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-glow);
    }

    /* 统一页脚 */
    .site-footer {
      background: #07080B;
      border-top: 1px solid var(--border-line);
      padding: 70px 0 36px 0;
      color: var(--text-sub);
      font-size: 14px;
    }
    .footer-brand-title {
      color: var(--text-main);
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 14px;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
    }
    .footer-links-list li {
      margin-bottom: 10px;
    }
    .footer-links-list a:hover {
      color: #FF3366;
    }
    .footer-bottom {
      border-top: 1px solid var(--border-line);
      margin-top: 50px;
      padding-top: 24px;
      text-align: center;
      font-size: 13px;
    }

    /* 移动端响应优化 */
    @media screen and (max-width: 768px) {
      .hero-h1 {
        font-size: 32px;
      }
      .site-header {
        height: 64px;
      }
      .header-search-bar {
        display: none;
      }
      .cta-banner {
        padding: 40px 20px;
      }
      .player-banner-img {
        height: 260px;
      }
      .player-overlay-callout {
        position: static;
        margin: 10px 0;
      }
    }

/* roulang page: category1 */
:root {
      --bg-base: #0B0C10;
      --bg-surface: #12151E;
      --bg-card: rgba(23, 27, 38, 0.75);
      --bg-card-hover: rgba(30, 36, 51, 0.85);
      --brand-gradient: linear-gradient(135deg, #FF3366 0%, #BA135D 50%, #7928CA 100%);
      --brand-glow: rgba(255, 51, 102, 0.35);
      --neon-cyan: #00F2FE;
      --amber-gold: #FFB800;
      --text-main: #F8FAFC;
      --text-muted: #CBD5E1;
      --text-sub: #94A3B8;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(255, 51, 102, 0.4);
      --card-radius: 22px;
      --pill-radius: 999px;
      --shadow-primary: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 1px rgba(255, 255, 255, 0.12);
      --shadow-glow: 0 0 25px rgba(255, 51, 102, 0.25);
    }
    * {
      box-sizing: border-box;
    }
    body {
      background: radial-gradient(circle at 50% 0%, #171b26 0%, var(--bg-base) 75%);
      background-color: var(--bg-base);
      color: var(--text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
      line-height: 1.68;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      padding-top: 72px;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    a:hover, a:focus {
      color: #fff;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .grid-container {
      max-width: 1240px;
    }
    .main-section {
      margin-bottom: 84px;
      position: relative;
    }
    @media (max-width: 768px) {
      .main-section {
        margin-bottom: 56px;
      }
    }

    /* 顶部悬浮导航 */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.78);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border-line);
      height: 72px;
      display: flex;
      align-items: center;
      transition: background 0.3s ease;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 22px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }
    .brand-logo-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px var(--brand-glow);
      color: #fff;
      font-size: 16px;
    }
    .header-search-bar {
      position: relative;
      width: 380px;
      max-width: 40vw;
    }
    .header-search-input {
      width: 100%;
      height: 40px;
      margin: 0;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      border-radius: var(--pill-radius);
      padding: 0 44px 0 18px;
      font-size: 13px;
      color: var(--text-main);
      outline: none;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    .header-search-input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: #FF3366;
      box-shadow: 0 0 16px rgba(255, 51, 102, 0.3);
    }
    .header-search-btn {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: var(--text-sub);
      cursor: pointer;
      font-size: 14px;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .btn-nav-history {
      padding: 8px 16px;
      font-size: 13px;
      color: var(--text-muted);
      border: 1px solid var(--border-line);
      border-radius: var(--pill-radius);
      background: rgba(255, 255, 255, 0.03);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-nav-history:hover {
      border-color: rgba(255, 255, 255, 0.25);
      color: var(--text-main);
    }
    .hamburger-btn {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .hamburger-btn:hover {
      background: rgba(255, 51, 102, 0.15);
      border-color: rgba(255, 51, 102, 0.4);
    }
    .hamburger-line {
      width: 20px;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* 侧滑全屏抽屉 */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(5, 6, 8, 0.82);
      backdrop-filter: blur(14px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-panel {
      position: fixed;
      top: 0;
      right: -460px;
      width: 420px;
      max-width: 90vw;
      height: 100vh;
      background: #0F121A;
      border-left: 1px solid var(--border-line);
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.7);
      z-index: 2001;
      overflow-y: auto;
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .drawer-overlay.active .drawer-panel {
      right: 0;
    }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }
    .drawer-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: none;
      color: var(--text-sub);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .drawer-close:hover {
      background: rgba(255, 51, 102, 0.2);
      color: #fff;
    }
    .drawer-nav-list {
      list-style: none;
      margin: 0 0 32px 0;
      padding: 0;
    }
    .drawer-nav-item {
      margin-bottom: 12px;
    }
    .drawer-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-line);
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
    }
    .drawer-nav-link:hover, .drawer-nav-link.active {
      background: rgba(255, 51, 102, 0.12);
      border-color: #FF3366;
      color: #fff;
    }
    .drawer-nav-link.active {
      box-shadow: 0 0 15px rgba(255, 51, 102, 0.25);
    }

    /* 徽章与标签体系 */
    .data-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: var(--pill-radius);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3px;
      background: rgba(255, 51, 102, 0.12);
      border: 1px solid rgba(255, 51, 102, 0.35);
      color: #FF3366;
    }
    .badge-cyan {
      background: rgba(0, 242, 254, 0.12);
      border-color: rgba(0, 242, 254, 0.4);
      color: var(--neon-cyan);
    }
    .badge-gold {
      background: rgba(255, 184, 0, 0.12);
      border-color: rgba(255, 184, 0, 0.4);
      color: var(--amber-gold);
    }

    /* 按钮规范 */
    .btn-gradient {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 28px;
      background: var(--brand-gradient);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      border-radius: var(--pill-radius);
      border: none;
      box-shadow: 0 8px 24px var(--brand-glow);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-gradient:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(255, 51, 102, 0.5);
      color: #fff;
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 26px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      color: var(--text-main);
      font-weight: 600;
      font-size: 14px;
      border-radius: var(--pill-radius);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff;
    }

    /* 板块通用头部 */
    .section-header-compact {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 28px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-line);
    }
    .section-title {
      font-size: 24px;
      font-weight: 800;
      color: var(--text-main);
      margin: 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-subtitle {
      font-size: 14px;
      color: var(--text-sub);
      margin-top: 6px;
    }

    /* 板块1：分类看板与直播倒计时预告 */
    .category-hero-banner {
      position: relative;
      border-radius: var(--card-radius);
      background: linear-gradient(135deg, rgba(20, 24, 36, 0.92) 0%, rgba(11, 12, 16, 0.95) 100%), url('/assets/images/4a4e03a1cd5997d0.jpg') center/cover no-repeat;
      border: 1px solid var(--border-line);
      padding: 40px;
      box-shadow: var(--shadow-primary);
      overflow: hidden;
      margin-top: 16px;
    }
    .category-hero-banner::after {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(255, 51, 102, 0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .category-main-h1 {
      font-size: 34px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.25;
      margin-bottom: 12px;
    }
    .countdown-timer-box {
      display: flex;
      gap: 12px;
      margin: 20px 0 24px 0;
    }
    .time-unit {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      padding: 10px 16px;
      text-align: center;
      min-width: 68px;
    }
    .time-num {
      font-size: 22px;
      font-weight: 800;
      color: var(--neon-cyan);
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }
    .time-label {
      font-size: 11px;
      color: var(--text-sub);
      margin-top: 4px;
    }

    /* 板块2：多维分类过滤器 */
    .filter-panel {
      background: var(--bg-card);
      backdrop-filter: blur(16px);
      border-radius: var(--card-radius);
      border: 1px solid var(--border-line);
      padding: 24px 28px;
      box-shadow: var(--shadow-primary);
    }
    .filter-group {
      display: flex;
      align-items: baseline;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-group:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 70px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-sub);
      flex-shrink: 0;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-chip {
      padding: 4px 14px;
      font-size: 13px;
      border-radius: var(--pill-radius);
      color: var(--text-muted);
      border: 1px solid transparent;
      transition: all 0.2s;
    }
    .filter-chip:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-chip.active {
      background: rgba(255, 51, 102, 0.15);
      border-color: #FF3366;
      color: #fff;
      font-weight: 600;
    }

    /* 板块3：双列主打大卡 */
    .featured-movie-card {
      background: var(--bg-card);
      border-radius: var(--card-radius);
      border: 1px solid var(--border-line);
      overflow: hidden;
      display: flex;
      height: 100%;
      box-shadow: var(--shadow-primary);
      transition: all 0.3s ease;
    }
    .featured-movie-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: var(--shadow-glow);
    }
    .featured-poster {
      width: 42%;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }
    .featured-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .featured-movie-card:hover .featured-poster img {
      transform: scale(1.05);
    }
    .featured-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
    }

    /* 板块4：4列核心电影海报网格 */
    .movie-poster-card {
      background: var(--bg-card);
      border-radius: 18px;
      border: 1px solid var(--border-line);
      overflow: hidden;
      box-shadow: var(--shadow-primary);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
    }
    .movie-poster-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: 0 16px 32px rgba(255, 51, 102, 0.2);
    }
    .poster-img-wrap {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #171b26;
    }
    .poster-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .movie-poster-card:hover .poster-img-wrap img {
      transform: scale(1.06);
    }
    .poster-badge-top {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
    }
    .poster-rating {
      position: absolute;
      bottom: 8px;
      left: 10px;
      background: rgba(11, 12, 16, 0.75);
      backdrop-filter: blur(8px);
      padding: 2px 8px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      color: var(--amber-gold);
    }
    .poster-info {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }
    .poster-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-meta {
      font-size: 12px;
      color: var(--text-sub);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* 板块5：技术解析大卡 */
    .tech-spec-container {
      background: linear-gradient(180deg, rgba(23, 27, 38, 0.85) 0%, rgba(15, 18, 26, 0.95) 100%);
      border-radius: var(--card-radius);
      border: 1px solid var(--border-line);
      padding: 42px 36px;
      box-shadow: var(--shadow-primary);
    }
    .tech-pill-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-line);
      border-radius: 16px;
      padding: 24px;
      height: 100%;
      transition: all 0.3s ease;
    }
    .tech-pill-box:hover {
      border-color: var(--border-hover);
      background: rgba(255, 51, 102, 0.04);
    }
    .tech-icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: rgba(255, 51, 102, 0.15);
      color: #FF3366;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
    }

    /* 板块6：经典回顾条形卡 */
    .classic-item-row {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: 18px;
      padding: 18px;
      display: flex;
      gap: 20px;
      align-items: center;
      transition: all 0.3s ease;
      height: 100%;
    }
    .classic-item-row:hover {
      border-color: var(--border-hover);
      transform: translateY(-4px);
    }
    .classic-thumb {
      width: 110px;
      height: 75px;
      border-radius: 12px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .classic-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 板块7：问答 FAQ 手风琴样式 */
    .faq-accordion-card {
      background: var(--bg-card);
      border-radius: 16px;
      border: 1px solid var(--border-line);
      margin-bottom: 14px;
      overflow: hidden;
      transition: border-color 0.3s ease;
    }
    .faq-accordion-card:hover {
      border-color: rgba(255, 255, 255, 0.18);
    }
    .faq-toggle-header {
      padding: 18px 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }
    .faq-q-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .faq-body-content {
      padding: 0 24px 20px 24px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 板块8：底部转化收口 */
    .category-cta-box {
      background: radial-gradient(circle at 50% 0%, rgba(186, 19, 93, 0.3) 0%, rgba(20, 24, 36, 0.95) 75%);
      border: 1px solid var(--border-hover);
      border-radius: var(--card-radius);
      padding: 50px 30px;
      text-align: center;
      box-shadow: var(--shadow-glow);
    }

    /* 页脚样式 */
    .site-footer {
      background: #08090C;
      border-top: 1px solid var(--border-line);
      padding: 60px 0 40px 0;
      margin-top: 80px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
    }
    .brand-badge-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: var(--brand-gradient);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 13px;
    }
    .footer-desc {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.75;
      margin-bottom: 20px;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      font-size: 13px;
      color: var(--text-sub);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a:hover {
      color: #FF3366;
      transform: translateX(3px);
    }

    @media (max-width: 640px) {
      .featured-movie-card {
        flex-direction: column;
      }
      .featured-poster {
        width: 100%;
        height: 200px;
      }
      .category-hero-banner {
        padding: 24px;
      }
      .category-main-h1 {
        font-size: 26px;
      }
      .countdown-timer-box {
        flex-wrap: wrap;
      }
    }

/* roulang page: category2 */
:root {
      --bg-base: #0B0C10;
      --bg-surface: #12151E;
      --bg-card: rgba(23, 27, 38, 0.75);
      --bg-card-hover: rgba(30, 36, 51, 0.9);
      --brand-gradient: linear-gradient(135deg, #FF3366 0%, #BA135D 50%, #7928CA 100%);
      --brand-glow: rgba(255, 51, 102, 0.35);
      --neon-cyan: #00F2FE;
      --amber-gold: #FFB800;
      --text-main: #F8FAFC;
      --text-muted: #CBD5E1;
      --text-sub: #94A3B8;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(255, 51, 102, 0.45);
      --card-radius: 22px;
      --pill-radius: 999px;
      --shadow-primary: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 1px rgba(255, 255, 255, 0.12);
      --shadow-glow: 0 0 25px rgba(255, 51, 102, 0.25);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: radial-gradient(circle at 50% 0%, #191e2b 0%, var(--bg-base) 80%);
      background-color: var(--bg-base);
      color: var(--text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
      line-height: 1.68;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    a:hover, a:focus {
      color: #fff;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .grid-container {
      max-width: 1240px;
    }

    .main-section {
      margin-bottom: 92px;
      position: relative;
    }

    @media print, screen and (max-width: 63.99875em) {
      .main-section {
        margin-bottom: 58px;
      }
    }

    /* 顶部悬浮导航 */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.85);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border-line);
      height: 72px;
      display: flex;
      align-items: center;
      transition: background 0.3s ease;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 22px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }

    .brand-logo-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px var(--brand-glow);
      color: #fff;
      font-size: 16px;
    }

    .header-search-bar {
      position: relative;
      width: 380px;
      max-width: 40vw;
    }

    .header-search-input {
      width: 100%;
      height: 40px;
      margin: 0;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      border-radius: var(--pill-radius);
      padding: 0 44px 0 18px;
      font-size: 13px;
      color: var(--text-main);
      outline: none;
      box-shadow: none;
      transition: all 0.3s ease;
    }

    .header-search-input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: #FF3366;
      box-shadow: 0 0 16px rgba(255, 51, 102, 0.3);
    }

    .header-search-btn {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: var(--text-sub);
      cursor: pointer;
      font-size: 14px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .btn-nav-history {
      padding: 8px 16px;
      font-size: 13px;
      color: var(--text-muted);
      border: 1px solid var(--border-line);
      border-radius: var(--pill-radius);
      background: rgba(255, 255, 255, 0.03);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn-nav-history:hover {
      border-color: rgba(255, 255, 255, 0.25);
      color: var(--text-main);
    }

    .hamburger-btn {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .hamburger-btn:hover {
      background: rgba(255, 51, 102, 0.15);
      border-color: rgba(255, 51, 102, 0.4);
    }

    .hamburger-line {
      width: 20px;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* 侧滑抽屉导航系统 */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(5, 6, 8, 0.82);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .drawer-panel {
      position: fixed;
      top: 0;
      right: -460px;
      width: 420px;
      max-width: 90vw;
      height: 100vh;
      background: #0F121A;
      border-left: 1px solid var(--border-line);
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.7);
      z-index: 2001;
      overflow-y: auto;
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .drawer-overlay.active .drawer-panel {
      right: 0;
    }

    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }

    .drawer-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: none;
      color: var(--text-sub);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .drawer-close:hover {
      background: rgba(255, 51, 102, 0.2);
      color: #fff;
    }

    .drawer-channel-title {
      font-size: 13px;
      color: var(--text-sub);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .drawer-nav-list {
      list-style: none;
      margin: 0 0 30px 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: 14px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid transparent;
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 500;
    }

    .drawer-nav-item a:hover {
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.1);
    }

    .drawer-nav-item.active a {
      background: linear-gradient(90deg, rgba(255, 51, 102, 0.15) 0%, rgba(121, 40, 202, 0.1) 100%);
      border-color: rgba(255, 51, 102, 0.35);
      color: #fff;
      font-weight: 600;
    }

    .drawer-nav-badge {
      font-size: 11px;
      padding: 2px 8px;
      border-radius: var(--pill-radius);
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-sub);
    }

    .drawer-nav-item.active .drawer-nav-badge {
      background: #FF3366;
      color: #fff;
    }

    .drawer-status-box {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border-line);
      border-radius: 16px;
      padding: 16px;
      margin-top: auto;
    }

    /* 视觉共用组件：胶囊徽章、卡片、渐变按钮 */
    .data-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      padding: 3px 10px;
      border-radius: var(--pill-radius);
      background: rgba(255, 51, 102, 0.12);
      color: #FF3366;
      border: 1px solid rgba(255, 51, 102, 0.28);
      font-weight: 600;
      white-space: nowrap;
    }

    .data-badge.cyan {
      background: rgba(0, 242, 254, 0.1);
      color: var(--neon-cyan);
      border-color: rgba(0, 242, 254, 0.3);
    }

    .data-badge.gold {
      background: rgba(255, 184, 0, 0.1);
      color: var(--amber-gold);
      border-color: rgba(255, 184, 0, 0.3);
    }

    .btn-brand-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--brand-gradient);
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      padding: 11px 24px;
      border-radius: var(--pill-radius);
      border: none;
      box-shadow: 0 8px 20px var(--brand-glow);
      cursor: pointer;
    }

    .btn-brand-primary:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(255, 51, 102, 0.45);
    }

    .btn-brand-subtle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      color: var(--text-main);
      font-weight: 500;
      font-size: 14px;
      padding: 10px 20px;
      border-radius: var(--pill-radius);
      cursor: pointer;
    }

    .btn-brand-subtle:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    .glass-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--card-radius);
      box-shadow: var(--shadow-primary);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }

    .glass-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-hover);
      transform: translateY(-5px);
      box-shadow: var(--shadow-primary), var(--shadow-glow);
    }

    .section-head {
      margin-bottom: 32px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 16px;
    }

    .section-title-wrap {
      max-width: 680px;
    }

    .section-subtitle {
      font-size: 13px;
      font-weight: 600;
      color: #FF3366;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .section-main-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.3;
    }

    .section-desc {
      font-size: 14px;
      color: var(--text-sub);
      margin-top: 6px;
    }

    /* 板块一：分类看板与周更新联动日历 */
    .series-hero-banner {
      padding-top: 104px;
      margin-bottom: 48px;
    }

    .series-banner-card {
      position: relative;
      background: linear-gradient(135deg, rgba(23, 27, 38, 0.9) 0%, rgba(18, 21, 30, 0.95) 100%), url('/assets/images/e363f3c2df256a69.jpg') center/cover no-repeat;
      border: 1px solid var(--border-line);
      border-radius: var(--card-radius);
      padding: 44px 40px;
      box-shadow: var(--shadow-primary);
      overflow: hidden;
    }

    .series-banner-card::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -10%;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(255, 51, 102, 0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .series-h1 {
      font-size: 34px;
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }

    .calendar-tabs {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 28px;
      overflow-x: auto;
      padding-bottom: 6px;
    }

    .calendar-tab-btn {
      flex: 1;
      min-width: 90px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-line);
      border-radius: 16px;
      padding: 12px 10px;
      text-align: center;
      cursor: pointer;
      transition: all 0.25s ease;
      color: var(--text-muted);
    }

    .calendar-tab-btn:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .calendar-tab-btn.active {
      background: var(--brand-gradient);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 6px 18px var(--brand-glow);
    }

    .cal-day {
      font-size: 15px;
      font-weight: 700;
      display: block;
    }

    .cal-status {
      font-size: 11px;
      opacity: 0.85;
      margin-top: 3px;
      display: block;
    }

    /* 板块二：多级过滤器 */
    .series-filter-box {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--card-radius);
      padding: 24px 30px;
      box-shadow: var(--shadow-primary);
    }

    .filter-group {
      display: flex;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }

    .filter-group:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .filter-group:first-child {
      padding-top: 0;
    }

    .filter-label {
      width: 82px;
      font-size: 13px;
      color: var(--text-sub);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }

    .filter-tags-scroll {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-tag {
      font-size: 13px;
      padding: 5px 14px;
      border-radius: var(--pill-radius);
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-tag:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.07);
    }

    .filter-tag.active {
      background: rgba(255, 51, 102, 0.15);
      border-color: #FF3366;
      color: #FF3366;
      font-weight: 600;
    }

    /* 板块三：今日追更排阵大卡 */
    .today-grid-card {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .today-thumb-wrap {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .today-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .today-grid-card:hover .today-thumb-wrap img {
      transform: scale(1.06);
    }

    .today-badge-top {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
    }

    .today-badge-time {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      font-size: 11px;
      color: var(--amber-gold);
      padding: 3px 8px;
      border-radius: 6px;
      border: 1px solid rgba(255, 184, 0, 0.3);
    }

    .today-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .today-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .today-meta {
      font-size: 12px;
      color: var(--text-sub);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .today-progress-bar {
      width: 100%;
      height: 5px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 999px;
      overflow: hidden;
      margin-bottom: 14px;
    }

    .today-progress-fill {
      height: 100%;
      background: var(--brand-gradient);
      border-radius: 999px;
    }

    .today-action {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* 板块四：剧集核心列表主体 */
    .series-item-card {
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      height: calc(100% - 24px);
    }

    .series-poster {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      border-top-left-radius: var(--card-radius);
      border-top-right-radius: var(--card-radius);
      background: #171b26;
    }

    .series-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .series-item-card:hover .series-poster img {
      transform: scale(1.05);
    }

    .series-ep-badge {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(11, 12, 16, 0.82);
      backdrop-filter: blur(6px);
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 6px;
      color: #fff;
      border: 1px solid var(--border-line);
    }

    .series-content {
      padding: 18px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }

    .series-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .series-intro {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.5;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .series-specs {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 12px;
      margin-top: auto;
    }

    /* 板块五：追剧无缝连播特性解析 */
    .feature-point-card {
      padding: 28px;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .feature-icon-box {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: rgba(255, 51, 102, 0.1);
      border: 1px solid rgba(255, 51, 102, 0.25);
      color: #FF3366;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 18px;
    }

    .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.6;
    }

    /* 板块六：热门电视剧专题精选墙 */
    .special-topic-card {
      position: relative;
      height: 240px;
      border-radius: var(--card-radius);
      overflow: hidden;
      border: 1px solid var(--border-line);
      box-shadow: var(--shadow-primary);
    }

    .special-topic-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .special-topic-card:hover .special-topic-bg {
      transform: scale(1.08);
    }

    .special-topic-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, rgba(11, 12, 16, 0.2) 0%, rgba(11, 12, 16, 0.92) 85%);
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .topic-h4 {
      font-size: 19px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .topic-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* 板块七：排播与更新规则手风琴 FAQ */
    .faq-series-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: 18px;
      padding: 20px 24px;
      margin-bottom: 14px;
      transition: all 0.3s ease;
    }

    .faq-series-card:hover {
      border-color: rgba(255, 255, 255, 0.18);
    }

    .faq-question {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .faq-answer {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.7;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* 页脚样式 */
    .site-footer {
      background: #090a0e;
      border-top: 1px solid var(--border-line);
      padding: 68px 0 40px;
      position: relative;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 14px;
    }

    .brand-badge-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 13px;
    }

    .footer-desc {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }

    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--text-sub);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-links a:hover {
      color: #FF3366;
      transform: translateX(3px);
    }

    /* 移动端细微响应适配 */
    @media screen and (max-width: 39.99875em) {
      .series-banner-card {
        padding: 24px 20px;
      }
      .series-h1 {
        font-size: 24px;
      }
      .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
      .filter-label {
        width: 100%;
      }
    }

/* roulang page: category3 */
:root {
      --bg-base: #0B0C10;
      --bg-surface: #12151E;
      --bg-card: rgba(23, 27, 38, 0.75);
      --bg-card-hover: rgba(30, 36, 51, 0.85);
      --brand-gradient: linear-gradient(135deg, #FF3366 0%, #BA135D 50%, #7928CA 100%);
      --anime-gradient: linear-gradient(135deg, #FF2A85 0%, #8A2BE2 50%, #00F2FE 100%);
      --brand-glow: rgba(255, 51, 102, 0.35);
      --neon-cyan: #00F2FE;
      --amber-gold: #FFB800;
      --text-main: #F8FAFC;
      --text-muted: #CBD5E1;
      --text-sub: #94A3B8;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(255, 51, 102, 0.4);
      --card-radius: 22px;
      --pill-radius: 999px;
      --shadow-primary: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 1px rgba(255, 255, 255, 0.12);
      --shadow-glow: 0 0 25px rgba(255, 51, 102, 0.25);
    }
    body {
      background: radial-gradient(circle at 50% 0%, #1a162b 0%, var(--bg-base) 75%);
      background-color: var(--bg-base);
      color: var(--text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
      line-height: 1.68;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    a:hover, a:focus {
      color: #fff;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .grid-container {
      max-width: 1240px;
    }
    .main-section {
      margin-bottom: 90px;
      position: relative;
    }
    @media (max-width: 768px) {
      .main-section {
        margin-bottom: 56px;
      }
    }
    /* 顶部悬浮导航 */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.82);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border-line);
      height: 72px;
      display: flex;
      align-items: center;
      transition: background 0.3s ease;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 22px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }
    .brand-logo-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px var(--brand-glow);
      color: #fff;
      font-size: 16px;
    }
    .header-search-bar {
      position: relative;
      width: 380px;
      max-width: 40vw;
    }
    .header-search-input {
      width: 100%;
      height: 40px;
      margin: 0;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      border-radius: var(--pill-radius);
      padding: 0 44px 0 18px;
      font-size: 13px;
      color: var(--text-main);
      outline: none;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    .header-search-input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: #FF3366;
      box-shadow: 0 0 16px rgba(255, 51, 102, 0.3);
    }
    .header-search-btn {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: var(--text-sub);
      cursor: pointer;
      font-size: 14px;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .btn-nav-history {
      padding: 8px 16px;
      font-size: 13px;
      color: var(--text-muted);
      border: 1px solid var(--border-line);
      border-radius: var(--pill-radius);
      background: rgba(255, 255, 255, 0.03);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-nav-history:hover {
      border-color: rgba(255, 255, 255, 0.25);
      color: var(--text-main);
    }
    .hamburger-btn {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .hamburger-btn:hover {
      background: rgba(255, 51, 102, 0.15);
      border-color: rgba(255, 51, 102, 0.4);
    }
    .hamburger-line {
      width: 20px;
      height: 2px;
      background: var(--brand-gradient);
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    /* 侧滑抽屉导航 */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(5, 6, 8, 0.82);
      backdrop-filter: blur(14px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-panel {
      position: fixed;
      top: 0;
      right: -460px;
      width: 420px;
      max-width: 90vw;
      height: 100vh;
      background: #0F121A;
      border-left: 1px solid var(--border-line);
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.7);
      z-index: 2001;
      overflow-y: auto;
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .drawer-overlay.active .drawer-panel {
      right: 0;
    }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }
    .drawer-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: none;
      color: var(--text-sub);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .drawer-close:hover {
      background: rgba(255, 51, 102, 0.2);
      color: #fff;
    }
    .drawer-nav-list {
      list-style: none;
      margin: 0 0 30px 0;
      padding: 0;
    }
    .drawer-nav-item {
      margin-bottom: 12px;
    }
    .drawer-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-line);
      border-radius: 14px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      transition: all 0.25s ease;
    }
    .drawer-nav-link.active,
    .drawer-nav-link:hover {
      background: rgba(255, 51, 102, 0.12);
      border-color: rgba(255, 51, 102, 0.35);
      color: #fff;
      transform: translateX(-4px);
    }
    .drawer-nav-link .nav-icon {
      margin-right: 12px;
      color: #FF3366;
    }

    /* 视觉组件通用 */
    .data-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 600;
      border-radius: var(--pill-radius);
      background: rgba(255, 51, 102, 0.12);
      border: 1px solid rgba(255, 51, 102, 0.35);
      color: #FF5E8E;
      letter-spacing: 0.3px;
    }
    .data-badge.cyan {
      background: rgba(0, 242, 254, 0.1);
      border-color: rgba(0, 242, 254, 0.35);
      color: var(--neon-cyan);
    }
    .data-badge.gold {
      background: rgba(255, 184, 0, 0.1);
      border-color: rgba(255, 184, 0, 0.35);
      color: var(--amber-gold);
    }
    .section-title-wrap {
      margin-bottom: 36px;
      position: relative;
    }
    .section-tag {
      font-size: 12px;
      font-weight: 700;
      color: var(--neon-cyan);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 8px;
      display: inline-block;
    }
    .section-heading {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }
    .section-subtext {
      font-size: 14px;
      color: var(--text-sub);
      max-width: 680px;
    }

    /* 卡片体系 */
    .anime-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: var(--shadow-primary);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .anime-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: var(--shadow-primary), var(--shadow-glow);
      background: var(--bg-card-hover);
    }
    .anime-thumb-box {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #171b26;
    }
    .anime-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .anime-card:hover .anime-thumb-box img {
      transform: scale(1.05);
    }
    .anime-badge-pos {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
    }
    .anime-rate-pos {
      position: absolute;
      bottom: 12px;
      left: 12px;
      z-index: 2;
      background: rgba(11, 12, 16, 0.85);
      backdrop-filter: blur(6px);
      padding: 3px 8px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      color: var(--amber-gold);
    }
    .anime-info-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .anime-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .anime-meta-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }
    .anime-tag-pill {
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-sub);
    }
    .anime-staff-line {
      font-size: 12px;
      color: var(--text-sub);
      line-height: 1.5;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .anime-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--border-line);
      font-size: 13px;
    }
    .play-action-btn {
      padding: 6px 14px;
      border-radius: var(--pill-radius);
      background: var(--brand-gradient);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
    }
    .play-action-btn:hover {
      filter: brightness(1.1);
      color: #fff;
    }

    /* 板块1：Banner 看板 */
    .anime-banner-card {
      margin-top: 96px;
      background: linear-gradient(180deg, rgba(18, 21, 30, 0.9) 0%, rgba(11, 12, 16, 0.95) 100%), url('/assets/images/0701f7f8430c7d2a.jpg') center/cover no-repeat;
      border: 1px solid rgba(255, 51, 102, 0.25);
      border-radius: 28px;
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
    }
    .anime-banner-card::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(138, 43, 226, 0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .anime-h1 {
      font-size: 34px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.5px;
      margin-bottom: 14px;
      line-height: 1.25;
    }
    .anime-desc-text {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 760px;
      margin-bottom: 24px;
      line-height: 1.75;
    }
    .banner-stats-bar {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .stat-pill-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-line);
      border-radius: var(--pill-radius);
      font-size: 13px;
      color: var(--text-main);
    }

    /* 板块2：多维季度筛选条 */
    .filter-card-bar {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: 18px;
      padding: 20px 24px;
      backdrop-filter: blur(12px);
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }
    .filter-row:last-child {
      margin-bottom: 0;
    }
    .filter-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-sub);
      min-width: 64px;
    }
    .filter-item-link {
      padding: 4px 12px;
      font-size: 13px;
      border-radius: 8px;
      color: var(--text-muted);
      transition: all 0.2s;
    }
    .filter-item-link.active,
    .filter-item-link:hover {
      background: rgba(255, 51, 102, 0.15);
      color: #FF5E8E;
      font-weight: 600;
    }

    /* 板块3：本季霸权橱窗大卡 */
    .domination-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 24px;
    }
    @media (max-width: 900px) {
      .domination-grid {
        grid-template-columns: 1fr;
      }
    }
    .domination-feature-card {
      background: var(--bg-card);
      border: 1px solid rgba(255, 51, 102, 0.25);
      border-radius: var(--card-radius);
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-primary);
    }
    .domination-feature-thumb {
      height: 320px;
      position: relative;
    }
    .domination-feature-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .domination-feature-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(18, 21, 30, 0.95) 100%);
    }
    .domination-feature-content {
      padding: 28px 30px;
      margin-top: -40px;
      position: relative;
      z-index: 2;
    }
    .domination-sub-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .domination-sub-item {
      display: flex;
      gap: 16px;
      padding: 16px;
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: 18px;
      transition: all 0.3s ease;
    }
    .domination-sub-item:hover {
      border-color: rgba(0, 242, 254, 0.35);
      transform: translateX(4px);
    }
    .domination-sub-img {
      width: 120px;
      height: 80px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
    }

    /* 板块5：高帧率压制与二次元视听架构 */
    .tech-panel-container {
      background: linear-gradient(145deg, rgba(23, 27, 38, 0.9), rgba(15, 18, 26, 0.95));
      border: 1px solid var(--border-line);
      border-radius: 24px;
      padding: 36px 32px;
      box-shadow: var(--shadow-primary);
    }
    .tech-feature-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border-line);
      border-radius: 16px;
      padding: 24px;
      height: 100%;
      transition: all 0.3s ease;
    }
    .tech-feature-card:hover {
      border-color: var(--neon-cyan);
      background: rgba(0, 242, 254, 0.03);
    }
    .tech-feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(0, 242, 254, 0.1);
      color: var(--neon-cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
    }

    /* 板块6：经典合集专栏横滑卡 */
    .classic-collection-box {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .classic-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border-line);
      height: 180px;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .classic-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 184, 0, 0.4);
    }
    .classic-card-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.65);
      transition: transform 0.4s ease;
      z-index: 1;
    }
    .classic-card:hover .classic-card-bg {
      transform: scale(1.08);
      filter: brightness(0.5);
    }
    .classic-card-text {
      position: relative;
      z-index: 2;
    }

    /* 板块7：交流引导与FAQ */
    .community-box {
      background: radial-gradient(circle at 10% 20%, rgba(255, 51, 102, 0.12) 0%, rgba(18, 21, 30, 0.8) 100%);
      border: 1px solid rgba(255, 51, 102, 0.25);
      border-radius: 24px;
      padding: 40px;
      text-align: center;
    }
    .bullet-danmaku-wall {
      height: 48px;
      overflow: hidden;
      margin-bottom: 24px;
      position: relative;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 999px;
      display: flex;
      align-items: center;
      padding: 0 20px;
    }
    .danmaku-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      font-size: 13px;
      color: #fff;
      margin-right: 14px;
      white-space: nowrap;
    }

    /* 页脚对齐 */
    .site-footer {
      background: #090A0E;
      border-top: 1px solid var(--border-line);
      padding: 60px 0 30px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 14px;
    }
    .footer-desc {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.8;
      margin-bottom: 18px;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      font-size: 13px;
      color: var(--text-sub);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-links a:hover {
      color: #FF5E8E;
    }

/* roulang page: category4 */
:root {
            --bg-base: #0B0C10;
            --bg-surface: #12151E;
            --bg-card: rgba(23, 27, 38, 0.75);
            --bg-card-hover: rgba(30, 36, 51, 0.85);
            --brand-gradient: linear-gradient(135deg, #FF3366 0%, #BA135D 50%, #7928CA 100%);
            --brand-glow: rgba(255, 51, 102, 0.35);
            --neon-cyan: #00F2FE;
            --amber-gold: #FFB800;
            --text-main: #F8FAFC;
            --text-muted: #CBD5E1;
            --text-sub: #94A3B8;
            --border-line: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 51, 102, 0.4);
            --card-radius: 22px;
            --pill-radius: 999px;
            --shadow-primary: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 1px rgba(255, 255, 255, 0.12);
            --shadow-glow: 0 0 25px rgba(255, 51, 102, 0.25);
        }

        body {
            background: radial-gradient(circle at 50% 0%, #171b26 0%, var(--bg-base) 75%);
            background-color: var(--bg-base);
            color: var(--text-muted);
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
            line-height: 1.68;
            font-size: 15px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            margin: 0;
            padding: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        a:hover, a:focus {
            color: #fff;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .grid-container {
            max-width: 1240px;
        }

        .main-section {
            margin-bottom: 96px;
            position: relative;
        }

        @media screen and (max-width: 63.9375em) {
            .main-section {
                margin-bottom: 64px;
            }
        }

        /* 顶部悬浮导航 */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(11, 12, 16, 0.78);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-line);
            height: 72px;
            display: flex;
            align-items: center;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.5px;
        }
        .brand-logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--brand-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px var(--brand-glow);
            color: #fff;
            font-size: 16px;
        }
        .header-search-bar {
            position: relative;
            width: 380px;
            max-width: 40vw;
        }
        .header-search-input {
            width: 100%;
            height: 40px;
            margin: 0;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-line);
            border-radius: var(--pill-radius);
            padding: 0 44px 0 18px;
            font-size: 13px;
            color: var(--text-main);
            outline: none;
            box-shadow: none;
            transition: all 0.3s ease;
        }
        .header-search-input:focus {
            background: rgba(255, 255, 255, 0.09);
            border-color: #FF3366;
            box-shadow: 0 0 16px rgba(255, 51, 102, 0.3);
        }
        .header-search-btn {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: var(--text-sub);
            cursor: pointer;
            font-size: 14px;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .btn-nav-history {
            padding: 8px 16px;
            font-size: 13px;
            color: var(--text-muted);
            border: 1px solid var(--border-line);
            border-radius: var(--pill-radius);
            background: rgba(255, 255, 255, 0.03);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-nav-history:hover {
            border-color: rgba(255, 255, 255, 0.25);
            color: var(--text-main);
        }
        .hamburger-btn {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-line);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .hamburger-btn:hover {
            background: rgba(255, 51, 102, 0.15);
            border-color: rgba(255, 51, 102, 0.4);
        }
        .hamburger-line {
            width: 20px;
            height: 2px;
            background: var(--brand-gradient);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* 侧滑全屏抽屉 */
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(5, 6, 8, 0.82);
            backdrop-filter: blur(14px);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .drawer-panel {
            position: fixed;
            top: 0;
            right: -460px;
            width: 420px;
            max-width: 90vw;
            height: 100vh;
            background: #0F121A;
            border-left: 1px solid var(--border-line);
            box-shadow: -20px 0 50px rgba(0, 0, 0, 0.7);
            z-index: 2001;
            overflow-y: auto;
            padding: 36px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .drawer-overlay.active .drawer-panel {
            right: 0;
        }
        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 28px;
        }
        .drawer-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            border: none;
            color: var(--text-sub);
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .drawer-close:hover {
            background: rgba(255, 51, 102, 0.2);
            color: #fff;
        }
        .drawer-user-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-line);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .drawer-nav-list {
            list-style: none;
            margin: 0 0 32px 0;
            padding: 0;
        }
        .drawer-nav-list li {
            margin-bottom: 8px;
        }
        .drawer-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px;
            border-radius: 14px;
            color: var(--text-muted);
            font-size: 15px;
            font-weight: 500;
            background: transparent;
            transition: all 0.2s;
        }
        .drawer-nav-link:hover, .drawer-nav-link.active {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }
        .drawer-nav-link.active {
            border-left: 3px solid #FF3366;
            background: linear-gradient(90deg, rgba(255, 51, 102, 0.12) 0%, transparent 100%);
        }
        .drawer-footer-tools {
            border-top: 1px solid var(--border-line);
            padding-top: 24px;
        }

        /* 徽章与标签 */
        .data-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: var(--pill-radius);
            font-size: 12px;
            font-weight: 600;
            padding: 3px 12px;
            background: rgba(255, 51, 102, 0.12);
            color: #FF4D79;
            border: 1px solid rgba(255, 51, 102, 0.28);
            letter-spacing: 0.2px;
        }
        .data-badge.cyan {
            background: rgba(0, 242, 254, 0.12);
            color: var(--neon-cyan);
            border-color: rgba(0, 242, 254, 0.3);
        }
        .data-badge.gold {
            background: rgba(255, 184, 0, 0.12);
            color: var(--amber-gold);
            border-color: rgba(255, 184, 0, 0.3);
        }

        /* 按钮体系 */
        .btn-brand {
            background: var(--brand-gradient);
            color: #fff;
            padding: 12px 28px;
            border-radius: var(--pill-radius);
            font-weight: 700;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 8px 24px var(--brand-glow);
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .btn-brand:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(255, 51, 102, 0.5);
            color: #fff;
        }
        .btn-subtle {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            padding: 12px 24px;
            border-radius: var(--pill-radius);
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-line);
            transition: all 0.25s ease;
        }
        .btn-subtle:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        /* 页面首屏：无大图，图标矩阵 + 状态条 + 短标题 */
        .specials-hero-panel {
            padding-top: 110px;
            padding-bottom: 24px;
        }
        .hero-status-strip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(23, 27, 38, 0.9);
            border: 1px solid var(--border-line);
            border-radius: var(--pill-radius);
            padding: 6px 18px;
            margin-bottom: 20px;
            font-size: 13px;
            color: var(--text-sub);
        }
        .status-dot-pulse {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--neon-cyan);
            box-shadow: 0 0 10px var(--neon-cyan);
        }
        .specials-main-title {
            font-size: 38px;
            font-weight: 800;
            color: var(--text-main);
            margin: 0 0 14px 0;
            letter-spacing: -0.8px;
            line-height: 1.25;
        }
        .specials-lead-text {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 780px;
            margin: 0 0 36px 0;
            line-height: 1.7;
        }
        .hero-matrix-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .hero-matrix-item {
            background: var(--bg-card);
            border: 1px solid var(--border-line);
            border-radius: 18px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
        }
        .hero-matrix-item:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-hover);
            transform: translateY(-4px);
        }
        .hero-matrix-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(255, 51, 102, 0.12);
            color: #FF3366;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .hero-matrix-text h3 {
            font-size: 16px;
            color: var(--text-main);
            margin: 0 0 4px 0;
            font-weight: 700;
        }
        .hero-matrix-text p {
            font-size: 12px;
            color: var(--text-sub);
            margin: 0;
            line-height: 1.4;
        }

        /* 专题风格标签云 */
        .tag-cloud-card {
            background: var(--bg-card);
            border: 1px solid var(--border-line);
            border-radius: var(--card-radius);
            padding: 28px;
            box-shadow: var(--shadow-primary);
        }
        .tag-cloud-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-line);
            padding-bottom: 16px;
        }
        .tag-cloud-header h2 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tag-list-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .specials-topic-tag {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-line);
            border-radius: var(--pill-radius);
            padding: 8px 18px;
            font-size: 13px;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.25s ease;
            cursor: pointer;
        }
        .specials-topic-tag:hover, .specials-topic-tag.active {
            background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, rgba(121, 40, 202, 0.2) 100%);
            border-color: #FF3366;
            color: #fff;
            transform: translateY(-2px);
        }
        .specials-topic-tag span {
            font-size: 11px;
            color: var(--text-sub);
            background: rgba(0, 0, 0, 0.35);
            padding: 1px 7px;
            border-radius: 999px;
        }

        /* 本周主打大宇宙专题展示 */
        .showcase-universe-card {
            background: var(--bg-card);
            border: 1px solid var(--border-line);
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: var(--shadow-primary);
            position: relative;
        }
        .showcase-universe-inner {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
        }
        .showcase-media {
            position: relative;
            min-height: 420px;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }
        .showcase-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(11, 12, 16, 0.2) 0%, rgba(18, 21, 30, 0.95) 100%);
        }
        .showcase-media-overlay {
            position: absolute;
            bottom: 24px;
            left: 24px;
            z-index: 2;
        }
        .showcase-content {
            padding: 40px 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: var(--bg-surface);
            position: relative;
            z-index: 3;
        }
        .showcase-content h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-main);
            margin: 12px 0 16px 0;
            line-height: 1.35;
        }
        .showcase-content p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 24px;
        }
        .universe-series-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 28px;
        }
        .universe-series-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-line);
            font-size: 13px;
        }
        .universe-series-item span:first-child {
            color: var(--text-main);
            font-weight: 600;
        }

        /* 专题主体矩阵（大横卡布局） */
        .section-header-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 30px;
        }
        .section-header-flex h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-main);
            margin: 0 0 6px 0;
        }
        .section-header-flex p {
            font-size: 14px;
            color: var(--text-sub);
            margin: 0;
        }
        .specials-matrix-item {
            background: var(--bg-card);
            border: 1px solid var(--border-line);
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 24px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-primary);
        }
        .specials-matrix-item:hover {
            transform: translateY(-4px);
            border-color: var(--border-hover);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 51, 102, 0.2);
        }
        .specials-matrix-grid {
            display: grid;
            grid-template-columns: 320px 1fr;
        }
        .specials-thumb-wrap {
            position: relative;
            overflow: hidden;
            height: 100%;
            min-height: 220px;
        }
        .specials-thumb-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .specials-matrix-item:hover .specials-thumb-wrap img {
            transform: scale(1.06);
        }
        .specials-card-body {
            padding: 26px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .specials-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .specials-card-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            margin: 0 0 10px 0;
            line-height: 1.4;
        }
        .specials-card-desc {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.68;
            margin-bottom: 18px;
        }
        .specials-card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-line);
            padding-top: 16px;
        }
        .specials-info-chips {
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: 12.5px;
            color: var(--text-sub);
        }
        .specials-info-chips span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* 策展价值阐述 */
        .curation-value-box {
            background: linear-gradient(135deg, rgba(23, 27, 38, 0.95) 0%, rgba(15, 18, 26, 0.95) 100%);
            border: 1px solid var(--border-line);
            border-radius: var(--card-radius);
            padding: 44px;
            position: relative;
            overflow: hidden;
        }
        .curation-value-box::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 51, 102, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .curation-feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-line);
            border-radius: 18px;
            padding: 24px;
            height: 100%;
        }
        .curation-feature-icon {
            font-size: 24px;
            color: var(--neon-cyan);
            margin-bottom: 14px;
        }
        .curation-feature-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .curation-feature-card p {
            font-size: 13px;
            color: var(--text-sub);
            margin: 0;
            line-height: 1.6;
        }

        /* 往期高分专题回顾 */
        .archive-specials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .archive-card {
            background: var(--bg-card);
            border: 1px solid var(--border-line);
            border-radius: 18px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-primary);
            transition: all 0.3s ease;
        }
        .archive-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-hover);
        }
        .archive-img-box {
            position: relative;
            height: 170px;
            overflow: hidden;
        }
        .archive-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .archive-card:hover .archive-img-box img {
            transform: scale(1.05);
        }
        .archive-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .archive-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin: 8px 0 10px 0;
        }
        .archive-content p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        /* 影迷提单入口 */
        .submission-card {
            background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(18, 21, 30, 0.9) 100%);
            border: 1px solid rgba(255, 51, 102, 0.3);
            border-radius: var(--card-radius);
            padding: 40px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }
        .submission-info h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-main);
            margin: 0 0 10px 0;
        }
        .submission-info p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            max-width: 680px;
            line-height: 1.65;
        }

        /* 页脚 */
        .site-footer {
            background: #090B0E;
            border-top: 1px solid var(--border-line);
            padding: 60px 0 40px 0;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 14px;
        }
        .brand-badge-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: var(--brand-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 12px;
        }
        .footer-desc {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.7;
            margin-bottom: 18px;
        }
        .footer-col-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 16px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 13px;
            color: var(--text-sub);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .footer-links a:hover {
            color: #FF3366;
            transform: translateX(3px);
        }

        /* 响应式断点 */
        @media screen and (max-width: 1024px) {
            .hero-matrix-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .showcase-universe-inner {
                grid-template-columns: 1fr;
            }
            .showcase-media {
                min-height: 280px;
            }
            .specials-matrix-grid {
                grid-template-columns: 1fr;
            }
            .specials-thumb-wrap {
                min-height: 220px;
            }
            .archive-specials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .submission-card {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media screen and (max-width: 640px) {
            .hero-matrix-grid {
                grid-template-columns: 1fr;
            }
            .archive-specials-grid {
                grid-template-columns: 1fr;
            }
            .specials-main-title {
                font-size: 28px;
            }
            .showcase-content {
                padding: 24px 20px;
            }
            .specials-card-body {
                padding: 20px;
            }
            .curation-value-box {
                padding: 24px;
            }
        }
