/* roulang page: index */
:root {
      --bg-main: #0c0f17;
      --bg-surface: #141a26;
      --bg-card: #1c2436;
      --bg-card-hover: #222c42;
      --accent-amber: #e5a93b;
      --accent-amber-light: #f3c267;
      --accent-red: #e50914;
      --accent-red-hover: #b80710;
      --border-color: rgba(255, 255, 255, 0.09);
      --border-light: rgba(255, 255, 255, 0.16);
      --text-main: #f3f5f9;
      --text-body: #c6d0e0;
      --text-muted: #8e9bb0;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
      --shadow-elevated: 0 16px 36px rgba(0, 0, 0, 0.55);
      --font-family: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-family);
      background-color: var(--bg-main);
      color: var(--text-body);
      line-height: 1.7;
      font-size: 15px;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.25s ease;
    }
    a:hover {
      color: var(--accent-amber);
    }

    h1, h2, h3, h4, h5, h6 {
      color: var(--text-main);
      font-weight: 700;
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(12, 15, 23, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      padding: 0 1.5rem;
      max-width: 1320px;
      margin: 0 auto;
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }
    .site-logo i {
      color: var(--accent-amber);
      font-size: 1.5rem;
    }
    .site-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--accent-amber) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .primary-nav-list {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
    }

    .nav-item-link {
      color: var(--text-body);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 6px 10px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .nav-item-link:hover,
    .nav-item-link.is-active {
      color: #fff;
      background: rgba(229, 169, 59, 0.12);
    }

    /* Mega Menu Dropdown */
    .mega-menu-trigger {
      position: relative;
    }
    .mega-menu-panel {
      position: absolute;
      top: 100%;
      right: 0;
      width: 420px;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-elevated);
      padding: 1.25rem;
      display: none;
      z-index: 1050;
    }
    .mega-menu-trigger:hover .mega-menu-panel,
    .mega-menu-panel:hover {
      display: block;
    }
    .mega-item-row {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 8px;
      border-radius: var(--radius-sm);
      transition: background 0.2s;
    }
    .mega-item-row:hover {
      background: var(--bg-card);
    }
    .mega-thumb {
      width: 58px;
      height: 40px;
      object-fit: cover;
      border-radius: 4px;
    }

    .section-spacing {
      padding: 5rem 0;
      border-bottom: 1px solid var(--border-color);
    }

    .section-header {
      margin-bottom: 3rem;
      position: relative;
    }
    .section-title {
      font-size: 1.85rem;
      display: inline-block;
      position: relative;
      padding-bottom: 0.6rem;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-amber), transparent);
      border-radius: 2px;
    }
    .section-desc {
      color: var(--text-muted);
      max-width: 820px;
      margin-top: 0.75rem;
      font-size: 0.98rem;
    }

    /* Hero Section */
    .hero-banner-wrap {
      position: relative;
      background-image: linear-gradient(to bottom, rgba(12, 15, 23, 0.7), var(--bg-main)), url('/assets/images/b173e09ff9fa97a3.jpg');
      background-size: cover;
      background-position: center;
      padding: 5.5rem 0 4.5rem;
      border-bottom: 1px solid var(--border-color);
    }
    .hero-creator-box {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 1.75rem;
    }
    .creator-avatar {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      border: 2px solid var(--accent-amber);
      object-fit: cover;
      box-shadow: 0 0 15px rgba(229, 169, 59, 0.4);
    }
    .creator-name {
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
    }
    .creator-role {
      font-size: 0.85rem;
      color: var(--accent-amber);
      background: rgba(229, 169, 59, 0.1);
      padding: 2px 8px;
      border-radius: 4px;
      display: inline-block;
      margin-top: 4px;
    }
    .hero-h1 {
      font-size: 2.5rem;
      line-height: 1.3;
      margin-bottom: 1.25rem;
      color: #fff;
    }
    .hero-summary {
      font-size: 1.05rem;
      color: var(--text-body);
      max-width: 820px;
      line-height: 1.8;
      margin-bottom: 2.25rem;
    }

    .btn-action-main {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light));
      color: #0c0f17;
      font-weight: 700;
      padding: 12px 26px;
      border-radius: var(--radius-sm);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-action-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(229, 169, 59, 0.35);
      color: #000;
    }

    .btn-action-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--border-light);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      font-weight: 600;
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      margin-left: 12px;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-action-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: #fff;
      color: #fff;
    }

    /* Metric Grid */
    .metric-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
    }
    .metric-card:hover {
      border-color: var(--accent-amber);
      transform: translateY(-4px);
      box-shadow: var(--shadow-soft);
    }
    .metric-number {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--accent-amber);
      line-height: 1.2;
    }
    .metric-label {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.35rem;
    }

    /* Standard Cards */
    .feature-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1.75rem;
      height: 100%;
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      border-color: var(--border-light);
      background: var(--bg-card);
      transform: translateY(-4px);
      box-shadow: var(--shadow-soft);
    }
    .feature-icon-bar {
      font-size: 1.8rem;
      color: var(--accent-amber);
      margin-bottom: 1rem;
    }

    /* Category Promo Grid */
    .category-entry-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.3s;
    }
    .category-entry-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent-amber);
    }
    .category-img-wrap {
      height: 180px;
      position: relative;
      overflow: hidden;
    }
    .category-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .category-entry-card:hover .category-img {
      transform: scale(1.05);
    }
    .category-body {
      padding: 1.25rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* Media List */
    .media-block-row {
      display: flex;
      gap: 1.5rem;
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 1.5rem;
      transition: border-color 0.25s;
    }
    .media-block-row:hover {
      border-color: var(--accent-amber);
    }
    .media-left-img {
      width: 240px;
      min-width: 240px;
      object-fit: cover;
    }
    .media-right-content {
      padding: 1.5rem 1.5rem 1.5rem 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Timeline */
    .milestone-timeline {
      position: relative;
      border-left: 2px solid rgba(229, 169, 59, 0.35);
      margin-left: 1.2rem;
      padding-left: 2rem;
    }
    .milestone-item {
      position: relative;
      margin-bottom: 2.5rem;
    }
    .milestone-item::before {
      content: '';
      position: absolute;
      left: -2.55rem;
      top: 6px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--accent-amber);
      box-shadow: 0 0 10px rgba(229, 169, 59, 0.8);
    }

    /* FAQ Accordion */
    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .faq-question {
      padding: 1.25rem;
      font-weight: 600;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
    }
    .faq-answer {
      padding: 0 1.25rem 1.25rem;
      color: var(--text-body);
      line-height: 1.7;
    }

    /* Form Container */
    .conversion-panel {
      background: linear-gradient(145deg, var(--bg-surface), var(--bg-card));
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 3rem 2.5rem;
      box-shadow: var(--shadow-elevated);
    }
    .form-control-input {
      background: rgba(12, 15, 23, 0.7);
      border: 1px solid var(--border-color);
      color: #fff;
      border-radius: var(--radius-sm);
      height: 48px;
      padding: 0 14px;
      margin-bottom: 1rem;
      box-shadow: none;
    }
    .form-control-input:focus {
      background: #0c0f17;
      border-color: var(--accent-amber);
      box-shadow: 0 0 8px rgba(229, 169, 59, 0.25);
    }

    /* Tag / Badge */
    .meta-tag {
      font-size: 0.75rem;
      background: rgba(255, 255, 255, 0.08);
      color: var(--accent-amber);
      padding: 3px 8px;
      border-radius: 4px;
      display: inline-block;
      margin-right: 6px;
      margin-bottom: 6px;
    }

    /* Footer */
    .site-footer {
      background: #07090e;
      border-top: 1px solid var(--border-color);
      padding: 4.5rem 0 2.5rem;
      color: var(--text-muted);
    }
    .footer-col-title {
      color: #fff;
      font-size: 1.05rem;
      margin-bottom: 1.25rem;
      font-weight: 600;
    }
    .footer-link-list {
      list-style: none;
      margin: 0;
    }
    .footer-link-list li {
      margin-bottom: 0.65rem;
    }
    .footer-copyright {
      margin-top: 3.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      font-size: 0.88rem;
    }

    @media print, screen and (max-width: 63.99875em) {
      .media-block-row {
        flex-direction: column;
      }
      .media-left-img {
        width: 100%;
        height: 200px;
      }
      .media-right-content {
        padding: 1.25rem;
      }
      .mega-menu-panel {
        display: none !important;
      }
      .hero-h1 {
        font-size: 1.9rem;
      }
    }

/* roulang page: category2 */
:root {
      --bg-main: #0c0f17;
      --bg-surface: #141a26;
      --bg-card: #1c2436;
      --bg-card-hover: #222c42;
      --accent-amber: #e5a93b;
      --accent-amber-light: #f3c267;
      --accent-red: #e50914;
      --accent-red-hover: #b80710;
      --border-color: rgba(255, 255, 255, 0.09);
      --border-light: rgba(255, 255, 255, 0.16);
      --text-main: #f3f5f9;
      --text-body: #c6d0e0;
      --text-muted: #8e9bb0;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
      --shadow-elevated: 0 16px 36px rgba(0, 0, 0, 0.55);
      --font-family: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-family);
      background-color: var(--bg-main);
      color: var(--text-body);
      line-height: 1.7;
      font-size: 15px;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.25s ease;
    }

    a:hover {
      color: var(--accent-amber);
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(12, 15, 23, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      padding: 0 1.5rem;
      max-width: 1320px;
      margin: 0 auto;
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }

    .site-logo i {
      color: var(--accent-amber);
      font-size: 1.5rem;
    }

    .site-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--accent-amber) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .primary-nav-list {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      list-style: none;
      margin: 0;
    }

    .nav-item-link {
      color: var(--text-body);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-item-link:hover,
    .nav-item-link.is-active {
      color: #fff;
      background: rgba(229, 169, 59, 0.12);
      border-bottom: 2px solid var(--accent-amber);
    }

    .mega-menu-trigger {
      position: relative;
    }

    .mega-menu-panel {
      position: absolute;
      top: 100%;
      right: 0;
      width: 420px;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-elevated);
      padding: 1.25rem;
      display: none;
      z-index: 1050;
    }

    .mega-menu-trigger:hover .mega-menu-panel,
    .mega-menu-panel:hover {
      display: block;
    }

    .mega-item-row {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 8px;
      border-radius: var(--radius-sm);
      transition: background 0.2s;
    }

    .mega-item-row:hover {
      background: var(--bg-card);
    }

    .mega-thumb {
      width: 58px;
      height: 40px;
      object-fit: cover;
      border-radius: 4px;
    }

    /* 板块通用间距与标题 */
    .section-spacing {
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--border-color);
    }

    .section-header {
      margin-bottom: 2.5rem;
      position: relative;
    }

    .section-title {
      font-size: 1.85rem;
      display: inline-block;
      position: relative;
      padding-bottom: 0.6rem;
      color: #fff;
      font-weight: 700;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-amber), transparent);
      border-radius: 2px;
    }

    .section-desc {
      color: var(--text-muted);
      max-width: 860px;
      margin-top: 0.75rem;
      font-size: 0.98rem;
      line-height: 1.7;
    }

    /* 分类首屏与统计微看板 */
    .category-header-wrap {
      background: linear-gradient(180deg, rgba(20, 26, 38, 0.85) 0%, var(--bg-main) 100%), url('/assets/images/513629db99bcd225.jpg');
      background-size: cover;
      background-position: center;
      padding: 4rem 0 3rem;
      border-bottom: 1px solid var(--border-color);
    }

    .category-h1 {
      font-size: 2.4rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .category-intro {
      font-size: 1.05rem;
      color: var(--text-body);
      max-width: 880px;
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .stat-pill-group {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
    }

    .stat-pill {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 0.85rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: var(--shadow-soft);
    }

    .stat-pill i {
      font-size: 1.4rem;
      color: var(--accent-amber);
    }

    .stat-pill-num {
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
      display: block;
      line-height: 1.2;
    }

    .stat-pill-label {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    /* 多维筛选控制条 */
    .filter-bar-wrap {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .filter-row {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
    }

    .filter-row:last-child {
      margin-bottom: 0;
    }

    .filter-label {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--accent-amber);
      min-width: 75px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .filter-tag {
      font-size: 0.85rem;
      padding: 4px 12px;
      border-radius: 20px;
      background: var(--bg-card);
      color: var(--text-body);
      border: 1px solid var(--border-color);
      transition: all 0.2s;
    }

    .filter-tag:hover,
    .filter-tag.active {
      background: var(--accent-amber);
      color: #0c0f17;
      font-weight: 600;
      border-color: var(--accent-amber);
    }

    /* 电影核心片库卡片 */
    .film-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 1.75rem;
      display: flex;
      flex-direction: column;
      height: calc(100% - 1.75rem);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .film-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent-amber);
      box-shadow: var(--shadow-elevated);
    }

    .film-cover-box {
      position: relative;
      height: 240px;
      overflow: hidden;
      background: #000;
    }

    .film-cover-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .film-card:hover .film-cover-img {
      transform: scale(1.05);
    }

    .film-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(229, 9, 20, 0.9);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--radius-sm);
      letter-spacing: 0.5px;
    }

    .film-rating {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(12, 15, 23, 0.85);
      border: 1px solid rgba(229, 169, 59, 0.4);
      color: var(--accent-amber);
      font-weight: 800;
      font-size: 0.88rem;
      padding: 2px 8px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .film-info-body {
      padding: 1.25rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .film-title-zh {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      line-height: 1.35;
    }

    .film-title-en {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .film-meta-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 10px;
    }

    .meta-chip {
      font-size: 0.75rem;
      padding: 2px 7px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 3px;
      color: var(--text-body);
    }

    .film-synopsis {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .film-btn-row {
      display: flex;
      gap: 8px;
      padding-top: 10px;
      border-top: 1px solid var(--border-color);
    }

    .btn-card-action {
      flex: 1;
      text-align: center;
      padding: 7px 0;
      font-size: 0.85rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      background: rgba(229, 169, 59, 0.15);
      color: var(--accent-amber);
      border: 1px solid rgba(229, 169, 59, 0.3);
      transition: all 0.2s;
    }

    .btn-card-action:hover {
      background: var(--accent-amber);
      color: #0c0f17;
    }

    /* 单一加载更多按钮 */
    .load-more-wrap {
      text-align: center;
      margin-top: 1.5rem;
    }

    .btn-load-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 32px;
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
      color: #fff;
      font-weight: 600;
      transition: all 0.25s;
    }

    .btn-load-more:hover {
      background: var(--bg-surface);
      border-color: var(--accent-amber);
      color: var(--accent-amber);
    }

    /* TOP 榜单紧凑看板 */
    .rank-list-wrap {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .rank-item {
      display: flex;
      align-items: center;
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid var(--border-color);
      gap: 1.25rem;
      transition: background 0.2s;
    }

    .rank-item:last-child {
      border-bottom: none;
    }

    .rank-item:hover {
      background: var(--bg-card);
    }

    .rank-num {
      font-size: 1.75rem;
      font-weight: 900;
      min-width: 40px;
      text-align: center;
      color: var(--text-muted);
    }

    .rank-item:nth-child(1) .rank-num { color: #f59e0b; }
    .rank-item:nth-child(2) .rank-num { color: #d1d5db; }
    .rank-item:nth-child(3) .rank-num { color: #b45309; }

    .rank-thumb {
      width: 68px;
      height: 48px;
      object-fit: cover;
      border-radius: 4px;
      flex-shrink: 0;
    }

    .rank-details {
      flex-grow: 1;
    }

    .rank-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
    }

    .rank-sub {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .rank-heat {
      text-align: right;
      min-width: 110px;
    }

    .heat-value {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--accent-red);
    }

    .heat-label {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* 策展美学图文区 */
    .curation-article-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 2.25rem;
    }

    .curation-text p {
      margin-bottom: 1.25rem;
      font-size: 0.98rem;
      line-height: 1.8;
      color: var(--text-body);
    }

    .curation-highlight {
      border-left: 3px solid var(--accent-amber);
      padding-left: 1.25rem;
      margin: 1.5rem 0;
      font-style: italic;
      color: var(--text-main);
    }

    /* 规格版本对照表 */
    .specs-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .specs-table th {
      background: var(--bg-card);
      color: var(--text-main);
      padding: 14px 16px;
      font-size: 0.9rem;
      font-weight: 700;
      text-align: left;
      border-bottom: 1px solid var(--border-light);
    }

    .specs-table td {
      padding: 14px 16px;
      font-size: 0.88rem;
      border-bottom: 1px solid var(--border-color);
      color: var(--text-body);
    }

    .specs-table tr:hover td {
      background: rgba(255, 255, 255, 0.02);
    }

    .spec-tag-gold {
      background: rgba(229, 169, 59, 0.15);
      color: var(--accent-amber);
      padding: 2px 8px;
      border-radius: 3px;
      font-weight: 600;
      font-size: 0.8rem;
    }

    .spec-tag-blue {
      background: rgba(59, 130, 246, 0.15);
      color: #60a5fa;
      padding: 2px 8px;
      border-radius: 3px;
      font-weight: 600;
      font-size: 0.8rem;
    }

    /* 影迷交互投稿表单 */
    .qa-form-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 2rem;
    }

    .form-input-group {
      margin-bottom: 1.25rem;
    }

    .form-input-group label {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    .form-control-custom {
      width: 100%;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      color: #fff;
      font-size: 0.92rem;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-control-custom:focus {
      border-color: var(--accent-amber);
    }

    .btn-submit-qa {
      background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light));
      color: #0c0f17;
      font-weight: 700;
      padding: 11px 26px;
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-submit-qa:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(229, 169, 59, 0.35);
    }

    /* 页脚 */
    .site-footer {
      background: #080a10;
      border-top: 1px solid var(--border-color);
      padding: 4.5rem 0 2rem;
    }

    .footer-desc {
      font-size: 0.88rem;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }

    .footer-col-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.25rem;
      position: relative;
      padding-bottom: 0.4rem;
    }

    .footer-col-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24px;
      height: 2px;
      background: var(--accent-amber);
    }

    .footer-link-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-link-list li {
      margin-bottom: 0.65rem;
    }

    .footer-link-list a {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .footer-link-list a:hover {
      color: var(--accent-amber);
    }

    .footer-bottom-bar {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    /* 响应式断点控制 */
    @media (max-width: 1023px) {
      .category-h1 {
        font-size: 2rem;
      }
      .filter-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 639px) {
      .section-spacing {
        padding: 3rem 0;
      }
      .category-h1 {
        font-size: 1.65rem;
      }
      .stat-pill {
        width: 100%;
      }
      .rank-item {
        padding: 1rem;
        gap: 0.75rem;
      }
      .specs-table th, .specs-table td {
        padding: 8px;
        font-size: 0.75rem;
      }
      .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
      }
    }

/* roulang page: category1 */
:root {
      --bg-main: #0c0f17;
      --bg-surface: #141a26;
      --bg-card: #1c2436;
      --bg-card-hover: #222c42;
      --accent-amber: #e5a93b;
      --accent-amber-light: #f3c267;
      --accent-red: #e50914;
      --accent-red-hover: #b80710;
      --border-color: rgba(255, 255, 255, 0.09);
      --border-light: rgba(255, 255, 255, 0.16);
      --text-main: #f3f5f9;
      --text-body: #c6d0e0;
      --text-muted: #8e9bb0;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
      --shadow-elevated: 0 16px 36px rgba(0, 0, 0, 0.55);
      --font-family: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-family);
      background-color: var(--bg-main);
      color: var(--text-body);
      line-height: 1.7;
      font-size: 15px;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.25s ease;
    }

    a:hover {
      color: var(--accent-amber);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(12, 15, 23, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      padding: 0 1.5rem;
      max-width: 1320px;
      margin: 0 auto;
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }

    .site-logo i {
      color: var(--accent-amber);
      font-size: 1.5rem;
    }

    .site-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--accent-amber) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .primary-nav-list {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-item-link {
      color: var(--text-body);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 6px 10px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-item-link:hover,
    .nav-item-link.is-active {
      color: #fff;
      background: rgba(229, 169, 59, 0.12);
    }

    .mega-menu-trigger {
      position: relative;
    }

    .mega-menu-panel {
      position: absolute;
      top: 100%;
      right: 0;
      width: 420px;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-elevated);
      padding: 1.25rem;
      display: none;
      z-index: 1050;
    }

    .mega-menu-trigger:hover .mega-menu-panel,
    .mega-menu-panel:hover {
      display: block;
    }

    .mega-item-row {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 8px;
      border-radius: var(--radius-sm);
      transition: background 0.2s;
    }

    .mega-item-row:hover {
      background: var(--bg-card);
    }

    .mega-thumb {
      width: 58px;
      height: 40px;
      object-fit: cover;
      border-radius: 4px;
    }

    .section-spacing {
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--border-color);
    }

    .section-header {
      margin-bottom: 2.5rem;
      position: relative;
    }

    .section-title {
      font-size: 1.75rem;
      color: #fff;
      font-weight: 700;
      display: inline-block;
      position: relative;
      padding-bottom: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-amber), transparent);
      border-radius: 2px;
    }

    .section-desc {
      color: var(--text-muted);
      max-width: 820px;
      margin-top: 0.5rem;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Category Banner Section */
    .cat-banner-section {
      background: linear-gradient(180deg, rgba(20, 26, 38, 0.85) 0%, var(--bg-main) 100%), url('/assets/images/513629db99bcd225.jpg');
      background-size: cover;
      background-position: center;
      padding: 3.5rem 0 3rem;
      border-bottom: 1px solid var(--border-color);
    }

    .cat-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }

    .cat-h1 {
      font-size: 2.3rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 1rem;
      letter-spacing: -0.5px;
    }

    .cat-intro-p {
      color: var(--text-body);
      max-width: 840px;
      font-size: 1.02rem;
      line-height: 1.75;
      margin-bottom: 1.8rem;
    }

    .cat-stat-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .cat-stat-box {
      background: rgba(28, 36, 54, 0.7);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 0.85rem 1.4rem;
      display: flex;
      flex-direction: column;
    }

    .cat-stat-num {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--accent-amber);
      line-height: 1.2;
    }

    .cat-stat-lbl {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 4px;
    }

    /* Filter Bar */
    .filter-bar-wrap {
      background: var(--bg-surface);
      border-bottom: 1px solid var(--border-color);
      padding: 1.25rem 0;
    }

    .filter-group {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 0.75rem;
    }

    .filter-group:last-child {
      margin-bottom: 0;
    }

    .filter-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      min-width: 70px;
      font-weight: 600;
    }

    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .chip-btn {
      font-size: 0.82rem;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      color: var(--text-body);
      padding: 4px 14px;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .chip-btn:hover,
    .chip-btn.active {
      background: var(--accent-amber);
      color: #0c0f17;
      border-color: var(--accent-amber);
      font-weight: 600;
    }

    /* Film Grid */
    .film-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.3s ease;
    }

    .film-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent-amber);
      box-shadow: var(--shadow-elevated);
    }

    .film-cover-box {
      position: relative;
      width: 100%;
      height: 220px;
      overflow: hidden;
      background: #000;
    }

    .film-cover-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .film-card:hover .film-cover-img {
      transform: scale(1.06);
    }

    .film-score-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(12, 15, 23, 0.88);
      border: 1px solid var(--accent-amber);
      color: var(--accent-amber);
      font-weight: 700;
      font-size: 0.82rem;
      padding: 2px 7px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .film-spec-badge {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(229, 9, 20, 0.85);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 2px;
      text-transform: uppercase;
    }

    .film-content {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .film-title-zh {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .film-title-en {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 10px;
      font-family: Arial, sans-serif;
    }

    .film-meta-specs {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.8rem;
      color: var(--accent-amber-light);
      margin-bottom: 12px;
    }

    .film-synopsis {
      font-size: 0.85rem;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 14px;
      flex-grow: 1;
    }

    .film-footer-meta {
      border-top: 1px solid var(--border-color);
      padding-top: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .film-director {
      color: var(--text-main);
      font-weight: 500;
    }

    /* Action CTA Button */
    .load-more-wrap {
      text-align: center;
      margin-top: 3.5rem;
    }

    .btn-action-main {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light));
      color: #0c0f17;
      font-weight: 700;
      padding: 12px 30px;
      border-radius: var(--radius-sm);
      transition: transform 0.2s, box-shadow 0.2s;
      border: none;
      cursor: pointer;
    }

    .btn-action-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(229, 169, 59, 0.35);
      color: #000;
    }

    /* Ranking Board */
    .ranking-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1.2rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 1rem;
      transition: all 0.25s ease;
    }

    .ranking-card:hover {
      border-color: var(--border-light);
      background: var(--bg-card);
      transform: translateX(4px);
    }

    .ranking-idx {
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--accent-amber);
      width: 42px;
      text-align: center;
      line-height: 1;
    }

    .ranking-info {
      flex-grow: 1;
    }

    .ranking-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .ranking-detail {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .ranking-score-box {
      text-align: right;
    }

    .ranking-val {
      font-size: 1.25rem;
      font-weight: 800;
      color: #fff;
    }

    .ranking-heat {
      font-size: 0.75rem;
      color: var(--accent-red);
    }

    /* Essay Layout */
    .essay-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
    }

    .essay-quote {
      border-left: 3px solid var(--accent-amber);
      padding-left: 1.25rem;
      margin: 1.5rem 0;
      font-style: italic;
      color: #fff;
      font-size: 1rem;
      background: rgba(229, 169, 59, 0.04);
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }

    /* Spec Table */
    .spec-table-container {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow-x: auto;
    }

    .spec-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
      font-size: 0.88rem;
    }

    .spec-table th {
      background: var(--bg-card);
      color: var(--text-main);
      padding: 14px 18px;
      font-weight: 600;
      border-bottom: 1px solid var(--border-color);
      text-align: left;
    }

    .spec-table td {
      padding: 14px 18px;
      border-bottom: 1px solid var(--border-color);
      color: var(--text-body);
    }

    .spec-table tr:hover td {
      background: rgba(255, 255, 255, 0.02);
    }

    .tag-pill {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 3px;
      font-size: 0.75rem;
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-main);
    }

    .tag-pill.gold {
      background: rgba(229, 169, 59, 0.15);
      color: var(--accent-amber);
      border: 1px solid rgba(229, 169, 59, 0.3);
    }

    /* Interaction QA Box */
    .qa-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .qa-question {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.75rem;
    }

    .qa-question i {
      color: var(--accent-amber);
    }

    .qa-answer {
      font-size: 0.9rem;
      color: var(--text-body);
      line-height: 1.65;
    }

    .feedback-form-box {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 2rem;
    }

    .form-input {
      width: 100%;
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      color: #fff;
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--accent-amber);
    }

    /* Footer */
    .site-footer {
      background: #080a10;
      border-top: 1px solid var(--border-color);
      padding: 4.5rem 0 2rem;
      font-size: 0.9rem;
    }

    .footer-col-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.25rem;
      position: relative;
      padding-bottom: 0.4rem;
    }

    .footer-col-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24px;
      height: 2px;
      background: var(--accent-amber);
    }

    .footer-desc {
      color: var(--text-muted);
      line-height: 1.65;
      font-size: 0.88rem;
      margin-bottom: 1.25rem;
    }

    .footer-link-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-link-list li {
      margin-bottom: 0.6rem;
    }

    .footer-link-list a {
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .footer-link-list a:hover {
      color: var(--accent-amber);
      padding-left: 4px;
    }

    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 3.5rem;
      padding-top: 1.8rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: var(--text-muted);
      gap: 1rem;
    }

    @media (max-width: 1023px) {
      .primary-nav-list,
      .mega-menu-trigger {
        display: none !important;
      }
      .nav-container {
        justify-content: space-between;
      }
      .mobile-menu-toggle {
        display: inline-block;
        color: #fff;
        font-size: 1.35rem;
      }
    }

    @media (max-width: 639px) {
      .cat-h1 {
        font-size: 1.75rem;
      }
      .cat-stat-strip {
        gap: 0.75rem;
      }
      .cat-stat-box {
        flex: 1 1 calc(50% - 0.75rem);
        padding: 0.6rem 0.8rem;
      }
      .ranking-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
      }
      .ranking-score-box {
        text-align: left;
      }
    }

