/* roulang page: index */
:root {
      --bg-cinema: #0B0E14;
      --bg-charcoal: #151922;
      --bg-surface: #1A1F2C;
      --bg-card: #202736;
      --primary-red: #E50914;
      --primary-hover: #ff1f2d;
      --accent-gold: #F5A623;
      --border-dark: #2C3545;
      --text-white: #FFFFFF;
      --text-gray: #9CA3AF;
      --text-muted: #6B7280;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-cinema: 0 16px 36px rgba(0, 0, 0, 0.45);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-cinema);
      color: var(--text-gray);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.68;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--text-white);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-header {
      background: rgba(11, 14, 20, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-dark);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 0.85rem 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: 0.5px;
    }
    .brand-logo .logo-icon {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--primary-red), #b20710);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      list-style: none;
      margin: 0;
    }
    .nav-menu a {
      font-size: 0.96rem;
      font-weight: 500;
      color: var(--text-gray);
      position: relative;
      padding: 0.4rem 0;
    }
    .nav-menu a.active, .nav-menu a:hover {
      color: var(--text-white);
    }
    .nav-menu a.active::after, .nav-menu a:hover::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--primary-red);
      border-radius: 2px;
    }
    .header-cta-group {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .btn-cinema {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: var(--primary-red);
      color: #fff;
      padding: 0.62rem 1.45rem;
      font-size: 0.94rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
      cursor: pointer;
    }
    .btn-cinema:hover {
      background-color: var(--primary-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(229, 9, 20, 0.5);
    }
    .btn-cinema-gold {
      background-color: var(--accent-gold);
      color: #0B0E14;
      box-shadow: 0 6px 20px rgba(245, 166, 35, 0.25);
    }
    .btn-cinema-gold:hover {
      background-color: #f7b23d;
      color: #0B0E14;
      transform: translateY(-2px);
    }
    .btn-cinema-outline {
      background: transparent;
      border: 1px solid var(--border-dark);
      color: var(--text-white);
    }
    .btn-cinema-outline:hover {
      border-color: var(--text-white);
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
    }
    .section-spacing {
      padding: 5rem 0;
      position: relative;
    }
    .section-darker {
      background-color: var(--bg-charcoal);
    }
    .section-surface {
      background-color: var(--bg-surface);
    }
    .sec-header {
      margin-bottom: 3.2rem;
    }
    .sec-tag {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--primary-red);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.6rem;
      background: rgba(229, 9, 20, 0.1);
      padding: 0.25rem 0.75rem;
      border-radius: 40px;
      border: 1px solid rgba(229, 9, 20, 0.2);
    }
    .sec-title {
      font-size: 2.15rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.8rem;
      line-height: 1.3;
    }
    .sec-desc {
      color: var(--text-gray);
      font-size: 1.02rem;
      max-width: 820px;
      margin: 0 auto;
    }
    .hero-crowdfund {
      position: relative;
      background-image: linear-gradient(180deg, rgba(11, 14, 20, 0.85) 0%, rgba(11, 14, 20, 0.96) 100%), url('/assets/images/e02d4bb4ef61543a.jpg');
      background-size: cover;
      background-position: center;
      padding: 5.5rem 0 6rem;
      border-bottom: 1px solid var(--border-dark);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 3.5rem;
      align-items: center;
    }
    .hero-h1 {
      font-size: 2.75rem;
      font-weight: 800;
      color: var(--text-white);
      line-height: 1.22;
      margin-bottom: 1.3rem;
    }
    .hero-h1 span {
      color: var(--primary-red);
    }
    .hero-p {
      font-size: 1.08rem;
      color: #CBD5E1;
      margin-bottom: 2rem;
      line-height: 1.8;
    }
    .crowd-progress-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-lg);
      padding: 2.2rem;
      box-shadow: var(--shadow-cinema);
    }
    .progress-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 1.2rem;
    }
    .progress-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text-white);
    }
    .progress-number em {
      font-size: 1rem;
      font-style: normal;
      color: var(--accent-gold);
      margin-left: 0.3rem;
    }
    .progress-bar-wrap {
      background: #11141b;
      height: 12px;
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 1.8rem;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }
    .progress-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
      width: 94%;
      border-radius: 6px;
    }
    .tier-list {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      margin-bottom: 1.8rem;
    }
    .tier-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.85rem 1rem;
      background: var(--bg-card);
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.04);
    }
    .tier-title {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-white);
    }
    .tier-badge {
      font-size: 0.78rem;
      background: rgba(245, 166, 35, 0.15);
      color: var(--accent-gold);
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
    }
    .card-cinema {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.8rem;
      transition: var(--transition);
      height: 100%;
    }
    .card-cinema:hover {
      transform: translateY(-5px);
      border-color: rgba(229, 9, 20, 0.4);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    }
    .stat-metric {
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--text-white);
      line-height: 1.1;
      margin-bottom: 0.4rem;
    }
    .stat-metric-gold {
      color: var(--accent-gold);
    }
    .poster-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-dark);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      border-color: var(--primary-red);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
    }
    .poster-img-wrap {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #11141b;
    }
    .poster-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .poster-card:hover .poster-img-wrap img {
      transform: scale(1.05);
    }
    .poster-rating {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(11, 14, 20, 0.85);
      border: 1px solid rgba(245, 166, 35, 0.5);
      color: var(--accent-gold);
      font-weight: 700;
      font-size: 0.82rem;
      padding: 0.2rem 0.5rem;
      border-radius: var(--radius-sm);
    }
    .poster-quality {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(229, 9, 20, 0.88);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.18rem 0.5rem;
      border-radius: 3px;
    }
    .poster-info {
      padding: 1.1rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .poster-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.45rem;
    }
    .poster-desc {
      font-size: 0.86rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 0.8rem;
    }
    .poster-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      font-size: 0.8rem;
      color: var(--text-gray);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.75rem;
    }
    .category-entry-card {
      background: linear-gradient(145deg, var(--bg-surface), #141822);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.8rem;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .category-entry-card:hover {
      border-color: var(--accent-gold);
      transform: translateY(-4px);
    }
    .category-icon {
      font-size: 2.2rem;
      color: var(--accent-gold);
      margin-bottom: 1.1rem;
    }
    .category-capacity {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 0.8rem;
    }
    .step-badge {
      width: 44px;
      height: 44px;
      background: var(--bg-card);
      border: 2px solid var(--primary-red);
      color: var(--text-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 1.3rem;
    }
    .vs-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-dark);
    }
    .vs-table th, .vs-table td {
      padding: 1.2rem 1.4rem;
      text-align: left;
    }
    .vs-table th {
      background: #121620;
      color: var(--text-white);
      font-size: 1.05rem;
      border-bottom: 1px solid var(--border-dark);
    }
    .vs-table td {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 0.94rem;
    }
    .vs-table tr:last-child td {
      border-bottom: none;
    }
    .vs-table .highlight-col {
      background: rgba(229, 9, 20, 0.04);
      color: #fff;
      font-weight: 600;
    }
    .news-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      display: flex;
      gap: 1.5rem;
      align-items: center;
      transition: var(--transition);
    }
    .news-item:hover {
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateX(4px);
    }
    .news-thumb {
      width: 130px;
      height: 85px;
      flex-shrink: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .news-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .accordion-item {
      background: var(--bg-surface) !important;
      border: 1px solid var(--border-dark) !important;
      border-radius: var(--radius-sm) !important;
      margin-bottom: 0.85rem !important;
    }
    .accordion-title {
      background: transparent !important;
      color: var(--text-white) !important;
      font-weight: 600 !important;
      font-size: 1.02rem !important;
      padding: 1.2rem 1.4rem !important;
      border: none !important;
    }
    .accordion-title:hover {
      background: rgba(255, 255, 255, 0.02) !important;
    }
    .accordion-content {
      background: transparent !important;
      color: var(--text-gray) !important;
      font-size: 0.95rem !important;
      line-height: 1.7 !important;
      border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
      padding: 1.2rem 1.4rem !important;
    }
    .cta-banner {
      background-image: linear-gradient(135deg, rgba(229, 9, 20, 0.92), rgba(11, 14, 20, 0.95)), url('/assets/images/0f5bddb9e8b162a1.jpg');
      background-size: cover;
      background-position: center;
      border-radius: var(--radius-lg);
      padding: 4.5rem 3rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    }
    .site-footer {
      background-color: #07090D;
      border-top: 1px solid var(--border-dark);
      padding: 4.5rem 0 2.5rem;
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .footer-title {
      color: var(--text-white);
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 1.2rem;
    }
    .footer-links {
      list-style: none;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 0.65rem;
    }
    .footer-links a:hover {
      color: var(--accent-gold);
    }
    .device-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }
    .device-pill {
      background: var(--bg-card);
      border: 1px solid var(--border-dark);
      color: var(--text-gray);
      padding: 0.35rem 0.75rem;
      font-size: 0.82rem;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .copyright-bar {
      margin-top: 3.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      font-size: 0.84rem;
    }
    @media screen and (max-width: 991px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .nav-menu {
        gap: 1rem;
      }
      .sec-title {
        font-size: 1.85rem;
      }
    }
    @media screen and (max-width: 640px) {
      .site-header .nav-menu {
        display: none;
      }
      .sec-title {
        font-size: 1.55rem;
      }
      .hero-h1 {
        font-size: 2.1rem;
      }
      .cta-banner {
        padding: 2.5rem 1.5rem;
      }
    }

/* roulang page: category1 */
:root {
      --bg-cinema: #0B0E14;
      --bg-charcoal: #151922;
      --bg-surface: #1A1F2C;
      --bg-card: #202736;
      --primary-red: #E50914;
      --primary-hover: #ff1f2d;
      --accent-gold: #F5A623;
      --border-dark: #2C3545;
      --text-white: #FFFFFF;
      --text-gray: #9CA3AF;
      --text-muted: #6B7280;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-cinema: 0 16px 36px rgba(0, 0, 0, 0.45);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    body {
      background-color: var(--bg-cinema);
      color: var(--text-gray);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.68;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--text-white);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-header {
      background: rgba(11, 14, 20, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-dark);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 0.85rem 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: 0.5px;
    }
    .brand-logo .logo-icon {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--primary-red), #b20710);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      list-style: none;
      margin: 0;
    }
    .nav-menu a {
      font-size: 0.96rem;
      font-weight: 500;
      color: var(--text-gray);
      position: relative;
      padding: 0.4rem 0;
    }
    .nav-menu a.active, .nav-menu a:hover {
      color: var(--text-white);
    }
    .nav-menu a.active::after, .nav-menu a:hover::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--primary-red);
      border-radius: 2px;
    }
    .header-cta-group {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .btn-cinema {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: var(--primary-red);
      color: #fff;
      padding: 0.62rem 1.45rem;
      font-size: 0.94rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
      cursor: pointer;
    }
    .btn-cinema:hover {
      background-color: var(--primary-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(229, 9, 20, 0.5);
    }
    .btn-cinema-outline {
      background: transparent;
      border: 1px solid var(--border-dark);
      color: var(--text-white);
      padding: 0.62rem 1.45rem;
      font-size: 0.94rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-cinema-outline:hover {
      border-color: var(--text-white);
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
    }

    /* 分类页专用版头 */
    .category-banner {
      background: linear-gradient(180deg, #151922 0%, #0B0E14 100%);
      padding: 3rem 0 2.2rem;
      border-bottom: 1px solid var(--border-dark);
      position: relative;
    }
    .cat-badge-wrap {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.8rem;
    }
    .cat-indicator {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--primary-red);
      background: rgba(229, 9, 20, 0.12);
      border: 1px solid rgba(229, 9, 20, 0.3);
      padding: 0.2rem 0.65rem;
      border-radius: 4px;
    }
    .cat-stat-tag {
      font-size: 0.85rem;
      color: var(--accent-gold);
    }
    .category-h1 {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 0.8rem;
    }
    .category-desc {
      font-size: 1.02rem;
      color: #94A3B8;
      max-width: 860px;
      line-height: 1.7;
      margin: 0;
    }

    /* 多维筛选控制台 */
    .filter-panel {
      background: var(--bg-charcoal);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.8rem;
      margin: 2.5rem 0 3.5rem;
    }
    .filter-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.6rem;
      padding: 0.55rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
    }
    .filter-label {
      font-size: 0.88rem;
      color: var(--text-muted);
      width: 70px;
      font-weight: 600;
      flex-shrink: 0;
    }
    .filter-pill {
      font-size: 0.85rem;
      color: var(--text-gray);
      padding: 0.25rem 0.8rem;
      border-radius: 20px;
      background: transparent;
      border: 1px solid transparent;
      transition: var(--transition);
      cursor: pointer;
    }
    .filter-pill:hover {
      color: var(--text-white);
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-pill.active {
      background: var(--primary-red);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(229, 9, 20, 0.4);
    }

    /* 核心片单网格 */
    .section-spacing {
      padding: 4rem 0;
    }
    .sec-block-title {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 2rem;
      border-bottom: 1px solid var(--border-dark);
      padding-bottom: 0.8rem;
    }
    .sec-block-title h2 {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text-white);
      margin: 0;
      position: relative;
    }
    .sec-block-title h2::after {
      content: "";
      position: absolute;
      bottom: -0.9rem;
      left: 0;
      width: 48px;
      height: 3px;
      background: var(--primary-red);
    }
    .sec-block-title .sub-info {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .movie-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
    .movie-card {
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .movie-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
      border-color: rgba(229, 9, 20, 0.35);
    }
    .poster-box {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background-color: var(--bg-card);
    }
    .poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .movie-card:hover .poster-box img {
      transform: scale(1.06);
    }
    .badge-quality {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.2rem 0.45rem;
      background: rgba(11, 14, 20, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      border-radius: 4px;
      backdrop-filter: blur(4px);
    }
    .badge-score {
      position: absolute;
      bottom: 10px;
      right: 10px;
      font-size: 0.78rem;
      font-weight: 800;
      padding: 0.2rem 0.5rem;
      background: rgba(245, 166, 35, 0.95);
      color: #0B0E14;
      border-radius: 4px;
    }
    .movie-details {
      padding: 1rem 0.9rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .movie-title {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.4rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-meta-line {
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* 1+2 异形主推亮点 */
    .spotlight-layout {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 1.8rem;
      align-items: stretch;
      margin-top: 1.5rem;
    }
    .spotlight-main {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2.5rem;
      border: 1px solid var(--border-dark);
      background-size: cover;
      background-position: center;
    }
    .spotlight-main::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 14, 20, 0.2) 0%, rgba(11, 14, 20, 0.92) 85%);
    }
    .spotlight-content {
      position: relative;
      z-index: 2;
    }
    .spotlight-title {
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 0.6rem;
    }
    .spotlight-desc {
      font-size: 0.96rem;
      color: #CBD5E1;
      margin-bottom: 1.2rem;
      line-height: 1.6;
    }
    .spotlight-sub-grid {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .spotlight-sub-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.2rem;
      display: flex;
      gap: 1.2rem;
      align-items: center;
      transition: var(--transition);
    }
    .spotlight-sub-card:hover {
      border-color: rgba(229, 9, 20, 0.4);
      transform: translateX(4px);
    }
    .sub-thumb {
      width: 100px;
      height: 135px;
      flex-shrink: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
      background: var(--bg-card);
    }
    .sub-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .sub-info-col h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.4rem;
    }
    .sub-info-col p {
      font-size: 0.84rem;
      color: var(--text-gray);
      margin-bottom: 0.6rem;
      line-height: 1.5;
    }

    /* 双排行榜 */
    .ranking-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    .rank-board {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-lg);
      padding: 1.8rem;
    }
    .rank-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.4rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .rank-header h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-white);
      margin: 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .rank-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .rank-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.65rem 0.9rem;
      background: var(--bg-card);
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      transition: var(--transition);
    }
    .rank-item:hover {
      border-color: rgba(255, 255, 255, 0.12);
      background: #273042;
    }
    .rank-num {
      width: 24px;
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--text-muted);
      margin-right: 0.8rem;
    }
    .rank-num.top-1 { color: var(--primary-red); }
    .rank-num.top-2 { color: var(--accent-gold); }
    .rank-num.top-3 { color: #38BDF8; }
    .rank-name-box {
      flex-grow: 1;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .rank-name {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-white);
    }
    .rank-genre {
      font-size: 0.76rem;
      color: var(--text-muted);
    }
    .rank-metric {
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--accent-gold);
    }

    /* 影评与科普文章区 */
    .article-stream {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .article-item {
      display: flex;
      gap: 1.4rem;
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.4rem;
      transition: var(--transition);
    }
    .article-item:hover {
      border-color: rgba(229, 9, 20, 0.4);
      transform: translateY(-3px);
    }
    .article-thumb {
      width: 130px;
      height: 90px;
      flex-shrink: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-content h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.5rem;
      line-height: 1.4;
    }
    .article-content p {
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0.6rem;
    }
    .article-meta {
      font-size: 0.76rem;
      color: var(--accent-gold);
      display: flex;
      gap: 1rem;
    }

    /* FAQ 折叠板 */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .faq-q {
      padding: 1.2rem 1.5rem;
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text-white);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    .faq-q i {
      color: var(--primary-red);
      transition: transform 0.3s ease;
    }
    .faq-a {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.9rem;
      color: #94A3B8;
      line-height: 1.7;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.8rem;
    }

    /* 轻量底部引导栏 */
    .category-cta-bar {
      background: linear-gradient(90deg, #151922 0%, #1E2638 100%);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-lg);
      padding: 2.2rem 2.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 2rem;
    }
    .cta-text h3 {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.3rem;
    }
    .cta-text p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* 页脚 */
    .site-footer {
      background-color: #07090D;
      border-top: 1px solid var(--border-dark);
      padding: 4.5rem 0 2.5rem;
      margin-top: 5rem;
    }
    .footer-col h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 1.3rem;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 0.65rem;
    }
    .footer-links a {
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: var(--text-white);
    }
    .footer-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 1rem;
    }
    .footer-logo .logo-icon {
      width: 32px;
      height: 32px;
      background: var(--primary-red);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin-top: 3.5rem;
      padding-top: 2rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    /* 响应式断点控制 */
    @media (max-width: 1024px) {
      .movie-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .spotlight-layout {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
      }
      .ranking-grid, .article-stream {
        grid-template-columns: 1fr;
      }
      .category-cta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.5rem;
      }
      .nav-menu {
        display: none;
      }
    }
    @media (max-width: 520px) {
      .movie-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .filter-label {
        width: 100%;
        margin-bottom: 0.2rem;
      }
      .category-h1 {
        font-size: 1.65rem;
      }
    }

