/* roulang page: index */
:root {
      --bg-main: #0B0E14;
      --bg-surface: #121721;
      --bg-card: #18202F;
      --bg-card-hover: #1F2A3D;
      --brand-gradient: linear-gradient(135deg, #7928CA 0%, #FF0080 50%, #FF4D4D 100%);
      --brand-glow: rgba(255, 0, 128, 0.35);
      --accent-cyan: #00DFD8;
      --accent-gold: #F5A623;
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --text-dark: #64748B;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-focus: #FF0080;
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 9999px;
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }

    a:hover, a:focus {
      color: var(--accent-cyan);
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* 布局容器规范 */
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-wrap {
      padding: 70px 0;
      position: relative;
    }

    .section-header {
      margin-bottom: 40px;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: rgba(121, 40, 202, 0.15);
      border: 1px solid rgba(255, 0, 128, 0.3);
      color: #FF70A6;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 780px;
    }

    /* 顶部导航 Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 72px;
      z-index: 1000;
      background: rgba(11, 14, 20, 0.82);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      display: flex;
      align-items: center;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px var(--brand-glow);
    }

    .brand-icon svg {
      width: 20px;
      height: 20px;
      fill: #FFFFFF;
    }

    .brand-text {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .quick-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--accent-cyan);
      background: rgba(0, 223, 216, 0.1);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(0, 223, 216, 0.25);
    }

    .status-dot-pulse {
      width: 8px;
      height: 8px;
      background-color: var(--accent-cyan);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--accent-cyan);
      animation: pulseGlow 2s infinite ease-in-out;
    }

    @keyframes pulseGlow {
      0%, 100% { opacity: 0.6; transform: scale(0.9); }
      50% { opacity: 1; transform: scale(1.15); }
    }

    .drawer-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .drawer-trigger:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 0, 128, 0.5);
    }

    .drawer-trigger span {
      display: block;
      height: 2px;
      border-radius: 2px;
      background: var(--brand-gradient);
      transition: var(--transition-smooth);
    }

    .drawer-trigger span:nth-child(1) { width: 22px; }
    .drawer-trigger span:nth-child(2) { width: 16px; }
    .drawer-trigger span:nth-child(3) { width: 20px; }

    /* 全屏侧滑抽屉导航 */
    .drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(4, 6, 10, 0.8);
      backdrop-filter: blur(8px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-smooth);
    }

    .drawer-backdrop.active {
      opacity: 1;
      visibility: visible;
    }

    .drawer-panel {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 420px;
      max-width: 100%;
      background: #111622;
      border-left: 1px solid var(--border-light);
      z-index: 2001;
      box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 30px;
      overflow-y: auto;
    }

    .drawer-backdrop.active .drawer-panel {
      transform: translateX(0);
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border-light);
      margin-bottom: 24px;
    }

    .drawer-close-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 28px;
      line-height: 1;
      padding: 4px 8px;
      transition: var(--transition-smooth);
    }

    .drawer-close-btn:hover {
      color: #FF0080;
    }

    .drawer-nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      border-radius: var(--radius-md);
      font-size: 18px;
      font-weight: 600;
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      transition: var(--transition-smooth);
    }

    .drawer-nav-item.active a,
    .drawer-nav-item a:hover {
      background: rgba(121, 40, 202, 0.18);
      border-color: rgba(255, 0, 128, 0.4);
      color: #FFFFFF;
      transform: translateX(6px);
    }

    .drawer-nav-item .channel-badge {
      font-size: 12px;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-muted);
    }

    .drawer-footer-meta {
      margin-top: auto;
      padding-top: 30px;
      border-top: 1px solid var(--border-light);
    }

    /* 常用组件样式 */
    .btn-brand-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--brand-gradient);
      color: #FFFFFF;
      font-size: 15px;
      font-weight: 700;
      padding: 13px 28px;
      border-radius: var(--radius-md);
      box-shadow: 0 8px 24px var(--brand-glow);
      border: none;
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .btn-brand-primary:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 12px 30px rgba(255, 0, 128, 0.5);
      color: #FFFFFF;
    }

    .btn-brand-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      font-size: 15px;
      font-weight: 600;
      padding: 12px 26px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .btn-brand-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.3);
      color: #FFFFFF;
    }

    .card-rounded {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
    }

    .card-rounded:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px -15px rgba(255, 0, 128, 0.25);
      border-color: rgba(255, 0, 128, 0.35);
    }

    .badge-pill {
      display: inline-flex;
      align-items: center;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
    }

    /* 板块 1: Hero Bento 架构 */
    .hero-bento-section {
      padding-top: 120px;
      padding-bottom: 60px;
      position: relative;
    }

    .hero-bento-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-template-rows: auto auto;
      gap: 24px;
    }

    .bento-main-block {
      grid-row: 1 / 3;
      position: relative;
      background-size: cover;
      background-position: center;
      border-radius: var(--radius-lg);
      padding: 50px 44px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 480px;
      border: 1px solid var(--border-light);
      overflow: hidden;
    }

    .bento-main-block::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 14, 20, 0.2) 0%, rgba(11, 14, 20, 0.95) 100%);
      z-index: 1;
    }

    .bento-main-content {
      position: relative;
      z-index: 2;
    }

    .hero-h1 {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 18px;
      color: #FFFFFF;
    }

    .hero-h1 span {
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-summary-text {
      font-size: 16px;
      color: #CBD5E1;
      margin-bottom: 26px;
      line-height: 1.8;
      max-width: 640px;
    }

    .bento-sub-block {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 26px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition-smooth);
    }

    .bento-sub-block:hover {
      border-color: rgba(0, 223, 216, 0.4);
      transform: translateY(-3px);
    }

    .hero-metrics-bar {
      margin-top: 24px;
      background: rgba(24, 32, 47, 0.85);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 16px 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .metric-item {
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .metric-item:last-child {
      border-right: none;
    }

    .metric-num {
      font-size: 26px;
      font-weight: 800;
      color: #FFFFFF;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .metric-label {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* 板块 2: 服务矩阵卡片 */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .service-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(255, 0, 128, 0.12);
      border: 1px solid rgba(255, 0, 128, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .service-icon-box svg {
      width: 26px;
      height: 26px;
      fill: #FF0080;
    }

    /* 板块 3: 核心分类专属入口 */
    .category-entry-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .cat-entry-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      border: 1px solid var(--border-light);
      background-size: cover;
      background-position: center;
      transition: var(--transition-smooth);
    }

    .cat-entry-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 14, 20, 0.1) 0%, rgba(11, 14, 20, 0.9) 100%);
      transition: var(--transition-smooth);
    }

    .cat-entry-card:hover {
      transform: translateY(-6px) scale(1.02);
      border-color: #FF0080;
      box-shadow: 0 16px 36px var(--brand-glow);
    }

    .cat-entry-content {
      position: relative;
      z-index: 2;
    }

    .cat-entry-title {
      font-size: 19px;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 4px;
    }

    .cat-entry-count {
      font-size: 12px;
      color: var(--accent-cyan);
    }

    /* 板块 4: 画质与流媒体对照表 */
    .compare-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .compare-card {
      border-radius: var(--radius-lg);
      padding: 36px;
      border: 1px solid var(--border-light);
    }

    .compare-card.standard {
      background: #111622;
      opacity: 0.85;
    }

    .compare-card.premium {
      background: linear-gradient(145deg, #18202F 0%, #1c152a 100%);
      border-color: rgba(255, 0, 128, 0.5);
      box-shadow: 0 16px 40px rgba(121, 40, 202, 0.2);
    }

    .compare-list {
      list-style: none;
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .compare-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 15px;
      color: var(--text-muted);
    }

    .compare-list li strong {
      color: var(--text-main);
    }

    .compare-card.premium .compare-list li {
      color: #E2E8F0;
    }

    .compare-badge-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      flex-shrink: 0;
    }

    .icon-cross {
      background: rgba(239, 68, 68, 0.2);
      color: #EF4444;
      border: 1px solid rgba(239, 68, 68, 0.4);
    }

    .icon-check {
      background: rgba(0, 223, 216, 0.2);
      color: var(--accent-cyan);
      border: 1px solid rgba(0, 223, 216, 0.4);
    }

    /* 板块 5: 影视精选卡片墙 */
    .stream-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .stream-film-card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border-light);
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
    }

    .stream-film-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 36px var(--brand-glow);
      border-color: rgba(255, 0, 128, 0.5);
    }

    .film-cover-box {
      position: relative;
      width: 100%;
      height: 250px;
      overflow: hidden;
      background: #1A2234;
    }

    .film-cover-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .stream-film-card:hover .film-cover-box img {
      transform: scale(1.08);
    }

    .film-tag-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(11, 14, 20, 0.8);
      backdrop-filter: blur(8px);
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      font-size: 11px;
      font-weight: 600;
      color: var(--accent-cyan);
      border: 1px solid rgba(0, 223, 216, 0.3);
    }

    .film-score-badge {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: var(--brand-gradient);
      padding: 3px 9px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      color: #FFFFFF;
    }

    .film-info-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .film-title-text {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-main);
    }

    .film-desc-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    /* 板块 6: 平台演进里程碑 */
    .timeline-milestones {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .timeline-node-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 26px 22px;
      position: relative;
      transition: var(--transition-smooth);
    }

    .timeline-node-card:hover {
      border-color: var(--accent-cyan);
      transform: translateY(-4px);
    }

    .milestone-order {
      font-size: 13px;
      font-weight: 700;
      color: var(--accent-cyan);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .milestone-order::after {
      content: "";
      flex-grow: 1;
      height: 1px;
      background: rgba(0, 223, 216, 0.2);
    }

    /* 板块 7: 多设备互联协同 */
    .device-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .device-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 26px;
      transition: var(--transition-smooth);
    }

    .device-card:hover {
      border-color: rgba(255, 0, 128, 0.4);
      transform: translateY(-4px);
    }

    /* 板块 8: 独家策划专栏 */
    .curation-banner-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .curation-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      border: 1px solid var(--border-light);
      background-size: cover;
      background-position: center;
    }

    .curation-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(11, 14, 20, 0.95) 15%, rgba(11, 14, 20, 0.3) 100%);
    }

    .curation-meta {
      position: relative;
      z-index: 2;
    }

    /* 板块 9: 资讯列表 */
    .article-post-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .article-post-item {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 26px;
      display: flex;
      gap: 20px;
      transition: var(--transition-smooth);
    }

    .article-post-item:hover {
      border-color: var(--accent-cyan);
      transform: translateY(-4px);
    }

    .article-post-item .article-icon-area {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: rgba(0, 223, 216, 0.12);
      border: 1px solid rgba(0, 223, 216, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .article-post-item .article-icon-area svg {
      width: 24px;
      height: 24px;
      fill: var(--accent-cyan);
    }

    /* 板块 10: 平台保障体系 */
    .guarantee-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .guarantee-card {
      background: linear-gradient(180deg, #18202F 0%, #121721 100%);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 32px;
      text-align: left;
    }

    /* 板块 11: 极速上手使用步骤 */
    .steps-chain-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      counter-reset: step-counter;
    }

    .step-chain-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 28px 22px;
      position: relative;
    }

    .step-badge-number {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--brand-gradient);
      color: #FFFFFF;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      box-shadow: 0 4px 12px var(--brand-glow);
    }

    /* 板块 12: 观影痛点方案 */
    .scenario-sol-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .scenario-sol-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 30px;
      border-top: 3px solid #FF0080;
    }

    /* 板块 13: 常见疑难问题 FAQ */
    .faq-accordion-box {
      max-width: 880px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-q-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      transition: var(--transition-smooth);
    }

    .faq-q-item:hover {
      border-color: rgba(255, 0, 128, 0.4);
    }

    .faq-q-title {
      font-size: 17px;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .faq-q-title::before {
      content: "Q";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 6px;
      background: rgba(121, 40, 202, 0.3);
      color: #FF70A6;
      font-size: 13px;
      font-weight: 800;
    }

    .faq-a-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      padding-left: 36px;
    }

    /* 板块 14: 需求与求片转化表单 */
    .conversion-form-wrap {
      background: linear-gradient(135deg, #18202F 0%, #151a24 100%);
      border: 1px solid rgba(255, 0, 128, 0.35);
      border-radius: var(--radius-lg);
      padding: 48px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
      max-width: 920px;
      margin: 0 auto;
    }

    .film-request-form {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group-full {
      grid-column: 1 / 3;
    }

    .form-field-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #CBD5E1;
      margin-bottom: 8px;
    }

    .form-input-text,
    .form-select {
      width: 100%;
      height: 48px;
      background: #121721;
      border: 1px solid #334155;
      border-radius: 10px;
      padding: 0 16px;
      color: var(--text-main);
      font-size: 14px;
      outline: none;
      transition: var(--transition-smooth);
    }

    .form-input-text:focus,
    .form-select:focus {
      border-color: var(--border-focus);
      box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.25);
    }

    /* 页脚 Footer */
    .site-footer {
      background: #080A0F;
      border-top: 1px solid var(--border-light);
      padding: 60px 0 30px;
      margin-top: 40px;
    }

    .footer-top-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-disclaimer-text {
      font-size: 13px;
      color: var(--text-dark);
      line-height: 1.8;
      margin-top: 16px;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }

    .footer-tree-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-tree-list li {
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copyright {
      font-size: 13px;
      color: var(--text-dark);
    }

    .footer-health-status {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--accent-cyan);
    }

    /* 响应式媒体查询断点 */
    @media (max-width: 1024px) {
      .hero-bento-grid {
        grid-template-columns: 1fr;
      }
      .bento-main-block {
        grid-row: auto;
        min-height: 420px;
      }
      .service-grid,
      .timeline-milestones,
      .device-grid,
      .steps-chain-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .category-entry-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .stream-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hero-h1 {
        font-size: 30px;
      }
      .hero-metrics-bar {
        grid-template-columns: repeat(2, 1fr);
      }
      .metric-item:nth-child(2) {
        border-right: none;
      }
      .category-entry-grid {
        grid-template-columns: 1fr 1fr;
      }
      .compare-wrapper,
      .curation-banner-grid,
      .article-post-grid,
      .guarantee-grid,
      .scenario-sol-grid,
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .conversion-form-wrap {
        padding: 26px 20px;
      }
      .film-request-form {
        grid-template-columns: 1fr;
      }
      .form-group-full {
        grid-column: auto;
      }
      .drawer-panel {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .service-grid,
      .timeline-milestones,
      .device-grid,
      .steps-chain-grid,
      .category-entry-grid,
      .stream-cards-grid {
        grid-template-columns: 1fr;
      }
      .hero-metrics-bar {
        grid-template-columns: 1fr;
      }
      .metric-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 12px;
      }
      .metric-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .section-title {
        font-size: 24px;
      }
    }