/* roulang page: category3 */
:root {
      --bg-main: #0c0f17;
      --bg-surface: #141a26;
      --bg-card: #1c2436;
      --bg-card-hover: #222c42;
      --accent-amber: #e5a93b;
      --accent-amber-light: #f3c267;
      --accent-red: #e50914;
      --accent-red-hover: #b80710;
      --border-color: rgba(255, 255, 255, 0.09);
      --border-light: rgba(255, 255, 255, 0.16);
      --text-main: #f3f5f9;
      --text-body: #c6d0e0;
      --text-muted: #8e9bb0;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
      --shadow-elevated: 0 16px 36px rgba(0, 0, 0, 0.55);
      --font-family: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-family);
      background-color: var(--bg-main);
      color: var(--text-body);
      line-height: 1.7;
      font-size: 15px;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.25s ease;
    }

    a:hover {
      color: var(--accent-amber);
    }

    /* Header & Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(12, 15, 23, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      padding: 0 1.5rem;
      max-width: 1320px;
      margin: 0 auto;
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }

    .site-logo i {
      color: var(--accent-amber);
      font-size: 1.5rem;
    }

    .site-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--accent-amber) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .primary-nav-list {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
    }

    .nav-item-link {
      color: var(--text-body);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 6px 10px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-item-link:hover,
    .nav-item-link.is-active {
      color: #fff;
      background: rgba(229, 169, 59, 0.12);
    }

    .mega-menu-trigger {
      position: relative;
    }

    .mega-menu-panel {
      position: absolute;
      top: 100%;
      right: 0;
      width: 420px;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-elevated);
      padding: 1.25rem;
      display: none;
      z-index: 1050;
    }

    .mega-menu-trigger:hover .mega-menu-panel,
    .mega-menu-panel:hover {
      display: block;
    }

    .mega-item-row {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 8px;
      border-radius: var(--radius-sm);
      transition: background 0.2s;
    }

    .mega-item-row:hover {
      background: var(--bg-card);
    }

    .mega-thumb {
      width: 58px;
      height: 40px;
      object-fit: cover;
      border-radius: 4px;
    }

    /* Classification Hero Sub-bar */
    .cat-hero-wrap {
      position: relative;
      background: linear-gradient(180deg, rgba(20, 26, 38, 0.85) 0%, var(--bg-main) 100%), url('/assets/images/1efe2bd1efa0bbbb.jpg');
      background-size: cover;
      background-position: center;
      padding: 3.5rem 0 3rem;
      border-bottom: 1px solid var(--border-color);
    }

    .cat-header-top {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: var(--accent-amber);
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .cat-header-top a {
      color: var(--text-muted);
    }

    .cat-header-top a:hover {
      color: var(--accent-amber);
    }

    .cat-h1 {
      font-size: 2.25rem;
      color: #fff;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .cat-lead {
      color: var(--text-body);
      max-width: 860px;
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1.75rem;
    }

    .metric-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .metric-pill {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-light);
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 0.88rem;
      color: var(--text-main);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .metric-pill strong {
      color: var(--accent-amber);
      font-size: 1.05rem;
    }

    /* Section Foundations */
    .section-spacing {
      padding: 4rem 0;
      border-bottom: 1px solid var(--border-color);
    }

    .section-title-wrap {
      margin-bottom: 2.5rem;
    }

    .section-title {
      font-size: 1.75rem;
      color: #fff;
      font-weight: 700;
      position: relative;
      padding-bottom: 0.5rem;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 42px;
      height: 3px;
      background: var(--accent-amber);
      border-radius: 2px;
    }

    .section-desc {
      color: var(--text-muted);
      margin-top: 0.5rem;
      font-size: 0.95rem;
      max-width: 800px;
    }

    /* Filter Bar Component */
    .filter-bar-container {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .filter-group {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
    }

    .filter-group:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .filter-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      min-width: 70px;
      font-weight: 600;
    }

    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-btn {
      padding: 4px 12px;
      font-size: 0.82rem;
      border-radius: 20px;
      color: var(--text-body);
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .filter-btn:hover {
      color: #fff;
      border-color: var(--border-light);
    }

    .filter-btn.active {
      background: var(--accent-amber);
      color: #0c0f17;
      font-weight: 700;
    }

    /* Movie Grid Cards */
    .film-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .film-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent-amber);
      box-shadow: var(--shadow-soft);
    }

    .film-poster-wrap {
      position: relative;
      height: 240px;
      overflow: hidden;
      background: #000;
    }

    .film-poster {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .film-card:hover .film-poster {
      transform: scale(1.05);
    }

    .film-score-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(12, 15, 23, 0.85);
      backdrop-filter: blur(4px);
      border: 1px solid var(--accent-amber);
      color: var(--accent-amber);
      font-weight: 800;
      font-size: 0.85rem;
      padding: 3px 8px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .film-tech-spec {
      position: absolute;
      bottom: 12px;
      left: 12px;
      display: flex;
      gap: 6px;
    }

    .tech-tag {
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.72rem;
      padding: 2px 6px;
      border-radius: 2px;
      color: #fff;
    }

    .film-content {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .film-title-cn {
      font-size: 1.15rem;
      color: #fff;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .film-title-orig {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .film-meta-line {
      font-size: 0.82rem;
      color: var(--accent-amber-light);
      margin-bottom: 0.75rem;
      display: flex;
      gap: 10px;
    }

    .film-synopsis {
      font-size: 0.85rem;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 1rem;
      flex-grow: 1;
    }

    .film-footer-action {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.75rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
    }

    /* Single Load More Button Container */
    .load-more-box {
      text-align: center;
      margin-top: 3rem;
    }

    .btn-secondary-load {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--border-light);
      background: var(--bg-surface);
      color: var(--text-main);
      padding: 10px 28px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .btn-secondary-load:hover {
      border-color: var(--accent-amber);
      background: var(--bg-card);
      color: var(--accent-amber);
    }

    /* Weekly Top Rank Component */
    .top-rank-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1rem 1.25rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 1rem;
      transition: transform 0.2s ease;
    }

    .top-rank-card:hover {
      transform: translateX(6px);
      border-color: var(--border-light);
    }

    .top-num {
      font-size: 1.75rem;
      font-weight: 900;
      color: var(--text-muted);
      min-width: 32px;
      text-align: center;
    }

    .top-num.lead-1 { color: var(--accent-amber); }
    .top-num.lead-2 { color: #d1d5db; }
    .top-num.lead-3 { color: #b45309; }

    .top-info {
      flex-grow: 1;
    }

    .top-title {
      font-size: 0.98rem;
      color: #fff;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .top-detail {
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      gap: 12px;
    }

    .top-stat {
      text-align: right;
    }

    .stat-score {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--accent-amber);
    }

    .stat-trend {
      font-size: 0.72rem;
      color: #10b981;
    }

    /* Curatorial Essay Block */
    .curator-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 2.5rem;
    }

    .curator-tag {
      color: var(--accent-amber);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .curator-title {
      font-size: 1.5rem;
      color: #fff;
      font-weight: 700;
      margin-bottom: 1.25rem;
      line-height: 1.4;
    }

    .curator-quote {
      border-left: 3px solid var(--accent-amber);
      padding-left: 1.25rem;
      font-style: italic;
      color: var(--text-main);
      margin: 1.5rem 0;
      font-size: 0.95rem;
    }

    /* Responsive Comparison Table */
    .table-container {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow-x: auto;
    }

    .archive-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 0.88rem;
      color: var(--text-body);
      margin: 0;
    }

    .archive-table th {
      background: var(--bg-card);
      color: #fff;
      padding: 14px 18px;
      font-weight: 600;
      border-bottom: 1px solid var(--border-color);
      white-space: nowrap;
    }

    .archive-table td {
      padding: 14px 18px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      vertical-align: middle;
    }

    .archive-table tr:hover td {
      background: rgba(255, 255, 255, 0.02);
    }

    .badge-status {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 3px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .badge-status.mastered {
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
      border: 1px solid rgba(16, 185, 129, 0.3);
    }

    .badge-status.restoring {
      background: rgba(229, 169, 59, 0.15);
      color: var(--accent-amber);
      border: 1px solid rgba(229, 169, 59, 0.3);
    }

    /* Q&A Interactive Component */
    .inquiry-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 2rem;
    }

    .qa-group {
      margin-bottom: 1.5rem;
    }

    .qa-title {
      font-size: 1rem;
      color: #fff;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.5rem;
    }

    .qa-title i {
      color: var(--accent-amber);
    }

    .qa-answer {
      font-size: 0.88rem;
      color: var(--text-body);
      line-height: 1.6;
      padding-left: 24px;
    }

    /* Footer */
    .site-footer {
      background: #080a10;
      border-top: 1px solid var(--border-color);
      padding: 4.5rem 0 2rem;
      color: var(--text-muted);
      font-size: 0.88rem;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.25rem;
      font-weight: 800;
      color: #fff;
    }

    .brand-logo i {
      color: var(--accent-amber);
    }

    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 1rem;
      color: var(--text-muted);
    }

    .footer-col-title {
      color: #fff;
      font-size: 0.98rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
      position: relative;
    }

    .footer-link-list {
      list-style: none;
      margin: 0;
    }

    .footer-link-list li {
      margin-bottom: 0.6rem;
    }

    .footer-link-list a {
      color: var(--text-muted);
      font-size: 0.85rem;
      transition: color 0.2s;
    }

    .footer-link-list a:hover {
      color: var(--accent-amber);
    }

    .footer-bottom-bar {
      margin-top: 3.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-size: 0.8rem;
    }

    @media (max-width: 1023px) {
      .primary-nav-list,
      .mega-menu-trigger {
        display: none !important;
      }
      .cat-h1 {
        font-size: 1.85rem;
      }
      .curator-box {
        padding: 1.5rem;
      }
    }