/* roulang page: category2 */
:root {
      --bg-cinema: #0B0E14;
      --bg-charcoal: #151922;
      --bg-surface: #1A1F2C;
      --bg-card: #202736;
      --primary-red: #E50914;
      --primary-hover: #ff1f2d;
      --accent-gold: #F5A623;
      --border-dark: #2C3545;
      --text-white: #FFFFFF;
      --text-gray: #9CA3AF;
      --text-muted: #6B7280;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-cinema: 0 16px 36px rgba(0, 0, 0, 0.45);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    body {
      background-color: var(--bg-cinema);
      color: var(--text-gray);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.68;
      -webkit-font-smoothing: antialiased;
      margin: 0;
      padding: 0;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--text-white);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-header {
      background: rgba(11, 14, 20, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-dark);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 0.85rem 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: 0.5px;
    }
    .brand-logo .logo-icon {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--primary-red), #b20710);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      list-style: none;
      margin: 0;
    }
    .nav-menu a {
      font-size: 0.96rem;
      font-weight: 500;
      color: var(--text-gray);
      position: relative;
      padding: 0.4rem 0;
    }
    .nav-menu a.active, .nav-menu a:hover {
      color: var(--text-white);
    }
    .nav-menu a.active::after, .nav-menu a:hover::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--primary-red);
      border-radius: 2px;
    }
    .header-cta-group {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .btn-cinema {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: var(--primary-red);
      color: #fff;
      padding: 0.62rem 1.45rem;
      font-size: 0.94rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
      cursor: pointer;
    }
    .btn-cinema:hover {
      background-color: var(--primary-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(229, 9, 20, 0.5);
    }
    .btn-cinema-outline {
      background: transparent;
      border: 1px solid var(--border-dark);
      color: var(--text-white);
      padding: 0.6rem 1.4rem;
      border-radius: var(--radius-sm);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-cinema-outline:hover {
      border-color: var(--text-white);
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-cinema-gold {
      background-color: var(--accent-gold);
      color: #0B0E14;
      font-weight: 700;
      padding: 0.62rem 1.45rem;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-cinema-gold:hover {
      background-color: #f7b23d;
      color: #0B0E14;
      transform: translateY(-2px);
    }
    .section-spacing {
      padding: 4rem 0;
      position: relative;
    }
    .section-darker {
      background-color: var(--bg-charcoal);
    }
    .section-surface {
      background-color: var(--bg-surface);
    }
    .sec-header {
      margin-bottom: 2.2rem;
    }
    .sec-tag {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--primary-red);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
      background: rgba(229, 9, 20, 0.1);
      padding: 0.2rem 0.7rem;
      border-radius: 40px;
      border: 1px solid rgba(229, 9, 20, 0.2);
    }
    .sec-title {
      font-size: 1.85rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }
    .sec-sub {
      color: var(--text-gray);
      font-size: 0.95rem;
      margin: 0;
    }
    /* 分类标头 */
    .cat-header-strip {
      background: linear-gradient(180deg, #131720 0%, var(--bg-cinema) 100%);
      border-bottom: 1px solid var(--border-dark);
      padding: 2.8rem 0 2rem;
    }
    .cat-meta-box {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.5rem;
      margin-top: 1rem;
    }
    .meta-stat-pill {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      color: var(--text-white);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .meta-stat-pill i {
      color: var(--accent-gold);
    }
    /* 筛选控制台 */
    .filter-console {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      margin-bottom: 2rem;
    }
    .filter-row {
      display: flex;
      align-items: center;
      padding: 0.5rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
    }
    .filter-label {
      width: 70px;
      flex-shrink: 0;
      font-size: 0.86rem;
      color: var(--text-muted);
      font-weight: 600;
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .filter-tag {
      padding: 0.25rem 0.75rem;
      font-size: 0.84rem;
      border-radius: 4px;
      color: var(--text-gray);
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-tag:hover {
      color: var(--text-white);
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-tag.active {
      background: var(--primary-red);
      color: #fff;
      font-weight: 600;
    }
    /* 核心剧集卡片 */
    .tv-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
    }
    .tv-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .tv-card:hover {
      transform: translateY(-6px);
      border-color: rgba(229, 9, 20, 0.4);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
    }
    .tv-poster-wrap {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background-color: var(--bg-charcoal);
    }
    .tv-poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .tv-card:hover .tv-poster-wrap img {
      transform: scale(1.05);
    }
    .tv-badge-top {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(11, 14, 20, 0.8);
      backdrop-filter: blur(4px);
      color: #fff;
      font-size: 0.72rem;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .tv-badge-ep {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(229, 9, 20, 0.9);
      color: #fff;
      font-size: 0.72rem;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-weight: 600;
    }
    .tv-info {
      padding: 1rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .tv-title {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.4rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .tv-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .tv-score {
      color: var(--accent-gold);
      font-weight: 700;
      font-size: 0.85rem;
    }
    /* 亮点主推 1+2 布局 */
    .spotlight-wrap {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2rem;
      align-items: stretch;
    }
    .spotlight-main {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .spotlight-banner {
      height: 280px;
      position: relative;
    }
    .spotlight-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .spotlight-content {
      padding: 2rem;
    }
    .spotlight-side {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .side-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      display: flex;
      gap: 1.2rem;
      transition: var(--transition);
    }
    .side-card:hover {
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateX(4px);
    }
    .side-card-img {
      width: 110px;
      height: 145px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }
    .side-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .side-card-body h4 {
      font-size: 1.05rem;
      color: var(--text-white);
      margin-bottom: 0.4rem;
    }
    .side-card-body p {
      font-size: 0.84rem;
      color: var(--text-gray);
      line-height: 1.5;
      margin-bottom: 0.6rem;
    }
    /* 榜单两列卡片 */
    .rank-column {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.8rem;
    }
    .rank-column-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 1.4rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      border-bottom: 1px solid var(--border-dark);
      padding-bottom: 0.8rem;
    }
    .rank-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .rank-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .rank-item:last-child {
      border-bottom: none;
    }
    .rank-num {
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 800;
      border-radius: 4px;
      background: var(--bg-card);
      color: var(--text-muted);
      margin-right: 0.8rem;
    }
    .rank-num.top-1 { background: var(--primary-red); color: #fff; }
    .rank-num.top-2 { background: #ff6b35; color: #fff; }
    .rank-num.top-3 { background: var(--accent-gold); color: #0B0E14; }
    .rank-name-box {
      display: flex;
      align-items: center;
      flex-grow: 1;
    }
    .rank-name {
      font-size: 0.92rem;
      color: #E2E8F0;
      font-weight: 500;
    }
    .rank-heat {
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    /* 鉴赏指南图文 */
    .article-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      display: flex;
      gap: 1.5rem;
      margin-bottom: 1.2rem;
      transition: var(--transition);
    }
    .article-item:hover {
      border-color: rgba(229, 9, 20, 0.3);
      transform: translateY(-2px);
    }
    .article-thumb {
      width: 200px;
      height: 120px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-info h4 {
      font-size: 1.12rem;
      color: var(--text-white);
      margin-bottom: 0.5rem;
    }
    .article-info p {
      font-size: 0.88rem;
      color: var(--text-gray);
      margin-bottom: 0.6rem;
      line-height: 1.6;
    }
    .article-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      display: flex;
      gap: 1.2rem;
    }
    /* FAQ 折叠面板 */
    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .faq-question {
      padding: 1.2rem 1.5rem;
      font-weight: 600;
      color: var(--text-white);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }
    .faq-answer {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.9rem;
      color: var(--text-gray);
      line-height: 1.7;
    }
    /* 底部轻量引导条 */
    .cat-cta-bar {
      background: linear-gradient(90deg, #1A1F2C 0%, #151922 100%);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-lg);
      padding: 2.2rem 2.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    /* 页脚样式 */
    .site-footer {
      background: #080A0E;
      border-top: 1px solid var(--border-dark);
      padding: 4.5rem 0 2rem;
      margin-top: 2rem;
    }
    .footer-col h4 {
      font-size: 1rem;
      color: var(--text-white);
      margin-bottom: 1.4rem;
      font-weight: 700;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 1rem;
    }
    .footer-logo .logo-icon {
      width: 32px;
      height: 32px;
      background: var(--primary-red);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.9rem;
    }
    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 0.65rem;
    }
    .footer-links a {
      font-size: 0.86rem;
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: var(--text-white);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin-top: 3.5rem;
      padding-top: 1.8rem;
      text-align: center;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    /* 响应式断点控制 */
    @media screen and (max-width: 1024px) {
      .tv-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .spotlight-wrap {
        grid-template-columns: 1fr;
      }
    }
    @media screen and (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      .tv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      .cat-cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.8rem 1.2rem;
      }
      .article-item {
        flex-direction: column;
      }
      .article-thumb {
        width: 100%;
        height: 160px;
      }
      .side-card {
        flex-direction: column;
      }
      .side-card-img {
        width: 100%;
        height: 180px;
      }
    }

/* roulang page: category3 */
:root {
      --bg-cinema: #0B0E14;
      --bg-charcoal: #151922;
      --bg-surface: #1A1F2C;
      --bg-card: #202736;
      --primary-red: #E50914;
      --primary-hover: #ff1f2d;
      --accent-gold: #F5A623;
      --border-dark: #2C3545;
      --text-white: #FFFFFF;
      --text-gray: #9CA3AF;
      --text-muted: #6B7280;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-cinema: 0 16px 36px rgba(0, 0, 0, 0.45);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-cinema);
      color: var(--text-gray);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.68;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--text-white);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* 顶栏 Header */
    .site-header {
      background: rgba(11, 14, 20, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-dark);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 0.85rem 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: 0.5px;
    }
    .brand-logo .logo-icon {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--primary-red), #b20710);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      list-style: none;
      margin: 0;
    }
    .nav-menu a {
      font-size: 0.96rem;
      font-weight: 500;
      color: var(--text-gray);
      position: relative;
      padding: 0.4rem 0;
    }
    .nav-menu a.active, .nav-menu a:hover {
      color: var(--text-white);
    }
    .nav-menu a.active::after, .nav-menu a:hover::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--primary-red);
      border-radius: 2px;
    }
    .header-cta-group {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .btn-cinema {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: var(--primary-red);
      color: #fff;
      padding: 0.62rem 1.45rem;
      font-size: 0.94rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
      cursor: pointer;
    }
    .btn-cinema:hover {
      background-color: var(--primary-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(229, 9, 20, 0.5);
    }
    .btn-cinema-gold {
      background-color: var(--accent-gold);
      color: #0B0E14;
      box-shadow: 0 6px 20px rgba(245, 166, 35, 0.25);
    }
    .btn-cinema-gold:hover {
      background-color: #f7b23d;
      color: #0B0E14;
      transform: translateY(-2px);
    }
    .btn-cinema-outline {
      background: transparent;
      border: 1px solid var(--border-dark);
      color: var(--text-white);
    }
    .btn-cinema-outline:hover {
      border-color: var(--text-white);
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
    }

    /* 页面基础板块与留白 */
    .section-spacing {
      padding: 4.5rem 0;
      position: relative;
    }
    .section-darker {
      background-color: var(--bg-charcoal);
    }
    .section-surface {
      background-color: var(--bg-surface);
    }
    .sec-header {
      margin-bottom: 2.5rem;
    }
    .sec-tag {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--primary-red);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.6rem;
      background: rgba(229, 9, 20, 0.1);
      padding: 0.25rem 0.75rem;
      border-radius: 40px;
      border: 1px solid rgba(229, 9, 20, 0.2);
    }
    .sec-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }
    .sec-subtitle {
      font-size: 0.98rem;
      color: var(--text-gray);
    }

    /* 板块 1: 分类专属标头 (紧凑通栏) */
    .category-header-banner {
      padding: 3rem 0;
      background: radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.12), transparent 50%), linear-gradient(180deg, #151922 0%, #0B0E14 100%);
      border-bottom: 1px solid var(--border-dark);
    }
    .cat-head-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 0.8rem;
    }
    .cat-badge {
      background: var(--primary-red);
      color: #fff;
      font-size: 0.76rem;
      padding: 0.25rem 0.65rem;
      border-radius: 4px;
      font-weight: 700;
    }
    .cat-stat-pill {
      color: var(--accent-gold);
      font-size: 0.86rem;
      background: rgba(245, 166, 35, 0.1);
      border: 1px solid rgba(245, 166, 35, 0.25);
      padding: 0.2rem 0.75rem;
      border-radius: 20px;
    }
    .cat-h1 {
      font-size: 2.35rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 0.85rem;
      letter-spacing: -0.5px;
    }
    .cat-desc {
      font-size: 1rem;
      color: var(--text-gray);
      max-width: 820px;
      line-height: 1.75;
    }

    /* 板块 2: 多维筛选控制台 */
    .filter-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.8rem;
      margin-top: -1.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      position: relative;
      z-index: 10;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      padding: 0.65rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 75px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-muted);
      padding-top: 0.35rem;
      flex-shrink: 0;
    }
    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .pill-item {
      display: inline-block;
      padding: 0.3rem 0.85rem;
      font-size: 0.86rem;
      color: var(--text-gray);
      background: rgba(255, 255, 255, 0.03);
      border-radius: 20px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition);
    }
    .pill-item:hover {
      color: var(--text-white);
      background: rgba(255, 255, 255, 0.08);
    }
    .pill-item.active {
      background: var(--primary-red);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 3px 10px rgba(229, 9, 20, 0.4);
    }

    /* 板块 3: 核心片单海报网格 (2:3比例) */
    .poster-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.4rem;
    }
    .poster-card {
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      border-color: rgba(229, 9, 20, 0.5);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    }
    .poster-thumb-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #111;
    }
    .poster-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .poster-card:hover .poster-thumb-wrap img {
      transform: scale(1.06);
    }
    .badge-resolution {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(11, 14, 20, 0.85);
      backdrop-filter: blur(4px);
      color: var(--accent-gold);
      border: 1px solid rgba(245, 166, 35, 0.4);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      z-index: 2;
    }
    .badge-episode {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      font-size: 0.72rem;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      z-index: 2;
    }
    .poster-play-hover {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 3;
    }
    .poster-play-hover i {
      font-size: 2.4rem;
      color: var(--primary-red);
      filter: drop-shadow(0 4px 10px rgba(0,0,0,0.7));
    }
    .poster-card:hover .poster-play-hover {
      opacity: 1;
    }
    .poster-info {
      padding: 0.95rem 1rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .poster-title {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.35rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    .poster-score {
      color: var(--accent-gold);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    .grid-action-footer {
      margin-top: 3rem;
      text-align: center;
    }

    /* 板块 4: 精选主推亮点 (1+2异形大卡) */
    .featured-hybrid-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 2rem;
      align-items: stretch;
    }
    .featured-main-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .featured-main-visual {
      position: relative;
      height: 320px;
      overflow: hidden;
    }
    .featured-main-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .featured-main-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, var(--bg-surface) 0%, transparent 80%);
    }
    .featured-main-content {
      padding: 1.8rem 2rem;
      position: relative;
      margin-top: -3.5rem;
      z-index: 2;
    }
    .featured-tag {
      background: rgba(229, 9, 20, 0.15);
      color: var(--primary-red);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.3rem 0.8rem;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 0.6rem;
      border: 1px solid rgba(229, 9, 20, 0.3);
    }
    .featured-main-h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 0.8rem;
    }
    .featured-desc {
      font-size: 0.94rem;
      color: #9CA3AF;
      line-height: 1.75;
      margin-bottom: 1.4rem;
    }
    .featured-side-stack {
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
    }
    .side-feature-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.4rem;
      display: flex;
      gap: 1.2rem;
      align-items: center;
      transition: var(--transition);
    }
    .side-feature-card:hover {
      border-color: rgba(245, 166, 35, 0.4);
      background: var(--bg-card);
      transform: translateX(4px);
    }
    .side-card-img {
      width: 110px;
      height: 145px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }
    .side-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .side-card-body h4 {
      font-size: 1.12rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.4rem;
    }
    .side-card-body p {
      font-size: 0.85rem;
      color: var(--text-gray);
      line-height: 1.6;
      margin-bottom: 0.6rem;
    }
    .side-card-tags {
      display: flex;
      gap: 0.4rem;
      font-size: 0.75rem;
      color: var(--accent-gold);
    }

    /* 板块 5: 双排行榜 (飙升榜与神作榜) */
    .rank-column-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 1.8rem;
    }
    .rank-col-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid var(--border-dark);
    }
    .rank-col-head h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-white);
      display: flex;
      align-items: center;gap: 0.6rem;
    }
    .rank-col-head .sub-note {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .rank-list {
      list-style: none;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }
    .rank-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.6rem 0.8rem;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.02);
      transition: var(--transition);
    }
    .rank-item:hover {
      background: rgba(255, 255, 255, 0.06);
      transform: translateX(3px);
    }
    .rank-num {
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      font-size: 0.85rem;
      font-weight: 800;
      color: #fff;
      background: #2C3545;
      flex-shrink: 0;
    }
    .rank-top-1 { background: var(--primary-red); }
    .rank-top-2 { background: #ff5722; }
    .rank-top-3 { background: var(--accent-gold); color: #0B0E14; }
    .rank-item-info {
      flex-grow: 1;
      overflow: hidden;
    }
    .rank-item-title {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-white);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-item-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .rank-item-stat {
      font-size: 0.82rem;
      color: var(--accent-gold);
      font-weight: 600;
      white-space: nowrap;
    }

    /* 板块 6: 鉴赏指南文章区 */
    .article-row-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .article-post-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }
    .article-post-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
    }
    .article-thumb {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .article-post-card:hover .article-thumb img {
      transform: scale(1.05);
    }
    .article-body {
      padding: 1.4rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
      display: flex;
      gap: 0.8rem;
    }
    .article-title {
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.7rem;
      line-height: 1.45;
    }
    .article-summary {
      font-size: 0.88rem;
      color: var(--text-gray);
      line-height: 1.65;
      margin-bottom: 1.2rem;
      flex-grow: 1;
    }
    .article-more-link {
      font-size: 0.85rem;
      color: var(--primary-red);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }
    .article-more-link:hover {
      color: var(--primary-hover);
    }

    /* 板块 7: 分类使用答疑 FAQ */
    .faq-accordion-box {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .faq-question {
      padding: 1.15rem 1.4rem;
      font-size: 1.02rem;
      font-weight: 600;
      color: var(--text-white);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.01);
    }
    .faq-question i {
      color: var(--accent-gold);
      transition: transform 0.3s ease;
    }
    .faq-answer {
      padding: 0 1.4rem 1.2rem;
      font-size: 0.92rem;
      color: var(--text-gray);
      line-height: 1.7;
      border-top: 1px dashed rgba(255, 255, 255, 0.05);
      padding-top: 0.9rem;
    }

    /* 板块 8: 底部克制轻量引导 */
    .cat-foot-cta {
      background: linear-gradient(135deg, #151922 0%, #1a1f2c 100%);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    .cat-foot-cta h3 {
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.4rem;
    }
    .cat-foot-cta p {
      font-size: 0.92rem;
      color: var(--text-gray);
      margin: 0;
    }
    .cat-cta-btns {
      display: flex;
      gap: 1rem;
      flex-shrink: 0;
    }

    /* 页脚 Footer */
    .site-footer {
      background: #080A0E;
      border-top: 1px solid var(--border-dark);
      padding: 4.5rem 0 2rem;
      color: var(--text-gray);
    }
    .footer-col h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 1.3rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    .footer-col h4::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 28px;
      height: 2px;
      background: var(--primary-red);
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 1rem;
    }
    .footer-logo .logo-icon {
      width: 32px;
      height: 32px;
      background: var(--primary-red);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.85rem;
    }
    .footer-desc {
      font-size: 0.86rem;
      line-height: 1.7;
      margin-bottom: 1.2rem;
      color: var(--text-muted);
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 0.65rem;
    }
    .footer-links a {
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: var(--text-white);
      padding-left: 4px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 3.5rem;
      padding-top: 1.6rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.7;
    }

    /* 响应式断点控制 */
    @media (max-width: 1024px) {
      .poster-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .featured-hybrid-grid {
        grid-template-columns: 1fr;
      }
      .article-row-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 0.8rem;
      }
      .nav-menu {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 0.4rem;
        gap: 1.2rem;
      }
      .header-cta-group {
        display: none;
      }
      .poster-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.9rem;
      }
      .cat-h1 {
        font-size: 1.8rem;
      }
      .cat-foot-cta {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
      }
      .cat-cta-btns {
        width: 100%;
        justify-content: center;
      }
      .side-feature-card {
        flex-direction: column;
        align-items: flex-start;
      }
      .side-card-img {
        width: 100%;
        height: 180px;
      }
    }
    @media (max-width: 520px) {
      .poster-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .article-row-grid {
        grid-template-columns: 1fr;
      }
      .filter-panel {
        padding: 1.2rem 1rem;
      }
      .filter-row {
        flex-direction: column;
        gap: 0.5rem;
      }
      .filter-label {
        width: 100%;
        padding-top: 0;
      }
    }