/* roulang page: category2 */
:root {
      --bg-main: #0B0E14;
      --bg-surface: #121721;
      --bg-card: #18202F;
      --bg-card-hover: #1F2A3D;
      --brand-gradient: linear-gradient(135deg, #7928CA 0%, #FF0080 50%, #FF4D4D 100%);
      --brand-glow: rgba(255, 0, 128, 0.35);
      --accent-cyan: #00DFD8;
      --accent-gold: #F5A623;
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --text-dark: #64748B;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-focus: #FF0080;
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 9999px;
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover, a:focus {
      color: var(--accent-cyan);
      text-decoration: none;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section-wrap {
      padding: 64px 0;
      position: relative;
    }
    .section-header {
      margin-bottom: 36px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: rgba(121, 40, 202, 0.15);
      border: 1px solid rgba(255, 0, 128, 0.3);
      color: #FF70A6;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .section-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 780px;
    }
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 72px;
      z-index: 1000;
      background: rgba(11, 14, 20, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px var(--brand-glow);
    }
    .brand-icon svg {
      width: 20px;
      height: 20px;
      fill: #FFFFFF;
    }
    .brand-text {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .quick-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--accent-cyan);
      background: rgba(0, 223, 216, 0.1);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(0, 223, 216, 0.25);
    }
    .status-dot-pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-cyan);
      box-shadow: 0 0 10px var(--accent-cyan);
      animation: pulseAnim 2s infinite ease-in-out;
    }
    @keyframes pulseAnim {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }
    .drawer-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .drawer-trigger:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 0, 128, 0.5);
    }
    .drawer-trigger span {
      display: block;
      height: 2px;
      border-radius: 2px;
      background: var(--brand-gradient);
      transition: var(--transition-smooth);
    }
    .drawer-trigger span:nth-child(1) { width: 22px; }
    .drawer-trigger span:nth-child(2) { width: 16px; }
    .drawer-trigger span:nth-child(3) { width: 20px; }
    .drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(4, 6, 10, 0.85);
      backdrop-filter: blur(8px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-smooth);
    }
    .drawer-backdrop.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-panel {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 420px;
      max-width: 100%;
      background: #111622;
      border-left: 1px solid var(--border-light);
      z-index: 2001;
      box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 32px 26px;
      overflow-y: auto;
    }
    .drawer-backdrop.active .drawer-panel {
      transform: translateX(0);
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-light);
      margin-bottom: 20px;
    }
    .drawer-close-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 28px;
      line-height: 1;
      padding: 4px 8px;
      transition: var(--transition-smooth);
    }
    .drawer-close-btn:hover {
      color: #FF0080;
    }
    .drawer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 0 0 24px 0;
    }
    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 18px;
      border-radius: var(--radius-md);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-light);
    }
    .drawer-nav-item.active a, .drawer-nav-item a:hover {
      background: rgba(121, 40, 202, 0.2);
      border-color: rgba(255, 0, 128, 0.4);
      color: #FFF;
      box-shadow: 0 0 15px rgba(255, 0, 128, 0.15);
    }
    .drawer-quick-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }
    .drawer-quick-tags span {
      font-size: 12px;
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      color: var(--text-muted);
    }
    .btn-gradient {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: 12px;
      background: var(--brand-gradient);
      color: #FFFFFF !important;
      font-weight: 600;
      font-size: 15px;
      border: none;
      cursor: pointer;
      transition: var(--transition-smooth);
      box-shadow: 0 4px 18px var(--brand-glow);
    }
    .btn-gradient:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 8px 24px var(--brand-glow);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 24px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--text-main);
      font-weight: 600;
      font-size: 15px;
      transition: var(--transition-smooth);
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.3);
      color: #FFFFFF;
    }
    .banner-hero {
      padding-top: 130px;
      padding-bottom: 50px;
      background: radial-gradient(circle at 80% 20%, rgba(121, 40, 202, 0.25) 0%, rgba(11, 14, 20, 0) 70%),
                  radial-gradient(circle at 10% 80%, rgba(255, 0, 128, 0.15) 0%, rgba(11, 14, 20, 0) 60%),
                  var(--bg-main);
      border-bottom: 1px solid var(--border-light);
    }
    .banner-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 36px;
      align-items: center;
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      padding: 5px 14px;
      border-radius: var(--radius-pill);
      font-weight: 600;
    }
    .banner-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
    }
    .metric-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 16px;
      backdrop-filter: blur(10px);
    }
    .metric-box .num {
      font-size: 24px;
      font-weight: 800;
      color: var(--accent-cyan);
      line-height: 1.2;
    }
    .metric-box .label {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 4px;
    }
    .hero-panel-card {
      background: linear-gradient(145deg, #18202F 0%, #121721 100%);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6);
      position: relative;
      overflow: hidden;
    }
    .hero-panel-card::after {
      content: "";
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(255, 0, 128, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .filter-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      margin-bottom: 36px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      min-width: 60px;
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-item {
      padding: 5px 14px;
      font-size: 13px;
      border-radius: var(--radius-pill);
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-item:hover {
      color: #FFF;
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-item.active {
      background: var(--brand-gradient);
      color: #FFF;
      font-weight: 600;
      box-shadow: 0 2px 10px var(--brand-glow);
    }
    .drama-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .drama-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition-smooth);
      position: relative;
    }
    .drama-card:hover {
      transform: translateY(-6px);
      background: var(--bg-card-hover);
      border-color: rgba(255, 0, 128, 0.35);
      box-shadow: 0 16px 36px -10px rgba(255, 0, 128, 0.25);
    }
    .drama-poster {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #111622;
    }
    .drama-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .drama-card:hover .drama-poster img {
      transform: scale(1.06);
    }
    .drama-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 6px;
      background: rgba(11, 14, 20, 0.85);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--accent-cyan);
    }
    .drama-resolution {
      position: absolute;
      bottom: 12px;
      right: 12px;
      padding: 3px 8px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 4px;
      background: var(--brand-gradient);
      color: #FFF;
    }
    .drama-info {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .drama-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .drama-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-dark);
      margin-bottom: 12px;
    }
    .drama-score {
      color: var(--accent-gold);
      font-weight: 700;
    }
    .drama-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      flex-grow: 1;
    }
    .drama-action {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .drama-action .play-text {
      font-size: 13px;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .drama-action .play-text svg {
      width: 14px;
      height: 14px;
      fill: var(--accent-cyan);
    }
    .rank-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .rank-card {
      display: flex;
      align-items: center;
      gap: 18px;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 18px;
      transition: var(--transition-smooth);
    }
    .rank-card:hover {
      background: var(--bg-card);
      border-color: rgba(255, 0, 128, 0.3);
      transform: translateX(4px);
    }
    .rank-index {
      font-size: 32px;
      font-weight: 900;
      line-height: 1;
      width: 36px;
      text-align: center;
      font-style: italic;
    }
    .rank-1 { color: #FF4D4D; }
    .rank-2 { color: #FF0080; }
    .rank-3 { color: #7928CA; }
    .rank-other { color: var(--text-dark); }
    .rank-detail h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
    }
    .rank-detail p {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .rank-stat {
      font-size: 11px;
      color: var(--accent-cyan);
    }
    .feature-banner-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .feature-box {
      border-radius: var(--radius-lg);
      padding: 36px;
      background: linear-gradient(135deg, rgba(24, 32, 47, 0.8) 0%, rgba(18, 23, 33, 0.95) 100%);
      border: 1px solid var(--border-light);
      position: relative;
      overflow: hidden;
    }
    .feature-box::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--brand-gradient);
    }
    .feature-box h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .feature-box p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.7;
    }
    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      transition: var(--transition-smooth);
    }
    .faq-item:hover {
      border-color: rgba(255, 255, 255, 0.18);
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      cursor: pointer;
    }
    .faq-icon {
      width: 20px;
      height: 20px;
      color: var(--accent-cyan);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .faq-answer {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 48px;
    }
    .page-btn {
      min-width: 42px;
      height: 42px;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .page-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #FFF;
    }
    .page-btn.active {
      background: var(--brand-gradient);
      color: #FFF;
      border-color: transparent;
      box-shadow: 0 2px 10px var(--brand-glow);
    }
    .site-footer {
      background: #07090D;
      border-top: 1px solid var(--border-light);
      padding: 60px 0 30px;
      color: var(--text-muted);
      font-size: 14px;
      margin-top: 40px;
    }
    .footer-top-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .brand-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      color: #FFF;
      font-size: 14px;
      font-weight: 800;
    }
    .footer-col-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
    }
    .footer-link-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-link-list a {
      color: var(--text-dark);
      font-size: 13px;
    }
    .footer-link-list a:hover {
      color: var(--accent-cyan);
    }
    .footer-bottom-bar {
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
      color: var(--text-dark);
    }
    .status-indicator-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10B981;
      margin-right: 6px;
    }

    @media (max-width: 1024px) {
      .drama-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .rank-grid {
        grid-template-columns: 1fr;
      }
      .banner-grid {
        grid-template-columns: 1fr;
      }
      .footer-top-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 640px) {
      .drama-grid {
        grid-template-columns: 1fr;
      }
      .feature-banner-grid {
        grid-template-columns: 1fr;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .banner-metrics {
        grid-template-columns: 1fr;
      }
      .filter-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* roulang page: category1 */
:root {
      --bg-main: #0B0E14;
      --bg-surface: #121721;
      --bg-card: #18202F;
      --bg-card-hover: #1F2A3D;
      --brand-gradient: linear-gradient(135deg, #7928CA 0%, #FF0080 50%, #FF4D4D 100%);
      --brand-glow: rgba(255, 0, 128, 0.35);
      --accent-cyan: #00DFD8;
      --accent-gold: #F5A623;
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --text-dark: #64748B;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-focus: #FF0080;
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 9999px;
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      padding-top: 72px;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover, a:focus {
      color: var(--accent-cyan);
      text-decoration: none;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section-wrap {
      padding: 60px 0;
      position: relative;
    }
    .section-header {
      margin-bottom: 36px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: rgba(121, 40, 202, 0.15);
      border: 1px solid rgba(255, 0, 128, 0.3);
      color: #FF70A6;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .section-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 780px;
      line-height: 1.7;
    }

    /* 顶部导航 Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 72px;
      z-index: 1000;
      background: rgba(11, 14, 20, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px var(--brand-glow);
    }
    .brand-icon svg {
      width: 20px;
      height: 20px;
      fill: #FFFFFF;
    }
    .brand-text {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .brand-badge-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      color: #fff;
      margin-right: 12px;
      vertical-align: middle;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .quick-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--accent-cyan);
      background: rgba(0, 223, 216, 0.1);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(0, 223, 216, 0.25);
    }
    .status-dot-pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-cyan);
      box-shadow: 0 0 10px var(--accent-cyan);
      display: inline-block;
      animation: pulseGlow 2s infinite ease-in-out;
    }
    @keyframes pulseGlow {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.85); }
    }
    .drawer-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .drawer-trigger:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 0, 128, 0.5);
    }
    .drawer-trigger span {
      display: block;
      height: 2px;
      border-radius: 2px;
      background: var(--brand-gradient);
      transition: var(--transition-smooth);
    }
    .drawer-trigger span:nth-child(1) { width: 22px; }
    .drawer-trigger span:nth-child(2) { width: 16px; }
    .drawer-trigger span:nth-child(3) { width: 20px; }

    /* 全屏侧滑抽屉导航 */
    .drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(4, 6, 10, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-smooth);
    }
    .drawer-backdrop.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-panel {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 420px;
      max-width: 100%;
      background: #111622;
      border-left: 1px solid var(--border-light);
      z-index: 2001;
      box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 30px;
      overflow-y: auto;
    }
    .drawer-backdrop.active .drawer-panel {
      transform: translateX(0);
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border-light);
      margin-bottom: 24px;
    }
    .drawer-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
    }
    .drawer-close-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 28px;
      line-height: 1;
      padding: 4px 8px;
      transition: var(--transition-smooth);
    }
    .drawer-close-btn:hover {
      color: #FF0080;
    }
    .drawer-nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 18px;
      border-radius: var(--radius-md);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      transition: var(--transition-smooth);
    }
    .drawer-nav-item a:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 0, 128, 0.4);
      color: #FF70A6;
    }
    .drawer-nav-item.active a {
      background: linear-gradient(90deg, rgba(121, 40, 202, 0.25) 0%, rgba(255, 0, 128, 0.15) 100%);
      border-color: rgba(255, 0, 128, 0.5);
      color: #FFF;
    }
    .drawer-tag {
      font-size: 11px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      background: rgba(0, 223, 216, 0.15);
      color: var(--accent-cyan);
    }
    .drawer-nav-item.active .drawer-tag {
      background: var(--brand-gradient);
      color: #FFF;
    }
    .drawer-footer-block {
      margin-top: auto;
      padding-top: 24px;
      border-top: 1px solid var(--border-light);
    }

    /* 试用申请 Hero 区域 (蓝图规范) */
    .trial-hero-section {
      position: relative;
      background: linear-gradient(180deg, rgba(18, 23, 33, 0.8) 0%, #0B0E14 100%), url('/assets/images/f126fefa7c20a1f9.jpg') center/cover no-repeat;
      padding: 70px 0 50px;
      border-bottom: 1px solid var(--border-light);
      overflow: hidden;
    }
    .trial-hero-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(121, 40, 202, 0.3) 0%, transparent 60%);
      pointer-events: none;
    }
    .trial-hero-card {
      background: rgba(24, 32, 47, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
      position: relative;
      z-index: 2;
    }
    .hero-h1-title {
      font-size: 36px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 16px;
      color: var(--text-main);
    }
    .hero-h1-title .glow-word {
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 24px;
    }
    .privilege-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }
    .privilege-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-main);
    }
    .privilege-badge svg {
      width: 16px;
      height: 16px;
      fill: var(--accent-cyan);
    }
    .trial-apply-box {
      background: #121721;
      border: 1px solid rgba(255, 0, 128, 0.3);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .trial-condition-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .trial-condition-row svg {
      width: 16px;
      height: 16px;
      fill: #10B981;
      flex-shrink: 0;
    }
    .trial-action-form {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .trial-input {
      flex: 1;
      min-width: 220px;
      background: #0B0E14;
      border: 1px solid #334155;
      border-radius: 10px;
      padding: 12px 16px;
      color: #FFF;
      font-size: 14px;
      outline: none;
      transition: var(--transition-smooth);
    }
    .trial-input:focus {
      border-color: var(--border-focus);
      box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.2);
    }
    .btn-gradient {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--brand-gradient);
      color: #FFF;
      font-size: 15px;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 20px var(--brand-glow);
      transition: var(--transition-smooth);
    }
    .btn-gradient:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 25px rgba(255, 0, 128, 0.45);
      color: #FFF;
    }
    .hero-stat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
    }
    .stat-pill {
      background: rgba(255, 255, 255, 0.03);
      border: 1pxsolid var(--border-light);
      border-radius: var(--radius-md);
      padding: 14px 18px;
      text-align: center;
    }
    .stat-pill .num {
      font-size: 22px;
      font-weight: 800;
      color: var(--accent-cyan);
      display: block;
    }
    .stat-pill .lbl {
      font-size: 12px;
      color: var(--text-dark);
      margin-top: 4px;
    }

    /* 多维筛选器组件 */
    .filter-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      margin-bottom: 40px;
    }
    .filter-group {
      display: flex;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-group:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-title {
      width: 72px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      flex-shrink: 0;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-item {
      font-size: 13px;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition-smooth);
      background: transparent;
      border: 1px solid transparent;
    }
    .filter-item:hover {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-item.active {
      background: var(--brand-gradient);
      color: #FFF;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(255, 0, 128, 0.3);
    }

    /* 影视瀑布流网格海报卡 */
    .movie-poster-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }
    .movie-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition-smooth);
      position: relative;
    }
    .movie-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 0, 128, 0.4);
      box-shadow: 0 16px 35px -10px rgba(255, 0, 128, 0.2);
    }
    .movie-thumb-wrap {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #000;
    }
    .movie-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .movie-card:hover .movie-thumb-wrap img {
      transform: scale(1.05);
    }
    .movie-badge-top {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(11, 14, 20, 0.75);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--accent-cyan);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--radius-pill);
    }
    .movie-res-tag {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: var(--brand-gradient);
      color: #FFF;
      font-size: 11px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 4px;
    }
    .movie-body {
      padding: 18px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .movie-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .movie-meta {
      font-size: 12px;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .movie-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      flex: 1;
    }
    .movie-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 14px;
    }
    .movie-score {
      color: var(--accent-gold);
      font-size: 14px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .play-link-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: #FF70A6;
    }
    .play-link-btn:hover {
      color: var(--accent-cyan);
    }

    /* 榜单卡片样式 Top 10 */
    .top-rank-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .top-rank-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: var(--transition-smooth);
    }
    .top-rank-item:hover {
      background: var(--bg-card-hover);
      border-color: rgba(255, 0, 128, 0.3);
      transform: translateX(4px);
    }
    .rank-order-num {
      font-size: 26px;
      font-weight: 900;
      font-style: italic;
      color: var(--text-dark);
      width: 32px;
      text-align: center;
      flex-shrink: 0;
    }
    .rank-order-1 { color: #FF0080; text-shadow: 0 0 10px rgba(255, 0, 128, 0.5); }
    .rank-order-2 { color: #FF70A6; }
    .rank-order-3 { color: var(--accent-cyan); }
    .rank-info {
      flex: 1;
      overflow: hidden;
    }
    .rank-film-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      margin-bottom: 4px;
    }
    .rank-film-type {
      font-size: 12px;
      color: var(--text-dark);
    }
    .rank-film-rate {
      font-size: 13px;
      font-weight: 700;
      color: var(--accent-gold);
    }

    /* 专题策展横幅大卡 */
    .curation-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .curation-banner-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 30px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 240px;
    }
    .curation-banner-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 14, 20, 0.3) 0%, rgba(11, 14, 20, 0.92) 80%);
      z-index: 1;
    }
    .curation-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      transition: transform 0.6s ease;
    }
    .curation-banner-card:hover .curation-bg-img {
      transform: scale(1.05);
    }
    .curation-content {
      position: relative;
      z-index: 2;
    }
    .curation-tag-pill {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      color: var(--accent-cyan);
      background: rgba(0, 223, 216, 0.15);
      border: 1px solid rgba(0, 223, 216, 0.3);
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      margin-bottom: 10px;
    }
    .curation-title {
      font-size: 22px;
      font-weight: 800;
      color: #FFF;
      margin-bottom: 8px;
    }
    .curation-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    /* 播放调优技巧手风琴卡片 */
    .tips-accordion-group {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .tips-accordion-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 22px 26px;
      transition: var(--transition-smooth);
    }
    .tips-accordion-card:hover {
      border-color: rgba(255, 0, 128, 0.3);
      background: var(--bg-card);
    }
    .tips-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .tips-title-text {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .tips-icon-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--brand-gradient);
    }
    .tips-body-text {
      margin-top: 12px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      padding-left: 22px;
    }

    /* 分页导航与页码条 */
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 50px;
    }
    .page-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 42px;
      height: 42px;
      padding: 0 14px;
      border-radius: 10px;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .page-btn:hover {
      background: var(--bg-card-hover);
      color: var(--text-main);
      border-color: rgba(255, 0, 128, 0.3);
    }
    .page-btn.active {
      background: var(--brand-gradient);
      color: #FFF;
      border-color: transparent;
      box-shadow: 0 4px 15px rgba(255, 0, 128, 0.35);
    }

    /* 页脚 Footer 规范 */
    .site-footer {
      background: #07090E;
      border-top: 1px solid var(--border-light);
      padding: 60px 0 30px;
      margin-top: 60px;
    }
    .footer-top-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }
    .footer-link-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-link-list a {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-link-list a:hover {
      color: var(--accent-cyan);
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      padding: 5px 12px;
      border-radius: var(--radius-pill);
    }
    .status-indicator-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10B981;
      display: inline-block;
    }
    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-dark);
      flex-wrap: wrap;
      gap: 16px;
    }

    /* 响应式断点控制 */
    @media (max-width: 1024px) {
      .movie-poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .top-rank-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-top-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 768px) {
      .hero-h1-title {
        font-size: 28px;
      }
      .movie-poster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .curation-grid {
        grid-template-columns: 1fr;
      }
      .hero-stat-grid {
        grid-template-columns: 1fr;
      }
      .top-rank-grid {
        grid-template-columns: 1fr;
      }
      .filter-card {
        padding: 16px;
      }
    }
    @media (max-width: 520px) {
      .movie-poster-grid {
        grid-template-columns: 1fr;
      }
      .trial-hero-card {
        padding: 20px;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
    }

/* roulang page: category4 */
:root {
      --bg-main: #0B0E14;
      --bg-surface: #121721;
      --bg-card: #18202F;
      --bg-card-hover: #1F2A3D;
      --brand-gradient: linear-gradient(135deg, #7928CA 0%, #FF0080 50%, #FF4D4D 100%);
      --brand-glow: rgba(255, 0, 128, 0.35);
      --accent-cyan: #00DFD8;
      --accent-gold: #F5A623;
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --text-dark: #64748B;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-focus: #FF0080;
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 9999px;
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover, a:focus {
      color: var(--accent-cyan);
      text-decoration: none;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section-wrap {
      padding: 60px 0;
      position: relative;
    }
    .section-header {
      margin-bottom: 32px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: rgba(121, 40, 202, 0.15);
      border: 1px solid rgba(255, 0, 128, 0.3);
      color: #FF70A6;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .section-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 780px;
    }

    /* 顶部导航 Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 72px;
      z-index: 1000;
      background: rgba(11, 14, 20, 0.82);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px var(--brand-glow);
    }
    .brand-icon svg {
      width: 20px;
      height: 20px;
      fill: #FFFFFF;
    }
    .brand-text {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .quick-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--accent-cyan);
      background: rgba(0, 223, 216, 0.1);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(0, 223, 216, 0.25);
    }
    .status-dot-pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-cyan);
      box-shadow: 0 0 10px var(--accent-cyan);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(0.95); opacity: 0.8; }
      50% { transform: scale(1.2); opacity: 1; }
      100% { transform: scale(0.95); opacity: 0.8; }
    }
    .drawer-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .drawer-trigger:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 0, 128, 0.5);
    }
    .drawer-trigger span {
      display: block;
      height: 2px;
      border-radius: 2px;
      background: var(--brand-gradient);
      transition: var(--transition-smooth);
    }
    .drawer-trigger span:nth-child(1) { width: 22px; }
    .drawer-trigger span:nth-child(2) { width: 16px; }
    .drawer-trigger span:nth-child(3) { width: 20px; }

    /* 全屏侧滑抽屉导航 */
    .drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(4, 6, 10, 0.8);
      backdrop-filter: blur(8px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-smooth);
    }
    .drawer-backdrop.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-panel {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 420px;
      max-width: 100%;
      background: #111622;
      border-left: 1px solid var(--border-light);
      z-index: 2001;
      box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 30px;
      overflow-y: auto;
    }
    .drawer-backdrop.active .drawer-panel {
      transform: translateX(0);
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-light);
      margin-bottom: 20px;
    }
    .drawer-close-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 28px;
      line-height: 1;
      padding: 4px 8px;
      transition: var(--transition-smooth);
    }
    .drawer-close-btn:hover {
      color: #FF0080;
    }
    .drawer-nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
    }
    .drawer-nav-item a:hover,
    .drawer-nav-item.active a {
      background: rgba(121, 40, 202, 0.15);
      border-color: rgba(255, 0, 128, 0.3);
      color: #FF70A6;
    }

    /* 分类头部看板 Banner */
    .category-hero {
      margin-top: 72px;
      padding: 60px 0 40px;
      background: radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.12), transparent 45%),
                  radial-gradient(circle at 10% 80%, rgba(121, 40, 202, 0.15), transparent 40%),
                  var(--bg-main);
      border-bottom: 1px solid var(--border-light);
    }
    .category-hero-inner {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .category-h1 {
      font-size: 38px;
      font-weight: 800;
      letter-spacing: -0.5px;
      line-height: 1.25;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin: 0;
    }
    .stats-badge-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }
    .stat-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: var(--text-muted);
    }
    .stat-pill strong {
      color: var(--accent-cyan);
      font-weight: 700;
    }

    /* 多维维度筛选器组件 */
    .filter-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      margin-top: -20px;
      margin-bottom: 40px;
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }
    .filter-row {
      display: flex;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 80px;
      flex-shrink: 0;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-btn {
      display: inline-block;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: var(--text-muted);
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-btn:hover {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-btn.active {
      color: #FFFFFF;
      background: var(--brand-gradient);
      box-shadow: 0 2px 10px var(--brand-glow);
    }

    /* 影视瀑布流海报大卡 */
    .media-card-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .media-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition-smooth);
      position: relative;
    }
    .media-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 0, 128, 0.4);
      box-shadow: 0 20px 40px -15px var(--brand-glow);
      background: var(--bg-card-hover);
    }
    .media-thumb-wrap {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #000;
    }
    .media-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .media-card:hover .media-thumb {
      transform: scale(1.06);
    }
    .badge-resolution {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      background: rgba(11, 14, 20, 0.75);
      border: 1px solid rgba(0, 223, 216, 0.5);
      color: var(--accent-cyan);
      backdrop-filter: blur(8px);
    }
    .badge-status {
      position: absolute;
      top: 12px;
      right: 12px;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      font-size: 11px;
      font-weight: 600;
      background: rgba(255, 0, 128, 0.85);
      color: #FFFFFF;
      backdrop-filter: blur(8px);
    }
    .media-info {
      padding: 18px 20px 22px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .media-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .media-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex-grow: 1;
    }
    .media-meta-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 12px;
      font-size: 12px;
      color: var(--text-dark);
    }
    .media-score {
      color: var(--accent-gold);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* 分类专属高分排行榜 (Top 10) */
    .ranking-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .ranking-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      position: relative;
      overflow: hidden;
      transition: var(--transition-smooth);
    }
    .ranking-card:hover {
      border-color: rgba(255, 0, 128, 0.4);
      transform: translateY(-4px);
    }
    .rank-number {
      font-size: 32px;
      font-weight: 900;
      font-style: italic;
      line-height: 1;
      color: var(--text-dark);
      opacity: 0.5;
      width: 36px;
      text-align: center;
      flex-shrink: 0;
    }
    .rank-number.top1 {
      color: #FF4D4D;
      opacity: 1;
      text-shadow: 0 0 12px rgba(255, 77, 77, 0.5);
    }
    .rank-number.top2 {
      color: #FF0080;
      opacity: 1;
      text-shadow: 0 0 12px rgba(255, 0, 128, 0.5);
    }
    .rank-number.top3 {
      color: #7928CA;
      opacity: 1;
      text-shadow: 0 0 12px rgba(121, 40, 202, 0.5);
    }
    .rank-details {
      display: flex;
      flex-direction: column;
      gap: 4px;
      overflow: hidden;
    }
    .rank-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-hot {
      font-size: 12px;
      color: var(--accent-cyan);
    }

    /* 本分类专题策展专栏 */
    .curation-banner-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .curation-banner-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border-light);
      background: var(--bg-card);
      min-height: 220px;
      display: flex;
      align-items: flex-end;
      padding: 30px;
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }
    .curation-banner-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0.45;
      filter: saturate(1.2);
      transition: transform 0.6s ease;
    }
    .curation-banner-card:hover .curation-banner-bg {
      transform: scale(1.05);
    }
    .curation-banner-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 14, 20, 0.2) 0%, rgba(11, 14, 20, 0.95) 100%);
    }
    .curation-content {
      position: relative;
      z-index: 2;
    }
    .curation-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
      background: var(--brand-gradient);
      color: #FFFFFF;
      margin-bottom: 10px;
    }
    .curation-title {
      font-size: 22px;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 8px;
    }
    .curation-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 480px;
    }

    /* 播放调优与常见问题手风琴卡 */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .faq-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-q {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .faq-icon-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-cyan);
      flex-shrink: 0;
    }
    .faq-a {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 分页控制器 */
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 50px;
    }
    .page-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 14px;
      border-radius: var(--radius-md);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .page-btn:hover {
      color: var(--text-main);
      border-color: rgba(255, 0, 128, 0.4);
      background: var(--bg-card);
    }
    .page-btn.active {
      color: #FFFFFF;
      background: var(--brand-gradient);
      border-color: transparent;
      box-shadow: 0 4px 15px var(--brand-glow);
    }

    /* 统一页脚 Footer */
    .site-footer {
      background: #080A0E;
      border-top: 1px solid var(--border-light);
      padding: 60px 0 30px;
      margin-top: 70px;
    }
    .footer-top-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .footer-col-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
    }
    .footer-link-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-link-list a {
      font-size: 14px;
      color: var(--text-muted);
    }
    .footer-link-list a:hover {
      color: var(--accent-cyan);
    }
    .footer-bottom-bar {
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
      color: var(--text-dark);
    }
    .brand-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--brand-gradient);
      color: #FFF;
      font-size: 12px;
      font-weight: 800;
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 12px;
    }
    .status-indicator-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10B981;
    }

    /* 响应式断点控制 */
    @media (max-width: 1024px) {
      .media-card-grid { grid-template-columns: repeat(3, 1fr); }
      .ranking-grid { grid-template-columns: repeat(3, 1fr); }
      .faq-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    }
    @media (max-width: 768px) {
      .category-h1 { font-size: 28px; }
      .media-card-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .ranking-grid { grid-template-columns: 1fr 1fr; }
      .curation-banner-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-top-grid { grid-template-columns: 1fr; }
      .filter-panel { padding: 16px; }
      .filter-row { flex-direction: column; align-items: flex-start; gap: 8px; }
      .filter-label { width: 100%; }
    }
    @media (max-width: 520px) {
      .media-card-grid { grid-template-columns: 1fr; }
      .ranking-grid { grid-template-columns: 1fr; }
      .category-hero { padding: 40px 0 24px; }
      .section-wrap { padding: 40px 0; }
    }