/* roulang page: category4 */
:root {
      --bg-main: #0c0f17;
      --bg-surface: #141a26;
      --bg-card: #1c2436;
      --bg-card-hover: #222c42;
      --accent-amber: #e5a93b;
      --accent-amber-light: #f3c267;
      --accent-red: #e50914;
      --accent-red-hover: #b80710;
      --border-color: rgba(255, 255, 255, 0.09);
      --border-light: rgba(255, 255, 255, 0.16);
      --text-main: #f3f5f9;
      --text-body: #c6d0e0;
      --text-muted: #8e9bb0;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
      --shadow-elevated: 0 16px 36px rgba(0, 0, 0, 0.55);
      --font-family: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-family);
      background-color: var(--bg-main);
      color: var(--text-body);
      line-height: 1.7;
      font-size: 15px;
      -webkit-font-smoothing: antialiased;
      margin: 0;
      padding: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.25s ease;
    }

    a:hover {
      color: var(--accent-amber);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Header & Nav */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(12, 15, 23, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      padding: 0 1.5rem;
      max-width: 1320px;
      margin: 0 auto;
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }

    .site-logo i {
      color: var(--accent-amber);
      font-size: 1.5rem;
    }

    .site-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--accent-amber) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .primary-nav-list {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-item-link {
      color: var(--text-body);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 6px 10px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-item-link:hover,
    .nav-item-link.is-active {
      color: #fff;
      background: rgba(229, 169, 59, 0.12);
    }

    .mega-menu-trigger {
      position: relative;
    }

    .mega-menu-panel {
      position: absolute;
      top: 100%;
      right: 0;
      width: 420px;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-elevated);
      padding: 1.25rem;
      display: none;
      z-index: 1050;
    }

    .mega-menu-trigger:hover .mega-menu-panel,
    .mega-menu-panel:hover {
      display: block;
    }

    .mega-item-row {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 8px;
      border-radius: var(--radius-sm);
      transition: background 0.2s;
    }

    .mega-item-row:hover {
      background: var(--bg-card);
    }

    .mega-thumb {
      width: 58px;
      height: 40px;
      object-fit: cover;
      border-radius: 4px;
    }

    /* Section Utilities */
    .section-spacing {
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--border-color);
    }

    .section-header {
      margin-bottom: 2.5rem;
      position: relative;
    }

    .section-title {
      font-size: 1.85rem;
      font-weight: 700;
      color: #fff;
      display: inline-block;
      position: relative;
      padding-bottom: 0.6rem;
      margin: 0;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-amber), transparent);
      border-radius: 2px;
    }

    .section-desc {
      color: var(--text-muted);
      max-width: 820px;
      margin-top: 0.75rem;
      font-size: 0.98rem;
    }

    /* Category Banner & Hero */
    .category-header-banner {
      background: linear-gradient(to bottom, rgba(12, 15, 23, 0.8), var(--bg-main)), url('/assets/images/33725a3224b0aa98.jpg') center/cover no-repeat;
      padding: 4rem 0 3.5rem;
      border-bottom: 1px solid var(--border-color);
    }

    .cat-breadcrumb {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cat-breadcrumb a {
      color: var(--text-muted);
    }

    .cat-breadcrumb a:hover {
      color: var(--accent-amber);
    }

    .cat-h1 {
      font-size: 2.3rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .cat-subtitle {
      font-size: 1.05rem;
      color: var(--text-body);
      max-width: 840px;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .data-pill-matrix {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
    }

    .data-pill-item {
      background: rgba(20, 26, 38, 0.85);
      border: 1px solid var(--border-light);
      padding: 0.75rem 1.4rem;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .data-pill-item i {
      font-size: 1.3rem;
      color: var(--accent-amber);
    }

    .data-pill-val {
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }

    .data-pill-lbl {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* Filter Bar */
    .filter-dock-wrap {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem;
      margin-bottom: 2.5rem;
    }

    .filter-row {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 0.5rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }

    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .filter-row:first-child {
      padding-top: 0;
    }

    .filter-label {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--accent-amber);
      width: 76px;
      flex-shrink: 0;
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-tag {
      font-size: 0.82rem;
      padding: 4px 12px;
      border-radius: 20px;
      background: var(--bg-card);
      color: var(--text-body);
      border: 1px solid var(--border-color);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .filter-tag:hover,
    .filter-tag.is-current {
      background: var(--accent-amber);
      color: #0c0f17;
      font-weight: 600;
      border-color: var(--accent-amber);
    }

    /* Film Archive Cards Grid */
    .film-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      margin-bottom: 1.8rem;
    }

    .film-card:hover {
      transform: translateY(-6px);
      border-color: var(--accent-amber);
      box-shadow: var(--shadow-elevated);
    }

    .film-card-thumb-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: #000;
    }

    .film-card-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .film-card:hover .film-card-thumb-wrap img {
      transform: scale(1.06);
    }

    .film-score-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(12, 15, 23, 0.85);
      border: 1px solid var(--accent-amber);
      color: var(--accent-amber);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--radius-sm);
      backdrop-filter: blur(4px);
    }

    .film-spec-badge {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: var(--accent-red);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: var(--radius-sm);
      letter-spacing: 0.5px;
    }

    .film-card-body {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .film-title-zh {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      line-height: 1.35;
    }

    .film-meta-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 10px;
      display: flex;
      gap: 10px;
    }

    .film-summary-p {
      font-size: 0.88rem;
      color: var(--text-body);
      line-height: 1.65;
      margin-bottom: 1.25rem;
      flex-grow: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .film-card-footer {
      border-top: 1px solid var(--border-color);
      padding-top: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .film-author-tag {
      color: var(--accent-amber-light);
      font-weight: 600;
    }

    .archive-more-btn-wrap {
      text-align: center;
      margin-top: 2rem;
    }

    .btn-action-main {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light));
      color: #0c0f17;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: var(--radius-sm);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-action-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(229, 169, 59, 0.35);
      color: #000;
    }

    /* TOP Rank Board */
    .top-rank-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .top-rank-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1rem 1.4rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      transition: all 0.25s ease;
    }

    .top-rank-item:hover {
      border-color: var(--accent-amber);
      background: var(--bg-card);
      transform: translateX(6px);
    }

    .top-rank-num {
      font-size: 1.8rem;
      font-weight: 900;
      font-style: italic;
      color: var(--accent-amber);
      min-width: 38px;
      line-height: 1;
    }

    .top-rank-item:nth-child(1) .top-rank-num { color: #f59e0b; }
    .top-rank-item:nth-child(2) .top-rank-num { color: #cbd5e1; }
    .top-rank-item:nth-child(3) .top-rank-num { color: #d97706; }

    .top-rank-info {
      flex-grow: 1;
    }

    .top-rank-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .top-rank-attrs {
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      gap: 14px;
    }

    .top-rank-heat {
      text-align: right;
      min-width: 110px;
    }

    .heat-val {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--accent-red);
    }

    .heat-lbl {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* Curatorial Analysis Section */
    .curator-feature-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
    }

    .curator-img-side {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .curator-img-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .curator-content-side h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.25rem;
      line-height: 1.4;
    }

    .curator-content-side p {
      font-size: 0.96rem;
      color: var(--text-body);
      line-height: 1.85;
      margin-bottom: 1.25rem;
    }

    .curator-meta-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 1.5rem;
    }

    .curator-meta-pill {
      background: rgba(229, 169, 59, 0.1);
      border: 1px solid rgba(229, 169, 59, 0.3);
      color: var(--accent-amber-light);
      font-size: 0.8rem;
      padding: 4px 10px;
      border-radius: var(--radius-sm);
    }

    /* Specs Comparison Table */
    .specs-table-container {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .film-specs-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
      background: transparent;
      color: var(--text-body);
    }

    .film-specs-table thead tr {
      background: var(--bg-card);
      border-bottom: 1px solid var(--border-light);
    }

    .film-specs-table th {
      padding: 1rem 1.25rem;
      font-size: 0.88rem;
      font-weight: 700;
      color: #fff;
      text-align: left;
    }

    .film-specs-table td {
      padding: 1rem 1.25rem;
      font-size: 0.85rem;
      border-bottom: 1px solid var(--border-color);
    }

    .film-specs-table tbody tr:hover {
      background: rgba(255, 255, 255, 0.02);
    }

    .spec-badge-4k {
      display: inline-block;
      padding: 2px 6px;
      background: rgba(229, 9, 20, 0.15);
      color: #ff6b6b;
      border: 1px solid rgba(229, 9, 20, 0.3);
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      font-weight: 600;
    }

    .spec-badge-audio {
      display: inline-block;
      padding: 2px 6px;
      background: rgba(229, 169, 59, 0.15);
      color: var(--accent-amber);
      border: 1px solid rgba(229, 169, 59, 0.3);
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      font-weight: 600;
    }

    /* Q&A & Community Feedback */
    .interaction-card-wrap {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      margin-bottom: 2rem;
    }

    .form-dark-input,
    .form-dark-textarea {
      width: 100%;
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
      color: #fff;
      padding: 10px 14px;
      font-size: 0.9rem;
      margin-bottom: 1.25rem;
      transition: border-color 0.2s ease;
    }

    .form-dark-input:focus,
    .form-dark-textarea:focus {
      outline: none;
      border-color: var(--accent-amber);
      background: var(--bg-card-hover);
    }

    .form-dark-textarea {
      min-height: 110px;
      resize: vertical;
    }

    /* Footer */
    .site-footer {
      background: #080a10;
      border-top: 1px solid var(--border-color);
      padding: 4.5rem 0 2rem;
      color: var(--text-body);
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }

    .brand-logo i {
      color: var(--accent-amber);
      font-size: 1.4rem;
    }

    .brand-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--accent-amber) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .footer-desc {
      font-size: 0.88rem;
      line-height: 1.75;
      color: var(--text-muted);
      margin-top: 1rem;
      margin-bottom: 1.2rem;
    }

    .footer-col-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.2rem;
      position: relative;
      padding-bottom: 8px;
    }

    .footer-col-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24px;
      height: 2px;
      background: var(--accent-amber);
    }

    .footer-link-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-link-list li {
      margin-bottom: 0.65rem;
    }

    .footer-link-list a {
      font-size: 0.88rem;
      color: var(--text-muted);
      transition: color 0.2s ease;
    }

    .footer-link-list a:hover {
      color: var(--accent-amber);
    }

    .footer-bottom-bar {
      border-top: 1px solid var(--border-color);
      margin-top: 3.5rem;
      padding-top: 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: var(--text-muted);
      flex-wrap: wrap;
      gap: 1rem;
    }

    @media (max-width: 1023px) {
      .primary-nav-list,
      .mega-menu-trigger {
        display: none !important;
      }
      .cat-h1 {
        font-size: 1.9rem;
      }
      .curator-img-side {
        margin-bottom: 1.5rem;
      }
      .top-rank-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
      }
      .top-rank-heat {
        text-align: left;
      }
      .specs-table-container {
        overflow-x: auto;
      }
      .film-specs-table {
        min-width: 680px;
      }
    }