/* roulang page: category4 */
:root {
  --bg-cinema: #0B0E14;
  --bg-charcoal: #151922;
  --bg-surface: #1A1F2C;
  --bg-card: #202736;
  --primary-red: #E50914;
  --primary-hover: #ff1f2d;
  --accent-gold: #F5A623;
  --border-dark: #2C3545;
  --text-white: #FFFFFF;
  --text-gray: #9CA3AF;
  --text-muted: #6B7280;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-cinema: 0 16px 36px rgba(0, 0, 0, 0.45);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: var(--bg-cinema);
  color: var(--text-gray);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--text-white);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.site-header {
  background: rgba(11, 14, 20, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.85rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.5px;
}
.brand-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-red), #b20710);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
}
.nav-menu a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
  padding: 0.4rem 0;
}
.nav-menu a.active, .nav-menu a:hover {
  color: var(--text-white);
}
.nav-menu a.active::after, .nav-menu a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-red);
  border-radius: 2px;
}
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-cinema {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary-red);
  color: #fff;
  padding: 0.62rem 1.45rem;
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
  cursor: pointer;
}
.btn-cinema:hover {
  background-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.5);
}
.btn-cinema-gold {
  background-color: var(--accent-gold);
  color: #0B0E14;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.25);
  font-weight: 700;
}
.btn-cinema-gold:hover {
  background-color: #f7b23d;
  color: #0B0E14;
  transform: translateY(-2px);
}
.btn-cinema-outline {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.btn-cinema-outline:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background: rgba(229, 9, 20, 0.05);
}
.section-spacing {
  padding: 4.5rem 0;
  position: relative;
}
.section-darker {
  background-color: var(--bg-charcoal);
}
.section-surface {
  background-color: var(--bg-surface);
}
.sec-header {
  margin-bottom: 2.8rem;
}
.sec-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  background: rgba(229, 9, 20, 0.1);
  padding: 0.22rem 0.7rem;
  border-radius: 40px;
  border: 1px solid rgba(229, 9, 20, 0.2);
}
.sec-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.sec-subtitle {
  font-size: 0.98rem;
  color: var(--text-gray);
  max-width: 720px;
  margin: 0;
}