/* roulang page: category3 */
:root {
      --bg-main: #0B0E14;
      --bg-surface: #121721;
      --bg-card: #18202F;
      --bg-card-hover: #1F2A3D;
      --brand-gradient: linear-gradient(135deg, #7928CA 0%, #FF0080 50%, #FF4D4D 100%);
      --brand-glow: rgba(255, 0, 128, 0.35);
      --accent-cyan: #00DFD8;
      --accent-gold: #F5A623;
      --accent-purple: #9D4EDD;
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --text-dark: #64748B;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-focus: #FF0080;
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-sm: 8px;
      --radius-pill: 9999px;
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover, a:focus {
      color: var(--accent-cyan);
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-wrap {
      padding: 60px 0;
      position: relative;
    }

    .section-header {
      margin-bottom: 36px;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: rgba(121, 40, 202, 0.18);
      border: 1px solid rgba(255, 0, 128, 0.35);
      color: #FF70A6;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    .section-title {
      font-size: 30px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .section-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 780px;
      line-height: 1.6;
    }

    /* 顶部导航 Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 72px;
      z-index: 1000;
      background: rgba(11, 14, 20, 0.86);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      display: flex;
      align-items: center;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px var(--brand-glow);
    }

    .brand-icon svg {
      width: 20px;
      height: 20px;
      fill: #FFFFFF;
    }

    .brand-text {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .quick-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--accent-cyan);
      background: rgba(0, 223, 216, 0.1);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(0, 223, 216, 0.25);
    }

    .status-dot-pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-cyan);
      box-shadow: 0 0 10px var(--accent-cyan);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(0.95); opacity: 0.8; }
      50% { transform: scale(1.2); opacity: 1; }
      100% { transform: scale(0.95); opacity: 0.8; }
    }

    .drawer-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .drawer-trigger:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 0, 128, 0.5);
    }

    .drawer-trigger span {
      display: block;
      height: 2px;
      border-radius: 2px;
      background: var(--brand-gradient);
      transition: var(--transition-smooth);
    }

    .drawer-trigger span:nth-child(1) { width: 22px; }
    .drawer-trigger span:nth-child(2) { width: 16px; }
    .drawer-trigger span:nth-child(3) { width: 20px; }

    /* 全屏侧滑抽屉导航 */
    .drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(4, 6, 10, 0.82);
      backdrop-filter: blur(8px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-smooth);
    }

    .drawer-backdrop.active {
      opacity: 1;
      visibility: visible;
    }

    .drawer-panel {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 420px;
      max-width: 100%;
      background: #111622;
      border-left: 1px solid var(--border-light);
      z-index: 2001;
      box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 30px;
      overflow-y: auto;
    }

    .drawer-backdrop.active .drawer-panel {
      transform: translateX(0);
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-light);
      margin-bottom: 24px;
    }

    .drawer-close-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 28px;
      line-height: 1;
      padding: 4px 8px;
      transition: var(--transition-smooth);
    }

    .drawer-close-btn:hover {
      color: #FF0080;
    }

    .drawer-nav-list {
      list-style: none;
      margin: 0 0 24px 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 18px;
      border-radius: var(--radius-md);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      transition: var(--transition-smooth);
    }

    .drawer-nav-item a:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 0, 128, 0.3);
      transform: translateX(4px);
      color: #FFF;
    }

    .drawer-nav-item.active a {
      background: linear-gradient(90deg, rgba(121, 40, 202, 0.35) 0%, rgba(255, 0, 128, 0.2) 100%);
      border: 1px solid rgba(255, 0, 128, 0.5);
      color: #FFF;
    }

    .drawer-nav-item .active-pill {
      font-size: 11px;
      padding: 2px 8px;
      background: var(--brand-gradient);
      border-radius: var(--radius-pill);
      color: #FFF;
    }

    /* 按钮与通用组件规范 */
    .btn-primary-gradient {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--brand-gradient);
      color: #FFFFFF !important;
      font-weight: 700;
      padding: 12px 26px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 20px var(--brand-glow);
      transition: var(--transition-smooth);
      font-size: 15px;
    }

    .btn-primary-gradient:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 25px rgba(255, 0, 128, 0.5);
    }

    .btn-outline-sub {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main) !important;
      font-weight: 600;
      padding: 11px 22px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      cursor: pointer;
      transition: var(--transition-smooth);
      font-size: 14px;
    }

    .btn-outline-sub:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--accent-cyan);
      color: var(--accent-cyan) !important;
    }

    /* 蓝图：Hero 秒杀闪购条 / 限时首发热映看板 */
    .category-hero-wrap {
      padding-top: 104px;
      padding-bottom: 40px;
      background: linear-gradient(180deg, rgba(18, 23, 33, 0.85) 0%, rgba(11, 14, 20, 1) 100%),
                  url('/assets/images/ee66e8f2d7a75362.jpg') center top / cover no-repeat;
      position: relative;
    }

    .category-hero-header {
      margin-bottom: 30px;
    }

    .category-hero-title {
      font-size: 38px;
      font-weight: 800;
      letter-spacing: -0.5px;
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .category-hero-title span {
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .category-hero-desc {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 820px;
      line-height: 1.7;
    }

    /* 闪映倒计时主推大卡 */
    .flash-premiere-card {
      background: linear-gradient(135deg, rgba(24, 32, 47, 0.95) 0%, rgba(31, 42, 61, 0.95) 100%);
      border: 1px solid rgba(255, 0, 128, 0.35);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 0, 128, 0.15);
      position: relative;
      overflow: hidden;
    }

    .flash-premiere-card::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(121, 40, 202, 0.25) 0%, transparent 70%);
      pointer-events: none;
    }

    .flash-badge-strip {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .flash-pill {
      background: var(--brand-gradient);
      color: #FFF;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      letter-spacing: 0.5px;
    }

    .countdown-timer-box {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: var(--accent-gold);
    }

    .countdown-timer-box b {
      color: #FFF;
      font-family: monospace;
      font-size: 14px;
    }

    .premiere-content-grid {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 28px;
      align-items: center;
    }

    .premiere-poster {
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.5);
      position: relative;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .premiere-poster img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .premiere-poster:hover img {
      transform: scale(1.05);
    }

    .premiere-poster .res-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(4px);
      border: 1px solid var(--accent-cyan);
      color: var(--accent-cyan);
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
    }

    .premiere-info h3 {
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 10px;
      color: #FFF;
    }

    .premiere-meta-line {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .premiere-meta-line span {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .premiere-summary {
      font-size: 14px;
      color: #CBD5E1;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .premiere-action-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    /* 多维筛选器组件 */
    .filter-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 24px;
      margin-bottom: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .filter-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }

    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .filter-label {
      min-width: 60px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dark);
      padding-top: 5px;
    }

    .filter-tags-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-chip {
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .filter-chip:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #FFF;
    }

    .filter-chip.active {
      background: linear-gradient(135deg, rgba(121, 40, 202, 0.4) 0%, rgba(255, 0, 128, 0.4) 100%);
      border-color: rgba(255, 0, 128, 0.6);
      color: #FFF;
      font-weight: 600;
    }

    /* 番剧卡片网格系统 */
    .anime-card-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .anime-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .anime-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 0, 128, 0.4);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 128, 0.2);
    }

    .anime-thumb-box {
      position: relative;
      aspect-ratio: 3/4.2;
      overflow: hidden;
      background: #151A25;
    }

    .anime-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .anime-card:hover .anime-thumb-box img {
      transform: scale(1.08);
    }

    .anime-thumb-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(11, 14, 20, 0.85);
      border: 1px solid rgba(0, 223, 216, 0.35);
      color: var(--accent-cyan);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      backdrop-filter: blur(4px);
    }

    .anime-update-tag {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.78);
      color: #FFF;
      font-size: 11px;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .anime-card-body {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .anime-card-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .anime-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-dark);
    }

    .anime-score-badge {
      color: var(--accent-gold);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    /* 专属高分榜单与横向排行榜 */
    .ranking-list-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .ranking-rank-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 20px;
      display: flex;
      gap: 16px;
      align-items: center;
      transition: var(--transition-smooth);
    }

    .ranking-rank-card:hover {
      background: var(--bg-card);
      border-color: rgba(255, 0, 128, 0.35);
      transform: translateX(4px);
    }

    .ranking-number {
      font-size: 32px;
      font-weight: 900;
      line-height: 1;
      width: 44px;
      text-align: center;
      font-family: monospace;
    }

    .ranking-rank-card:nth-child(1) .ranking-number {
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .ranking-rank-card:nth-child(2) .ranking-number {
      color: var(--accent-cyan);
    }

    .ranking-rank-card:nth-child(3) .ranking-number {
      color: var(--accent-gold);
    }

    .ranking-rank-card:nth-child(n+4) .ranking-number {
      color: var(--text-dark);
    }

    .ranking-thumb {
      width: 64px;
      height: 84px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }

    .ranking-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ranking-details {
      flex: 1;
      min-width: 0;
    }

    .ranking-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ranking-desc {
      font-size: 12px;
      color: var(--text-dark);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ranking-hot-val {
      font-size: 11px;
      color: #FF70A6;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* 专题策展双栏横幅卡片 */
    .special-curation-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .curation-banner-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      min-height: 240px;
      display: flex;
      align-items: flex-end;
      padding: 30px;
      transition: var(--transition-smooth);
    }

    .curation-banner-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 14, 20, 0.2) 0%, rgba(11, 14, 20, 0.95) 100%);
      z-index: 1;
    }

    .curation-banner-card img.bg-poster {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .curation-banner-card:hover img.bg-poster {
      transform: scale(1.06);
    }

    .curation-banner-content {
      position: relative;
      z-index: 2;
    }

    .curation-badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      background: rgba(0, 223, 216, 0.2);
      border: 1px solid var(--accent-cyan);
      color: var(--accent-cyan);
      font-size: 11px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .curation-title {
      font-size: 22px;
      font-weight: 800;
      color: #FFF;
      margin-bottom: 8px;
    }

    .curation-desc {
      font-size: 13px;
      color: #CBD5E1;
      line-height: 1.6;
      margin-bottom: 14px;
      max-width: 460px;
    }

    /* 播放调校与技术疑难手风琴 */
    .troubleshoot-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .troubleshoot-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 24px;
      transition: var(--transition-smooth);
    }

    .troubleshoot-card:hover {
      border-color: rgba(0, 223, 216, 0.4);
      background: var(--bg-card);
    }

    .troubleshoot-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(0, 223, 216, 0.1);
      border: 1px solid rgba(0, 223, 216, 0.25);
      color: var(--accent-cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .troubleshoot-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .troubleshoot-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 分页控制器组件 */
    .pagination-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 50px;
    }

    .page-btn {
      min-width: 40px;
      height: 40px;
      padding: 0 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 600;
      transition: var(--transition-smooth);
    }

    .page-btn:hover {
      background: var(--bg-card-hover);
      color: #FFF;
      border-color: rgba(255, 0, 128, 0.4);
    }

    .page-btn.active {
      background: var(--brand-gradient);
      color: #FFF;
      border-color: transparent;
      box-shadow: 0 4px 15px var(--brand-glow);
    }

    /* 页脚 Footer */
    .site-footer {
      background: #07090E;
      border-top: 1px solid var(--border-light);
      padding: 60px 0 30px 0;
      margin-top: 40px;
    }

    .footer-top-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .brand-badge-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--brand-gradient);
      color: #FFF;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      margin-right: 8px;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }

    .footer-link-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-link-list a {
      font-size: 13px;
      color: var(--text-dark);
      transition: var(--transition-smooth);
    }

    .footer-link-list a:hover {
      color: var(--accent-cyan);
      transform: translateX(3px);
    }

    .footer-bottom-bar {
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-dark);
      flex-wrap: wrap;
      gap: 12px;
    }

    .status-indicator-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10B981;
      margin-right: 6px;
    }

    .badge-pill {
      display: inline-flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
    }

    /* 响应式断点控制 */
    @media (max-width: 1024px) {
      .anime-card-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .ranking-list-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .premiere-content-grid {
        grid-template-columns: 1fr;
      }
      .premiere-poster {
        max-width: 220px;
        margin: 0 auto;
      }
      .anime-card-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .ranking-list-grid {
        grid-template-columns: 1fr;
      }
      .special-curation-grid {
        grid-template-columns: 1fr;
      }
      .troubleshoot-grid {
        grid-template-columns: 1fr;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .category-hero-title {
        font-size: 28px;
      }
      .drawer-panel {
        width: 100%;
      }
    }

/* roulang page: category5 */
:root {
      --bg-main: #0B0E14;
      --bg-surface: #121721;
      --bg-card: #18202F;
      --bg-card-hover: #1F2A3D;
      --brand-gradient: linear-gradient(135deg, #7928CA 0%, #FF0080 50%, #FF4D4D 100%);
      --brand-glow: rgba(255, 0, 128, 0.35);
      --accent-cyan: #00DFD8;
      --accent-gold: #F5A623;
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --text-dark: #64748B;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-focus: #FF0080;
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 9999px;
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      padding-top: 72px;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover, a:focus {
      color: var(--accent-cyan);
      text-decoration: none;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section-wrap {
      padding: 60px 0;
      position: relative;
    }
    .section-header {
      margin-bottom: 32px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: rgba(121, 40, 202, 0.15);
      border: 1px solid rgba(255, 0, 128, 0.3);
      color: #FF70A6;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .section-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 780px;
    }

    /* 顶部导航 Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 72px;
      z-index: 1000;
      background: rgba(11, 14, 20, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px var(--brand-glow);
    }
    .brand-icon svg {
      width: 20px;
      height: 20px;
      fill: #FFFFFF;
    }
    .brand-text {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-fill-color: transparent;
      -webkit-text-fill-color: transparent;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .quick-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--accent-cyan);
      background: rgba(0, 223, 216, 0.1);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(0, 223, 216, 0.25);
    }
    .status-dot-pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: var(--accent-cyan);
      box-shadow: 0 0 8px var(--accent-cyan);
    }
    .drawer-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .drawer-trigger:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 0, 128, 0.5);
    }
    .drawer-trigger span {
      display: block;
      height: 2px;
      border-radius: 2px;
      background: var(--brand-gradient);
      transition: var(--transition-smooth);
    }
    .drawer-trigger span:nth-child(1) { width: 22px; }
    .drawer-trigger span:nth-child(2) { width: 16px; }
    .drawer-trigger span:nth-child(3) { width: 20px; }

    /* 全屏侧滑抽屉导航 */
    .drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(4, 6, 10, 0.8);
      backdrop-filter: blur(8px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-smooth);
    }
    .drawer-backdrop.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-panel {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 420px;
      max-width: 100%;
      background: #111622;
      border-left: 1px solid var(--border-light);
      z-index: 2001;
      box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 30px;
      overflow-y: auto;
    }
    .drawer-backdrop.active .drawer-panel {
      transform: translateX(0);
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-light);
      margin-bottom: 24px;
    }
    .drawer-close-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 28px;
      line-height: 1;
      padding: 4px 8px;
      transition: var(--transition-smooth);
    }
    .drawer-close-btn:hover {
      color: #FF0080;
    }
    .drawer-nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .drawer-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 18px;
      border-radius: var(--radius-md);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
    }
    .drawer-nav-item a:hover,
    .drawer-nav-item.active a {
      background: rgba(121, 40, 202, 0.15);
      border-color: rgba(255, 0, 128, 0.4);
      color: #FFF;
      box-shadow: 0 4px 15px rgba(255, 0, 128, 0.2);
    }
    .drawer-badge {
      font-size: 11px;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      background: var(--brand-gradient);
      color: #FFF;
    }

    /* 内页分类 Banner 看板 */
    .category-hero {
      background: linear-gradient(180deg, rgba(18, 23, 33, 0.95) 0%, rgba(11, 14, 20, 1) 100%), url('/assets/images/803d1dc68eef6702.jpg') center/cover no-repeat;
      padding: 50px 0 35px;
      border-bottom: 1px solid var(--border-light);
      position: relative;
    }
    .hero-metric-pill {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      background: rgba(24, 32, 47, 0.8);
      border: 1px solid var(--border-light);
      padding: 10px 20px;
      border-radius: var(--radius-pill);
      margin-top: 20px;
    }
    .metric-group {
      display: flex;
      align-items: baseline;
      gap: 6px;
    }
    .metric-value {
      font-size: 20px;
      font-weight: 700;
      color: var(--accent-cyan);
    }
    .metric-label {
      font-size: 13px;
      color: var(--text-muted);
    }
    .metric-divider {
      width: 1px;
      height: 16px;
      background: var(--border-light);
    }

    /* 多维维度筛选器 */
    .filter-board {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 20px 24px;
      margin-bottom: 40px;
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }
    .filter-row {
      display: flex;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .filter-row:last-child {
      border-bottom: none;
    }
    .filter-title {
      width: 70px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      flex-shrink: 0;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-chip {
      display: inline-block;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-chip:hover {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-chip.active {
      background: var(--brand-gradient);
      color: #FFFFFF;
      font-weight: 600;
      box-shadow: 0 2px 10px var(--brand-glow);
    }

    /* 影视瀑布流海报卡片 */
    .media-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
    }
    .media-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px -15px var(--brand-glow);
      border-color: rgba(255, 0, 128, 0.4);
    }
    .media-poster-wrap {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--bg-surface);
    }
    .media-poster {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .media-card:hover .media-poster {
      transform: scale(1.05);
    }
    .media-card-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(11, 14, 20, 0.85);
      backdrop-filter: blur(8px);
      color: var(--accent-cyan);
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(0, 223, 216, 0.3);
    }
    .media-score-badge {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: var(--brand-gradient);
      color: #FFFFFF;
      font-size: 12px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    }
    .media-card-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .media-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      line-height: 1.4;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .media-card-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex-grow: 1;
    }
    .media-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 10px;
      font-size: 12px;
      color: var(--text-dark);
    }

    /* 宽屏专题策展横幅 */
    .curation-banner-card {
      background: linear-gradient(90deg, rgba(24, 32, 47, 0.95) 0%, rgba(31, 42, 61, 0.85) 100%), url('/assets/images/ee5baced9f0294b1.jpg') center/cover no-repeat;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 36px;
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .curation-banner-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--brand-gradient);
    }

    /* 排行榜单卡片 */
    .rank-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: var(--transition-smooth);
    }
    .rank-card:hover {
      background: var(--bg-card-hover);
      border-color: rgba(255, 0, 128, 0.3);
      transform: translateX(4px);
    }
    .rank-num {
      font-size: 24px;
      font-weight: 800;
      width: 32px;
      text-align: center;
      font-style: italic;
    }
    .rank-top1 { color: #FF4D4D; text-shadow: 0 0 10px rgba(255, 77, 77, 0.5); }
    .rank-top2 { color: var(--accent-gold); }
    .rank-top3 { color: var(--accent-cyan); }
    .rank-normal { color: var(--text-dark); }
    .rank-info {
      flex-grow: 1;
    }
    .rank-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 4px;
    }
    .rank-meta {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* 播放保障手风琴 */
    .accordion-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 20px;
      margin-bottom: 16px;
      transition: var(--transition-smooth);
    }
    .accordion-card:hover {
      border-color: rgba(0, 223, 216, 0.4);
    }
    .accordion-q {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .accordion-a {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 按钮规范 */
    .btn-gradient {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--brand-gradient);
      color: #FFFFFF;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      transition: var(--transition-smooth);
      box-shadow: 0 4px 20px var(--brand-glow);
    }
    .btn-gradient:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 25px rgba(255, 0, 128, 0.5);
      color: #FFFFFF;
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--text-main);
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 12px;
      transition: var(--transition-smooth);
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: var(--accent-cyan);
      color: #FFFFFF;
    }

    /* 分页控制器 */
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 40px;
    }
    .page-btn {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 600;
      transition: var(--transition-smooth);
    }
    .page-btn:hover {
      background: var(--bg-card-hover);
      color: var(--text-main);
      border-color: rgba(255, 255, 255, 0.2);
    }
    .page-btn.active {
      background: var(--brand-gradient);
      color: #FFFFFF;
      border-color: transparent;
      box-shadow: 0 4px 15px var(--brand-glow);
    }

    /* 页脚 Footer */
    .site-footer {
      background: #080A0F;
      border-top: 1px solid var(--border-light);
      padding: 60px 0 30px;
      margin-top: 80px;
    }
    .footer-top-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .brand-badge-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFF;
      font-weight: 800;
      font-size: 14px;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
      position: relative;
      padding-left: 10px;
    }
    .footer-col-title::before {
      content: "";
      position: absolute;
      left: 0;
      top: 4px;
      bottom: 4px;
      width: 3px;
      background: var(--brand-gradient);
      border-radius: 2px;
    }
    .footer-link-list a {
      display: block;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 10px;
      transition: var(--transition-smooth);
    }
    .footer-link-list a:hover {
      color: var(--accent-cyan);
      transform: translateX(4px);
    }
    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-dark);
      flex-wrap: wrap;
      gap: 16px;
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
    }
    .status-indicator-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10B981;
    }

    @media (max-width: 1024px) {
      .footer-top-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 640px) {
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .section-title {
        font-size: 24px;
      }
      .drawer-panel {
        width: 100%;
      }
    }