/* roulang page: category5 */
:root {
      --bg-main: #0c0f17;
      --bg-surface: #141a26;
      --bg-card: #1c2436;
      --bg-card-hover: #222c42;
      --accent-amber: #e5a93b;
      --accent-amber-light: #f3c267;
      --accent-red: #e50914;
      --accent-red-hover: #b80710;
      --border-color: rgba(255, 255, 255, 0.09);
      --border-light: rgba(255, 255, 255, 0.16);
      --text-main: #f3f5f9;
      --text-body: #c6d0e0;
      --text-muted: #8e9bb0;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
      --shadow-elevated: 0 16px 36px rgba(0, 0, 0, 0.55);
      --font-family: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    body {
      font-family: var(--font-family);
      background-color: var(--bg-main);
      color: var(--text-body);
      line-height: 1.7;
      font-size: 15px;
      -webkit-font-smoothing: antialiased;
      margin: 0;
      padding: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.25s ease;
    }

    a:hover {
      color: var(--accent-amber);
    }

    /* Header & Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(12, 15, 23, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      padding: 0 1.5rem;
      max-width: 1320px;
      margin: 0 auto;
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }

    .site-logo i {
      color: var(--accent-amber);
      font-size: 1.5rem;
    }

    .site-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--accent-amber) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .primary-nav-list {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
    }

    .nav-item-link {
      color: var(--text-body);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 6px 10px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-item-link:hover,
    .nav-item-link.is-active {
      color: #fff;
      background: rgba(229, 169, 59, 0.12);
    }

    .mega-menu-trigger {
      position: relative;
    }

    .mega-menu-panel {
      position: absolute;
      top: 100%;
      right: 0;
      width: 420px;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-elevated);
      padding: 1.25rem;
      display: none;
      z-index: 1050;
    }

    .mega-menu-trigger:hover .mega-menu-panel,
    .mega-menu-panel:hover {
      display: block;
    }

    .mega-item-row {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 8px;
      border-radius: var(--radius-sm);
      transition: background 0.2s;
    }

    .mega-item-row:hover {
      background: var(--bg-card);
    }

    .mega-thumb {
      width: 58px;
      height: 40px;
      object-fit: cover;
      border-radius: 4px;
    }

    /* Category Hero & Micro Dashboard */
    .category-hero {
      position: relative;
      background-image: linear-gradient(to bottom, rgba(12, 15, 23, 0.85), var(--bg-main)), url('/assets/images/e48ee55302b33926.jpg');
      background-size: cover;
      background-position: center;
      padding: 4.5rem 0 3.5rem;
      border-bottom: 1px solid var(--border-color);
    }

    .badge-accent {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(229, 169, 59, 0.15);
      border: 1px solid var(--accent-amber);
      color: var(--accent-amber-light);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .category-hero h1 {
      font-size: 2.4rem;
      color: #fff;
      font-weight: 800;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .category-hero-intro {
      font-size: 1.05rem;
      color: var(--text-body);
      max-width: 860px;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .micro-metric-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .metric-pill {
      background: rgba(20, 26, 38, 0.85);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 0.75rem 1.25rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .metric-pill i {
      color: var(--accent-amber);
      font-size: 1.3rem;
    }

    .metric-pill-val {
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
    }

    .metric-pill-label {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* Common Sections */
    .section-spacing {
      padding: 4rem 0;
      border-bottom: 1px solid var(--border-color);
    }

    .section-title {
      font-size: 1.75rem;
      color: #fff;
      font-weight: 700;
      margin-bottom: 0.5rem;
      position: relative;
      display: inline-block;
      padding-bottom: 0.5rem;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 42px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-amber), transparent);
      border-radius: 2px;
    }

    .section-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 2.25rem;
      max-width: 850px;
    }

    /* Filter Bar */
    .filter-bar-wrap {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem;
      margin-bottom: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .filter-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .filter-row-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      font-weight: 600;
      min-width: 72px;
    }

    .filter-pill {
      font-size: 0.82rem;
      padding: 4px 12px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-color);
      background: var(--bg-card);
      color: var(--text-body);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .filter-pill:hover,
    .filter-pill.active {
      border-color: var(--accent-amber);
      color: #fff;
      background: rgba(229, 169, 59, 0.18);
    }

    /* Card Grid */
    .movie-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .movie-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent-amber);
      box-shadow: var(--shadow-elevated);
    }

    .movie-thumb-box {
      position: relative;
      height: 220px;
      overflow: hidden;
      background: #000;
    }

    .movie-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .movie-card:hover .movie-thumb-box img {
      transform: scale(1.05);
    }

    .rating-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(12, 15, 23, 0.85);
      border: 1px solid var(--accent-amber);
      color: var(--accent-amber);
      font-weight: 800;
      font-size: 0.85rem;
      padding: 2px 8px;
      border-radius: var(--radius-sm);
      backdrop-filter: blur(4px);
    }

    .format-tag {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: var(--accent-red);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 2px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .movie-card-body {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .movie-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
      display: flex;
      gap: 8px;
    }

    .movie-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.2rem;
      line-height: 1.4;
    }

    .movie-subtitle {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .movie-desc {
      font-size: 0.85rem;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 1rem;
      flex-grow: 1;
    }

    .movie-footer-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--border-color);
      padding-top: 0.75rem;
      font-size: 0.78rem;
      color: var(--accent-amber-light);
    }

    /* Top Rank Cards */
    .top-rank-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 1.25rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 1rem;
      transition: all 0.25s ease;
    }

    .top-rank-card:hover {
      border-color: var(--accent-amber);
      background: var(--bg-card);
      transform: translateX(4px);
    }

    .rank-number {
      font-size: 2rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.15);
      min-width: 40px;
      text-align: center;
    }

    .rank-number.top-three {
      color: var(--accent-amber);
    }

    .top-rank-thumb {
      width: 90px;
      height: 60px;
      object-fit: cover;
      border-radius: var(--radius-sm);
      flex-shrink: 0;
    }

    .top-rank-content {
      flex-grow: 1;
    }

    .top-rank-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.25rem;
    }

    .top-rank-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .top-rank-stat {
      text-align: right;
      min-width: 110px;
    }

    .stat-val {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--accent-red);
    }

    .stat-label {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* Two-col Editorial */
    .editorial-wrap {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .editorial-highlight {
      border-left: 3px solid var(--accent-amber);
      padding-left: 1.25rem;
      font-size: 0.95rem;
      color: #fff;
      font-style: italic;
      line-height: 1.7;
    }

    /* Comparison Table */
    .specs-table-wrap {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow-x: auto;
    }

    .custom-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
      background: transparent;
      color: var(--text-body);
      font-size: 0.88rem;
    }

    .custom-table th {
      background: rgba(28, 36, 54, 0.8);
      color: #fff;
      padding: 1rem 1.25rem;
      font-weight: 600;
      text-align: left;
      border-bottom: 1px solid var(--border-light);
    }

    .custom-table td {
      padding: 1rem 1.25rem;
      border-bottom: 1px solid var(--border-color);
      vertical-align: middle;
    }

    .custom-table tr:hover td {
      background: rgba(255, 255, 255, 0.02);
    }

    .status-badge {
      display: inline-block;
      font-size: 0.75rem;
      padding: 2px 8px;
      border-radius: var(--radius-sm);
      font-weight: 600;
    }

    .status-badge.dci {
      background: rgba(229, 9, 20, 0.15);
      color: #ff6b72;
      border: 1px solid rgba(229, 9, 20, 0.4);
    }

    .status-badge.atmos {
      background: rgba(229, 169, 59, 0.15);
      color: var(--accent-amber-light);
      border: 1px solid rgba(229, 169, 59, 0.4);
    }

    /* Q&A Interactive Box */
    .interactive-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 2rem;
      height: 100%;
    }

    .form-input-control {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      color: #fff;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
      width: 100%;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .form-input-control:focus {
      outline: none;
      border-color: var(--accent-amber);
      background: #192131;
    }

    .btn-action-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light));
      color: #0c0f17;
      font-weight: 700;
      padding: 10px 24px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      border: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-action-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(229, 169, 59, 0.35);
      color: #000;
    }

    /* Footer */
    .site-footer {
      background: #080a10;
      border-top: 1px solid var(--border-color);
      padding: 4.5rem 0 2rem;
      color: var(--text-muted);
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
    }

    .brand-logo i {
      color: var(--accent-amber);
    }

    .footer-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }

    .footer-col-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.2rem;
      position: relative;
    }

    .footer-link-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-link-list li {
      margin-bottom: 0.6rem;
    }

    .footer-link-list a {
      font-size: 0.85rem;
      color: var(--text-body);
      transition: color 0.2s ease;
    }

    .footer-link-list a:hover {
      color: var(--accent-amber);
    }

    .footer-bottom-bar {
      border-top: 1px solid var(--border-color);
      margin-top: 3.5rem;
      padding-top: 1.75rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.8rem;
    }

    @media (max-width: 640px) {
      .category-hero h1 {
        font-size: 1.85rem;
      }
      .micro-metric-bar {
        gap: 0.75rem;
      }
      .metric-pill {
        flex: 1 1 calc(50% - 0.75rem);
      }
      .editorial-wrap {
        padding: 1.5rem;
      }
    }