/* 1. 分类专属标头 */
.cat-h1-bar {
  background: linear-gradient(180deg, #181E2B 0%, #0F131C 100%);
  border-bottom: 1px solid var(--border-dark);
  padding: 3rem 0;
}
.cat-h1-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cat-title-wrap h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.cat-title-wrap h1 i {
  color: var(--accent-gold);
}
.cat-title-wrap p {
  color: var(--text-gray);
  margin: 0;
  font-size: 0.96rem;
}
.cat-stat-badge {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-md);
}
.stat-pill {
  display: flex;
  flex-direction: column;
}
.stat-pill-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.1;
}
.stat-pill-lbl {
  font-size: 0.76rem;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border-dark);
}

/* 2. 维度筛选控制台 */
.filter-console {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  margin-top: -1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  position: relative;
  z-index: 20;
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.filter-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.filter-label {
  width: 70px;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-tag {
  font-size: 0.84rem;
  padding: 0.22rem 0.75rem;
  border-radius: 20px;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  border: 1px solid transparent;
}
.filter-tag:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}
.filter-tag.active {
  background: var(--primary-red);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(229, 9, 20, 0.4);
}

/* 3. 核心片单网格 */
.media-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.media-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: var(--shadow-cinema);
}
.media-poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #080A0E;
}
.media-poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.media-card:hover .media-poster-wrap img {
  transform: scale(1.06);
}
.media-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 14, 20, 0.85);
  color: var(--accent-gold);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 166, 35, 0.3);
}
.media-quality {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}
.media-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 0.8rem 0.5rem;
  background: linear-gradient(0deg, rgba(11, 14, 20, 0.95) 0%, rgba(11, 14, 20, 0) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.media-score {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.92rem;
}
.media-score i {
  font-size: 0.8rem;
  margin-right: 2px;
}
.media-ep-status {
  font-size: 0.74rem;
  color: #CBD5E1;
}
.media-info {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.media-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-meta-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}
.more-wrap {
  text-align: center;
  margin-top: 2.8rem;
}

/* 4. 主推亮点展示 (1+2 异形大卡) */
.featured-hero-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  box-shadow: var(--shadow-cinema);
  height: 100%;
}
.featured-poster {
  position: relative;
  min-height: 380px;
}
.featured-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-content {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-side-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}
.featured-side-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  transition: var(--transition);
  flex: 1;
}
.featured-side-card:hover {
  border-color: rgba(229, 9, 20, 0.4);
  transform: translateX(4px);
}
.side-thumb {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
}
.side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 0.4rem 0;
}
.side-details p {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

/* 5. 分类排行榜 */
.rank-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.rank-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.rank-head h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.rank-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
  gap: 1rem;
}
.rank-item:last-child {
  border-bottom: none;
}
.rank-num {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rank-item:nth-child(1) .rank-num {
  background: var(--primary-red);
  color: #fff;
}
.rank-item:nth-child(2) .rank-num {
  background: var(--accent-gold);
  color: #0B0E14;
}
.rank-item:nth-child(3) .rank-num {
  background: #3B82F6;
  color: #fff;
}
.rank-name {
  flex-grow: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-param {
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* 6. 鉴赏指南 / 文章区 */
.article-strip {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  transition: var(--transition);
  margin-bottom: 1.2rem;
}
.article-strip:hover {
  border-color: rgba(229, 9, 20, 0.4);
  transform: translateX(4px);
}
.article-thumb {
  width: 140px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 0.4rem 0;
}
.article-body p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

/* 7. 分类 FAQ 折叠区 */
.faq-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.faq-box-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0;
}
.faq-box-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.faq-q i {
  color: var(--primary-red);
}
.faq-a {
  font-size: 0.88rem;
  color: var(--text-gray);
  padding-left: 1.8rem;
  line-height: 1.7;
}

/* 8. 轻量引导区 */
.mini-cta-bar {
  background: linear-gradient(90deg, #1A1F2C 0%, #252D3E 100%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.mini-cta-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 0.3rem 0;
}
.mini-cta-text p {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin: 0;
}

/* 页脚样式 */
.site-footer {
  background-color: #07090D;
  border-top: 1px solid var(--border-dark);
  padding: 4.5rem 0 2rem;
  color: var(--text-gray);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
}
.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}
.footer-desc {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.footer-col h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.4rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--primary-red);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  font-size: 0.86rem;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--text-white);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 1024px) {
  .featured-hero-card {
    grid-template-columns: 1fr;
  }
  .featured-poster {
    min-height: 260px;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .sec-title {
    font-size: 1.7rem;
  }
  .cat-h1-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-thumb {
    width: 100%;
    height: 180px;
  }
  .mini-cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
