/* roulang page: index */
:root {
      --bg-base: #0a0b0e;
      --bg-surface: #12141b;
      --bg-elevated: #1a1d26;
      --color-primary: #ff2d55;
      --color-primary-hover: #e02449;
      --color-accent: #00f2fe;
      --text-white: #ffffff;
      --text-muted: #a0a5b5;
      --text-dim: #5c6275;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-active: rgba(255, 45, 85, 0.4);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
      --shadow-glow: 0 0 25px rgba(255, 45, 85, 0.25);
    }
    *, *::before, *::after { box-sizing: border-box; }
    body {
      margin: 0;
      padding: 0;
      font-family: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-base);
      color: var(--text-white);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    a:hover, a:focus { color: var(--color-primary); }
    img { max-width: 100%; height: auto; display: block; }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 11, 14, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      padding: 0.75rem 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--text-white);
    }
    .brand-logo i { color: var(--color-primary); font-size: 1.5rem; }
    .nav-segmented {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border-radius: 50px;
      padding: 4px;
      border: 1px solid var(--border-light);
    }
    .nav-item {
      padding: 0.45rem 1.1rem;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: all 0.25s ease;
      white-space: nowrap;
    }
    .nav-item:hover { color: var(--text-white); }
    .nav-item.active {
      background: var(--color-primary);
      color: var(--text-white);
      box-shadow: 0 2px 10px rgba(255, 45, 85, 0.4);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .search-pill {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: 50px;
      padding: 0.35rem 0.85rem;
      font-size: 0.82rem;
      color: var(--text-dim);
    }
    .search-pill input {
      background: transparent;
      border: none;
      color: var(--text-white);
      font-size: 0.82rem;
      margin: 0;
      padding: 0 0 0 0.4rem;
      box-shadow: none;
    }
    .search-pill input:focus { background: transparent; box-shadow: none; border: none; }
    .btn-action {
      background: linear-gradient(135deg, var(--color-primary), #ff5c7c);
      color: var(--text-white);
      padding: 0.48rem 1.25rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255, 45, 85, 0.35);
      transition: all 0.25s ease;
    }
    .btn-action:hover {
      background: linear-gradient(135deg, #e02449, #ff3f65);
      color: var(--text-white);
      transform: translateY(-1px);
    }
    .hero-flagship {
      position: relative;
      min-height: 520px;
      background: linear-gradient(to right, rgba(10, 11, 14, 0.95) 20%, rgba(10, 11, 14, 0.7) 60%, rgba(10, 11, 14, 0.85)), url('/assets/images/8a8844b413483117.jpg') center/cover no-repeat;
      border-bottom: 1px solid var(--border-light);
      padding: 5rem 0 3.5rem;
      display: flex;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(255, 45, 85, 0.12);
      border: 1px solid rgba(255, 45, 85, 0.3);
      color: var(--color-primary);
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .hero-title {
      font-size: 2.85rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      color: var(--text-white);
    }
    .hero-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 640px;
      margin-bottom: 1.8rem;
    }
    .series-nav-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 2rem;
      background: rgba(18, 20, 27, 0.75);
      border: 1px solid var(--border-light);
      padding: 0.5rem 0.8rem;
      border-radius: 8px;
      backdrop-filter: blur(8px);
      width: fit-content;
    }
    .series-nav-item {
      font-size: 0.8rem;
      color: var(--text-muted);
      padding: 0.25rem 0.65rem;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .series-nav-item:hover { color: var(--color-accent); background: rgba(0, 242, 254, 0.08); }
    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .btn-outline {
      background: var(--bg-surface);
      color: var(--text-white);
      border: 1px solid var(--border-light);
      padding: 0.55rem 1.4rem;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .btn-outline:hover {
      border-color: var(--color-accent);
      color: var(--color-accent);
    }
    .section-block {
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--border-light);
    }
    .section-header {
      margin-bottom: 2.5rem;
    }
    .section-tagline {
      color: var(--color-primary);
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.4rem;
      display: block;
    }
    .section-title {
      font-size: 1.95rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.6rem;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      max-width: 720px;
      line-height: 1.65;
      margin-bottom: 0;
    }
    .category-matrix-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all 0.3s ease;
      position: relative;
      display: block;
      height: 100%;
    }
    .category-matrix-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-active);
      box-shadow: var(--shadow-glow);
    }
    .cat-poster-wrap {
      position: relative;
      height: 190px;
      overflow: hidden;
    }
    .cat-poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }
    .category-matrix-card:hover .cat-poster-wrap img {
      transform: scale(1.06);
    }
    .cat-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(10, 11, 14, 0.75);
      backdrop-filter: blur(4px);
      border: 1px solid var(--border-light);
      padding: 0.2rem 0.55rem;
      border-radius: 4px;
      font-size: 0.72rem;
      color: var(--color-accent);
      font-weight: 600;
    }
    .cat-content {
      padding: 1.25rem;
    }
    .cat-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.4rem;
    }
    .cat-intro {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 0.8rem;
    }
    .cat-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: var(--text-dim);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.75rem;
    }
    .data-metric-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 1.8rem 1.2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .data-metric-box:hover {
      border-color: rgba(0, 242, 254, 0.4);
      transform: translateY(-3px);
    }
    .data-metric-val {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--text-white);
      line-height: 1;
      margin-bottom: 0.5rem;
      font-family: -apple-system, sans-serif;
    }
    .data-metric-val span { color: var(--color-primary); font-size: 1.2rem; margin-left: 2px; }
    .data-metric-name {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-white);
      margin-bottom: 0.3rem;
    }
    .data-metric-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.45;
      margin-bottom: 0;
    }
    .pipeline-step {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 1.6rem 1.3rem;
      position: relative;
      height: 100%;
    }
    .step-index {
      font-size: 1.8rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.12);
      line-height: 1;
      margin-bottom: 0.8rem;
    }
    .step-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.4rem;
    }
    .step-desc {
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0;
    }
    .anime-media-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .anime-media-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-soft);
      border-color: rgba(255, 45, 85, 0.3);
    }
    .anime-thumb-box {
      position: relative;
      width: 100%;
      padding-top: 60%;
      overflow: hidden;
      background: #000;
    }
    .anime-thumb-box img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .anime-media-card:hover .anime-thumb-box img {
      transform: scale(1.05);
    }
    .thumb-pill {
      position: absolute;
      top: 8px;
      left: 8px;
      background: rgba(10, 11, 14, 0.8);
      border: 1px solid var(--border-light);
      padding: 0.15rem 0.5rem;
      border-radius: 4px;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--color-accent);
    }
    .thumb-score {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(255, 45, 85, 0.85);
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      font-size: 0.72rem;
      font-weight: 700;
      color: #fff;
    }
    .anime-info-box {
      padding: 1rem 1.1rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .anime-card-title {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.35rem;
    }
    .anime-card-synopsis {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 0.8rem;
    }
    .anime-quote {
      background: var(--bg-elevated);
      border-left: 2px solid var(--color-primary);
      padding: 0.45rem 0.6rem;
      font-size: 0.75rem;
      color: var(--text-dim);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }
    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 0.6rem;
      margin-top: 1.5rem;
    }
    .schedule-day-col {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 0.9rem 0.7rem;
    }
    .schedule-day-col.active {
      border-color: var(--color-primary);
      background: linear-gradient(180deg, rgba(255, 45, 85, 0.08) 0%, var(--bg-surface) 100%);
    }
    .schedule-day-title {
      font-size: 0.9rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 0.75rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--border-light);
      color: var(--text-white);
    }
    .schedule-day-col.active .schedule-day-title {
      color: var(--color-primary);
    }
    .schedule-item {
      padding: 0.45rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
      font-size: 0.75rem;
    }
    .schedule-item:last-child { border-bottom: none; }
    .schedule-time {
      color: var(--color-accent);
      font-size: 0.7rem;
      font-weight: 600;
      display: block;
    }
    .schedule-name {
      color: var(--text-muted);
      font-weight: 500;
      line-height: 1.35;
      display: block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .schedule-name:hover { color: var(--text-white); }
    .feature-curation-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 100%;
      position: relative;
    }
    .feature-curation-img {
      height: 200px;
      position: relative;
    }
    .feature-curation-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .feature-curation-body {
      padding: 1.4rem;
    }
    .feature-curation-body h4 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.45rem;
      color: var(--text-white);
    }
    .feature-curation-body p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0.8rem;
    }
    .rank-list-wrapper {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 1.5rem;
    }
    .rank-list-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .rank-list-item:last-child { border-bottom: none; }
    .rank-idx {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-dim);
      width: 24px;
      text-align: center;
    }
    .rank-idx.top-1 { color: var(--color-primary); }
    .rank-idx.top-2 { color: #ff9800; }
    .rank-idx.top-3 { color: var(--color-accent); }
    .rank-detail { flex-grow: 1; }
    .rank-name { font-size: 0.92rem; font-weight: 600; color: var(--text-white); }
    .rank-sub { font-size: 0.75rem; color: var(--text-dim); }
    .rank-heat { font-size: 0.8rem; font-weight: 700; color: var(--color-primary); }
    .spec-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 1.4rem;
      height: 100%;
    }
    .spec-icon {
      font-size: 1.6rem;
      color: var(--color-accent);
      margin-bottom: 0.75rem;
    }
    .spec-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.4rem;
    }
    .spec-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 0;
    }
    .studio-chip-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 1rem;
    }
    .studio-chip {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
      padding: 0.9rem;
      text-align: center;
      transition: all 0.25s ease;
    }
    .studio-chip:hover {
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }
    .studio-chip i { font-size: 1.35rem; color: var(--text-dim); margin-bottom: 0.4rem; display: block; }
    .studio-chip span { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); display: block; }
    .assurance-banner {
      background: linear-gradient(90deg, #12141b 0%, #1a1d26 50%, #12141b 100%);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 2.2rem 1.5rem;
    }
    .assure-item {
      text-align: center;
      padding: 0.5rem;
    }
    .assure-icon {
      font-size: 1.5rem;
      color: var(--color-primary);
      margin-bottom: 0.5rem;
    }
    .assure-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.25rem;
    }
    .assure-txt {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.45;
      margin-bottom: 0;
    }
    .faq-accordion-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      margin-bottom: 0.85rem;
      padding: 1.2rem 1.4rem;
    }
    .faq-question {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-white);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.5rem;
    }
    .faq-question i { color: var(--color-accent); font-size: 0.9rem; }
    .faq-answer {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 0;
      padding-left: 1.5rem;
    }
    .cta-flagship-box {
      background: radial-gradient(circle at 80% 50%, rgba(255, 45, 85, 0.15) 0%, rgba(18, 20, 27, 0.95) 70%), url('/assets/images/6c08da1e7d2da5e4.jpg') center/cover no-repeat;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 3.5rem 2.5rem;
      position: relative;
    }
    .cta-heading {
      font-size: 2.1rem;
      font-weight: 800;
      margin-bottom: 0.8rem;
      color: var(--text-white);
    }
    .cta-desc {
      font-size: 0.95rem;
      color: var(--text-muted);;
      max-width: 580px;
      line-height: 1.65;
      margin-bottom: 1.8rem;
    }
    .site-footer {
      background: #08080b;
      border-top: 1px solid var(--border-light);
      padding: 4rem 0 2rem;
      color: var(--text-dim);
      font-size: 0.85rem;
    }
    .footer-brand-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-brand-title i { color: var(--color-primary); }
    .footer-brand-p {
      line-height: 1.65;
      margin-bottom: 1.2rem;
      color: var(--text-muted);
    }
    .footer-col-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 1rem;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.55rem;
    }
    .footer-links-list a {
      color: var(--text-muted);
    }
    .footer-links-list a:hover {
      color: var(--color-primary);
    }
    .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;
    }
    @media screen and (max-width: 1024px) {
      .schedule-grid { grid-template-columns: repeat(4, 1fr); }
      .hero-title { font-size: 2.3rem; }
    }
    @media screen and (max-width: 768px) {
      .header-inner { flex-wrap: wrap; }
      .nav-segmented { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; }
      .schedule-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-flagship { padding: 3.5rem 0 2.5rem; min-height: auto; }
      .hero-title { font-size: 1.85rem; }
      .cta-flagship-box { padding: 2.2rem 1.4rem; }
      .footer-bottom-bar { flex-direction: column; text-align: center; }
    }
    @media screen and (max-width: 520px) {
      .schedule-grid { grid-template-columns: 1fr; }
      .search-pill { display: none; }
    }

/* roulang page: category1 */
:root {
            --bg-base: #0a0b0e;
            --bg-surface: #12141b;
            --bg-elevated: #1a1d26;
            --color-primary: #ff2d55;
            --color-primary-hover: #e02449;
            --color-accent: #00f2fe;
            --text-white: #ffffff;
            --text-muted: #a0a5b5;
            --text-dim: #5c6275;
            --border-light: rgba(255, 255, 255, 0.08);
            --border-active: rgba(255, 45, 85, 0.4);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 25px rgba(255, 45, 85, 0.25);
        }
        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background-color: var(--bg-base);
            color: var(--text-white);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
        a:hover, a:focus { color: var(--color-primary); }
        img { max-width: 100%; height: auto; display: block; }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 11, 14, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-light);
            padding: 0.75rem 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--text-white);
        }
        .brand-logo i { color: var(--color-primary); font-size: 1.5rem; }
        .nav-segmented {
            display: flex;
            align-items: center;
            background: var(--bg-surface);
            border-radius: 50px;
            padding: 4px;
            border: 1px solid var(--border-light);
        }
        .nav-item {
            padding: 0.45rem 1.1rem;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-muted);
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .nav-item:hover { color: var(--text-white); }
        .nav-item.active {
            background: var(--color-primary);
            color: var(--text-white);
            box-shadow: 0 2px 10px rgba(255, 45, 85, 0.4);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .search-pill {
            display: flex;
            align-items: center;
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: 50px;
            padding: 0.35rem 0.85rem;
            font-size: 0.82rem;
            color: var(--text-dim);
        }
        .search-pill input {
            background: transparent;
            border: none;
            color: var(--text-white);
            font-size: 0.82rem;
            margin: 0;
            padding: 0 0 0 0.4rem;
            box-shadow: none;
        }
        .search-pill input:focus { background: transparent; box-shadow: none; border: none; }
        .btn-action {
            background: linear-gradient(135deg, var(--color-primary), #ff5c7c);
            color: var(--text-white);
            padding: 0.48rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 45, 85, 0.35);
            transition: all 0.25s ease;
        }
        .btn-action:hover {
            background: linear-gradient(135deg, #e02449, #ff3f65);
            color: var(--text-white);
            transform: translateY(-1px);
        }

        /* 分类页定制样式 */
        .category-hero {
            position: relative;
            padding: 3.5rem 0 2.5rem;
            background: linear-gradient(180deg, rgba(18, 20, 27, 0.85) 0%, rgba(10, 11, 14, 0.98) 100%), url('/assets/images/6c08da1e7d2da5e4.jpg') center/cover no-repeat;
            border-bottom: 1px solid var(--border-light);
        }
        .cat-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255, 45, 85, 0.15);
            border: 1px solid rgba(255, 45, 85, 0.4);
            color: var(--color-primary);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        .cat-title {
            font-size: 2.3rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-white);
            margin-bottom: 0.8rem;
        }
        .cat-lead {
            font-size: 0.98rem;
            color: var(--text-muted);
            line-height: 1.65;
            max-width: 680px;
            margin-bottom: 0;
        }
        .cat-metrics {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 1.5rem;
            height: 100%;
        }
        .metric-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 1rem 1.4rem;
            text-align: center;
            min-width: 120px;
        }
        .metric-val {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-accent);
            display: block;
            line-height: 1.2;
        }
        .metric-lbl {
            font-size: 0.75rem;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* 筛选器板块 */
        .filter-wrapper {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-light);
            padding: 1.5rem 0;
        }
        .filter-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.75rem;
        }
        .filter-row:last-child { margin-bottom: 0; }
        .filter-label {
            font-size: 0.82rem;
            color: var(--text-dim);
            font-weight: 600;
            min-width: 65px;
        }
        .filter-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .filter-chip {
            font-size: 0.8rem;
            color: var(--text-muted);
            padding: 0.22rem 0.75rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-light);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .filter-chip:hover {
            color: var(--text-white);
            border-color: rgba(255, 255, 255, 0.2);
        }
        .filter-chip.active {
            background: var(--color-primary);
            color: var(--text-white);
            border-color: var(--color-primary);
            box-shadow: 0 2px 8px rgba(255, 45, 85, 0.3);
        }

        /* 核心海报流 */
        .section-space {
            padding: 3.5rem 0;
            border-bottom: 1px solid var(--border-light);
        }
        .section-heading-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }
        .section-title-wrap h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0;
            color: var(--text-white);
        }
        .section-title-wrap p {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin: 0.25rem 0 0;
        }
        .anime-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            height: calc(100% - 1.5rem);
        }
        .anime-card:hover {
            transform: translateY(-4px) scale(1.02);
            border-color: var(--border-active);
            box-shadow: var(--shadow-soft), var(--shadow-glow);
        }
        .poster-box {
            position: relative;
            aspect-ratio: 2 / 3;
            overflow: hidden;
            background: var(--bg-elevated);
        }
        .poster-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .anime-card:hover .poster-box img {
            transform: scale(1.06);
        }
        .badge-spec {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(10, 11, 14, 0.75);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--color-accent);
        }
        .badge-status {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(255, 45, 85, 0.85);
            padding: 0.2rem 0.55rem;
            border-radius: 4px;
            font-size: 0.72rem;
            font-weight: 600;
            color: #fff;
        }
        .card-info {
            padding: 0.9rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.4rem;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--text-dim);
        }
        .card-score {
            color: #ffb800;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .load-more-wrap {
            text-align: center;
            margin-top: 1.5rem;
        }
        .btn-load-more {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            color: var(--text-white);
            padding: 0.65rem 2.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.25s ease;
        }
        .btn-load-more:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            background: rgba(255, 45, 85, 0.05);
        }

        /* 巅峰热度榜单 */
        .rank-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1rem;
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            margin-bottom: 0.75rem;
            transition: all 0.25s ease;
        }
        .rank-item:hover {
            border-color: var(--border-active);
            transform: translateX(4px);
        }
        .rank-num {
            font-size: 1.25rem;
            font-weight: 800;
            width: 28px;
            text-align: center;
            color: var(--text-dim);
        }
        .rank-num.top-1 { color: var(--color-primary); }
        .rank-num.top-2 { color: #ff9f0a; }
        .rank-num.top-3 { color: var(--color-accent); }
        .rank-thumb {
            width: 50px;
            height: 65px;
            border-radius: 4px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .rank-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .rank-details {
            flex-grow: 1;
            min-width: 0;
        }
        .rank-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.25rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rank-tags {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .rank-heat {
            font-size: 0.82rem;
            color: var(--color-primary);
            font-weight: 700;
            text-align: right;
            white-space: nowrap;
        }

        /* 定制深度横幅 */
        .feature-banner-box {
            position: relative;
            background: linear-gradient(90deg, rgba(18, 20, 27, 0.95) 0%, rgba(18, 20, 27, 0.6) 60%, rgba(18, 20, 27, 0.9) 100%), url('/assets/images/f965cd383f9c6371.jpg') center/cover no-repeat;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 3rem;
            overflow: hidden;
        }
        .feature-tag {
            color: var(--color-accent);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            display: block;
        }
        .feature-banner-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.8rem;
        }
        .feature-banner-desc {
            font-size: 0.92rem;
            color: var(--text-muted);
            max-width: 580px;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        .btn-banner {
            background: var(--color-primary);
            color: #fff;
            padding: 0.55rem 1.4rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .btn-banner:hover {
            background: var(--color-primary-hover);
            color: #fff;
        }

        /* 视听解析与导览指南 */
        .guide-box {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 2rem;
            height: 100%;
        }
        .guide-box-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.2rem;
        }
        .guide-icon {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            background: rgba(0, 242, 254, 0.1);
            color: var(--color-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        .guide-icon.pink {
            background: rgba(255, 45, 85, 0.1);
            color: var(--color-primary);
        }
        .guide-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 0;
        }
        .guide-text {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 1rem;
        }
        .guide-points {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .guide-points li {
            font-size: 0.82rem;
            color: var(--text-dim);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .guide-points li i {
            color: var(--color-accent);
            font-size: 0.75rem;
        }

        /* 相关分类互通导流 */
        .cross-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.25s ease;
        }
        .cross-card:hover {
            border-color: var(--border-active);
            transform: translateY(-2px);
        }
        .cross-info h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 0 0 0.25rem;
        }
        .cross-info p {
            font-size: 0.78rem;
            color: var(--text-dim);
            margin: 0;
        }
        .cross-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-elevated);
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }
        .cross-card:hover .cross-arrow {
            background: var(--color-primary);
            color: #fff;
        }

        /* 全局页脚 */
        .site-footer {
            background: #07080a;
            border-top: 1px solid var(--border-light);
            padding: 3.5rem 0 2rem;
            margin-top: 2rem;
        }
        .footer-brand-title {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 0.8rem;
        }
        .footer-brand-title i { color: var(--color-primary); }
        .footer-brand-p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.2rem;
        }
        .footer-col-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 1rem;
        }
        .footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links-list li {
            margin-bottom: 0.55rem;
        }
        .footer-links-list a {
            font-size: 0.82rem;
            color: var(--text-dim);
        }
        .footer-links-list a:hover {
            color: var(--color-primary);
        }
        .footer-bottom-bar {
            border-top: 1px solid var(--border-light);
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--text-dim);
            flex-wrap: wrap;
            gap: 1rem;
        }

        @media screen and (max-width: 1024px) {
            .nav-segmented { display: none; }
            .cat-metrics { justify-content: flex-start; margin-top: 1.5rem; }
        }
        @media screen and (max-width: 640px) {
            .cat-title { font-size: 1.8rem; }
            .feature-banner-box { padding: 1.5rem; }
            .feature-banner-title { font-size: 1.35rem; }
            .filter-row { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
            .search-pill { display: none; }
        }

/* roulang page: category2 */
:root {
      --bg-base: #0a0b0e;
      --bg-surface: #12141b;
      --bg-elevated: #1a1d26;
      --color-primary: #ff2d55;
      --color-primary-hover: #e02449;
      --color-accent: #00f2fe;
      --text-white: #ffffff;
      --text-muted: #a0a5b5;
      --text-dim: #5c6275;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-active: rgba(255, 45, 85, 0.4);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
      --shadow-glow: 0 0 25px rgba(255, 45, 85, 0.25);
    }
    body {
      margin: 0;
      padding: 0;
      font-family: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-base);
      color: var(--text-white);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    a:hover, a:focus { color: var(--color-primary); }
    img { max-width: 100%; height: auto; display: block; }

    /* Header & Nav */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 11, 14, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      padding: 0.75rem 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--text-white);
    }
    .brand-logo i { color: var(--color-primary); font-size: 1.5rem; }
    .nav-segmented {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border-radius: 50px;
      padding: 4px;
      border: 1px solid var(--border-light);
    }
    .nav-item {
      padding: 0.45rem 1.1rem;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: all 0.25s ease;
      white-space: nowrap;
    }
    .nav-item:hover { color: var(--text-white); }
    .nav-item.active {
      background: var(--color-primary);
      color: var(--text-white);
      box-shadow: 0 2px 10px rgba(255, 45, 85, 0.4);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .search-pill {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: 50px;
      padding: 0.35rem 0.85rem;
      font-size: 0.82rem;
      color: var(--text-dim);
    }
    .search-pill input {
      background: transparent;
      border: none;
      color: var(--text-white);
      font-size: 0.82rem;
      margin: 0;
      padding: 0 0 0 0.4rem;
      box-shadow: none;
    }
    .search-pill input:focus { background: transparent; box-shadow: none; border: none; }
    .btn-action {
      background: linear-gradient(135deg, var(--color-primary), #ff5c7c);
      color: var(--text-white);
      padding: 0.48rem 1.25rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255, 45, 85, 0.35);
      transition: all 0.25s ease;
    }
    .btn-action:hover {
      background: linear-gradient(135deg, #e02449, #ff3f65);
      color: var(--text-white);
      transform: translateY(-1px);
    }

    /* Category Banner / Header */
    .cat-hero-panel {
      position: relative;
      background: linear-gradient(135deg, rgba(10, 11, 14, 0.96) 0%, rgba(18, 20, 27, 0.82) 60%, rgba(10, 11, 14, 0.94) 100%), url('/assets/images/f965cd383f9c6371.jpg') center/cover no-repeat;
      padding: 3.5rem 0 2.8rem;
      border-bottom: 1px solid var(--border-light);
    }
    .cat-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(0, 242, 254, 0.12);
      border: 1px solid rgba(0, 242, 254, 0.3);
      color: var(--color-accent);
      padding: 0.28rem 0.8rem;
      border-radius: 50px;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 0.9rem;
    }
    .cat-title-h1 {
      font-size: 2.35rem;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 0.8rem;
      letter-spacing: -0.5px;
      color: var(--text-white);
    }
    .cat-subline {
      font-size: 0.98rem;
      color: var(--text-muted);
      max-width: 720px;
      line-height: 1.65;
      margin-bottom: 0;
    }
    .cat-stats-pod {
      display: flex;
      gap: 1.2rem;
      justify-content: flex-end;
      align-items: center;
      height: 100%;
    }
    .stat-pill-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 1rem 1.4rem;
      text-align: center;
      min-width: 125px;
      box-shadow: var(--shadow-soft);
    }
    .stat-pill-val {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--color-accent);
      line-height: 1.2;
    }
    .stat-pill-lbl {
      font-size: 0.75rem;
      color: var(--text-dim);
      margin-top: 0.2rem;
    }

    /* Section Baseline */
    .sec-wrap {
      padding: 3.5rem 0;
      border-bottom: 1px solid var(--border-light);
    }
    .sec-head {
      margin-bottom: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .sec-tagline {
      display: block;
      color: var(--color-primary);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.35rem;
    }
    .sec-heading {
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--text-white);
      margin: 0;
      line-height: 1.3;
    }
    .sec-caption {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.4rem;
      max-width: 620px;
    }

    /* Multi-level Filter Controls */
    .filter-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.8rem;
      box-shadow: var(--shadow-soft);
    }
    .filter-row {
      display: flex;
      align-items: center;
      padding: 0.55rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .filter-row:last-child { border-bottom: none; }
    .filter-label {
      width: 85px;
      font-size: 0.82rem;
      color: var(--text-dim);
      font-weight: 600;
      flex-shrink: 0;
    }
    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .f-chip {
      display: inline-block;
      font-size: 0.8rem;
      padding: 0.22rem 0.75rem;
      border-radius: 50px;
      background: var(--bg-elevated);
      color: var(--text-muted);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .f-chip:hover {
      color: var(--text-white);
      border-color: rgba(255, 255, 255, 0.15);
    }
    .f-chip.active {
      background: rgba(255, 45, 85, 0.15);
      border-color: var(--color-primary);
      color: var(--color-primary);
      font-weight: 600;
    }

    /* Media Anime Grid */
    .anime-poster-card {
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-light);
      transition: all 0.35s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-soft);
    }
    .anime-poster-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-active);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), var(--shadow-glow);
    }
    .poster-box {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #101218;
    }
    .poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .anime-poster-card:hover .poster-box img {
      transform: scale(1.05);
    }
    .badge-top-left {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(10, 11, 14, 0.8);
      backdrop-filter: blur(8px);
      padding: 0.2rem 0.55rem;
      border-radius: var(--radius-sm);
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--color-accent);
      border: 1px solid rgba(0, 242, 254, 0.3);
    }
    .badge-top-right {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255, 45, 85, 0.85);
      backdrop-filter: blur(8px);
      padding: 0.2rem 0.5rem;
      border-radius: var(--radius-sm);
      font-size: 0.72rem;
      font-weight: 800;
      color: #fff;
    }
    .card-meta-pad {
      padding: 1rem 0.95rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .anime-title {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.45rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .anime-tags-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-bottom: 0.7rem;
    }
    .anime-min-tag {
      font-size: 0.7rem;
      color: var(--text-dim);
      background: rgba(255, 255, 255, 0.04);
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
    }
    .anime-foot-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.76rem;
      color: var(--text-muted);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.6rem;
    }
    .play-micro-btn {
      color: var(--color-primary);
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-weight: 600;
    }
    .btn-more-flow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--bg-surface);
      color: var(--text-white);
      border: 1px solid var(--border-light);
      padding: 0.75rem 2.5rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      transition: all 0.25s ease;
      cursor: pointer;
    }
    .btn-more-flow:hover {
      border-color: var(--color-primary);
      color: var(--color-primary);
      box-shadow: 0 4px 15px rgba(255, 45, 85, 0.2);
    }

    /* Rank Wall */
    .rank-list-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    @media (max-width: 768px) {
      .rank-list-grid { grid-template-columns: 1fr; }
    }
    .rank-card-row {
      display: flex;
      align-items: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 0.8rem;
      gap: 1rem;
      transition: all 0.25s ease;
    }
    .rank-card-row:hover {
      background: var(--bg-elevated);
      border-color: rgba(255, 255, 255, 0.15);
    }
    .rank-num-seq {
      font-size: 1.4rem;
      font-weight: 800;
      font-style: italic;
      color: var(--text-dim);
      width: 32px;
      text-align: center;
      flex-shrink: 0;
    }
    .rank-num-seq.top-1 { color: #ff3366; }
    .rank-num-seq.top-2 { color: #ff9900; }
    .rank-num-seq.top-3 { color: #00f2fe; }
    .rank-thumb-box {
      width: 70px;
      height: 95px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }
    .rank-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .rank-info-block {
      flex-grow: 1;
      min-width: 0;
    }
    .rank-tit {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-white);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 0.3rem;
    }
    .rank-desc-short {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .rank-heat-val {
      font-size: 0.74rem;
      color: var(--color-accent);
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    /* Custom Deep Banner */
    .deep-curation-banner {
      background: linear-gradient(90deg, rgba(10, 11, 14, 0.96) 0%, rgba(26, 29, 38, 0.85) 50%, rgba(10, 11, 14, 0.92) 100%), url('/assets/images/70634b2e75c0b709.jpg') center/cover no-repeat;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 3rem 3.5rem;
      position: relative;
      overflow: hidden;
    }
    .curation-badge {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--color-primary);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.6rem;
      display: block;
    }
    .curation-head {
      font-size: 1.85rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 1rem;
      max-width: 650px;
      line-height: 1.3;
    }
    .curation-p {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 640px;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .curation-feats {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 1.8rem;
    }
    .curation-feat-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.84rem;
      color: var(--text-white);
    }
    .curation-feat-item i { color: var(--color-accent); }

    /* Audiovisual Analysis Panel */
    .analysis-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 2rem;
      height: 100%;
    }
    .analysis-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(0, 242, 254, 0.1);
      border: 1px solid rgba(0, 242, 254, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-accent);
      font-size: 1.25rem;
      margin-bottom: 1.2rem;
    }
    .analysis-icon.alt-color {
      background: rgba(255, 45, 85, 0.1);
      border-color: rgba(255, 45, 85, 0.3);
      color: var(--color-primary);
    }
    .analysis-h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.8rem;
    }
    .analysis-p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }

    /* Inter-category Connect */
    .cat-bridge-card {
      display: block;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      position: relative;
      transition: all 0.3s ease;
      overflow: hidden;
    }
    .cat-bridge-card:hover {
      border-color: var(--color-accent);
      transform: translateY(-3px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
    }
    .bridge-tag {
      font-size: 0.72rem;
      color: var(--color-accent);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.4rem;
      display: block;
    }
    .bridge-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.4rem;
    }
    .bridge-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin: 0;
    }
    .bridge-arrow {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      color: var(--text-dim);
      font-size: 1rem;
      transition: transform 0.2s ease, color 0.2s ease;
    }
    .cat-bridge-card:hover .bridge-arrow {
      color: var(--color-accent);
      transform: translateX(4px);
    }

    /* Site Footer */
    .site-footer {
      background: #07080a;
      border-top: 1px solid var(--border-light);
      padding: 4rem 0 2rem;
    }
    .footer-brand-title {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 1rem;
    }
    .footer-brand-title i { color: var(--color-primary); }
    .footer-brand-p {
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }
    .footer-col-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 1.2rem;
      letter-spacing: 0.5px;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.65rem;
      font-size: 0.84rem;
      color: var(--text-muted);
    }
    .footer-links-list a:hover { color: var(--color-accent); }
    .footer-bottom-bar {
      margin-top: 3rem;
      padding-top: 1.8rem;
      border-top: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.8rem;
      color: var(--text-dim);
    }

    @media (max-width: 768px) {
      .header-inner { flex-direction: column; align-items: stretch; gap: 0.8rem; }
      .nav-segmented { overflow-x: auto; max-width: 100%; }
      .nav-actions { display: none; }
      .cat-stats-pod { justify-content: flex-start; margin-top: 1.5rem; }
      .deep-curation-banner { padding: 2rem 1.5rem; }
    }

/* roulang page: category3 */
:root {
    --bg-base: #0a0b0e;
    --bg-surface: #12141b;
    --bg-elevated: #1a1d26;
    --color-primary: #ff2d55;
    --color-primary-hover: #e02449;
    --color-accent: #00f2fe;
    --text-white: #ffffff;
    --text-muted: #a0a5b5;
    --text-dim: #5c6275;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-active: rgba(255, 45, 85, 0.4);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(255, 45, 85, 0.25);
  }
  body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background-color: var(--bg-base);
    color: var(--text-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
  a:hover, a:focus { color: var(--color-primary); }
  img { max-width: 100%; height: auto; display: block; }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 11, 14, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-white);
  }
  .brand-logo i { color: var(--color-primary); font-size: 1.5rem; }
  .nav-segmented {
    display: flex;
    align-items: center;
    background: var(--bg-surface);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid var(--border-light);
  }
  .nav-item {
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.25s ease;
    white-space: nowrap;
  }
  .nav-item:hover { color: var(--text-white); }
  .nav-item.active {
    background: var(--color-primary);
    color: var(--text-white);
    box-shadow: 0 2px 10px rgba(255, 45, 85, 0.4);
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .search-pill {
    display: flex;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    color: var(--text-dim);
  }
  .search-pill input {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 0.82rem;
    margin: 0;
    padding: 0 0 0 0.4rem;
    box-shadow: none;
  }
  .search-pill input:focus { background: transparent; box-shadow: none; border: none; }
  .btn-action {
    background: linear-gradient(135deg, var(--color-primary), #ff5c7c);
    color: var(--text-white);
    padding: 0.48rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.35);
    transition: all 0.25s ease;
  }
  .btn-action:hover {
    background: linear-gradient(135deg, #e02449, #ff3f65);
    color: var(--text-white);
    transform: translateY(-1px);
  }
  .category-banner {
    background: linear-gradient(180deg, rgba(10, 11, 14, 0.6) 0%, rgba(10, 11, 14, 0.98) 100%),
                url('/assets/images/f965cd383f9c6371.jpg') center/cover no-repeat;
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border-light);
  }
  .cat-hero-title {
    font-size: 2.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .cat-hero-title i { color: var(--color-primary); }
  .cat-hero-desc {
    color: var(--text-muted);
    font-size: 0.96rem;
    max-width: 680px;
    margin-bottom: 0;
  }
  .stat-badge-group {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  .stat-pill-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.8rem 1.4rem;
    text-align: right;
  }
  .stat-pill-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .stat-pill-lbl {
    font-size: 0.76rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .filter-panel {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-light);
    padding: 1.2rem 0;
  }
  .filter-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
  }
  .filter-row:last-child { margin-bottom: 0; }
  .filter-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    width: 68px;
    flex-shrink: 0;
    font-weight: 600;
  }
  .filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .chip-item {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .chip-item:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
  }
  .chip-item.active {
    background: var(--color-primary);
    color: var(--text-white);
    font-weight: 600;
  }
  .section-pad {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border-light);
  }
  .block-head {
    margin-bottom: 1.8rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .block-head-left h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.35rem;
  }
  .block-head-left p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: 0;
  }
  .poster-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
  }
  .poster-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-active);
    box-shadow: var(--shadow-glow);
  }
  .poster-thumb {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #000;
  }
  .poster-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
  }
  .poster-card:hover .poster-thumb img {
    transform: scale(1.05);
  }
  .tag-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(8px);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 242, 254, 0.3);
  }
  .tag-score {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(255, 45, 85, 0.9);
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .poster-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .poster-title {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .poster-meta {
    font-size: 0.76rem;
    color: var(--text-dim);
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
  }
  .poster-intro {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .play-quick-btn {
    width: 100%;
    padding: 0.45rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
  .poster-card:hover .play-quick-btn {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
  }
  .loadmore-wrap {
    margin-top: 2.5rem;
    text-align: center;
  }
  .btn-loadmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    color: var(--text-white);
    padding: 0.65rem 2.2rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.25s;
  }
  .btn-loadmore:hover {
    border-color: var(--color-primary);
    background: var(--bg-elevated);
    color: var(--color-primary);
  }
  .rank-strip-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
    transition: all 0.25s ease;
  }
  .rank-strip-card:hover {
    border-color: var(--border-active);
    background: var(--bg-elevated);
    transform: translateX(4px);
  }
  .rank-num {
    font-size: 1.4rem;
    font-weight: 900;
    font-style: italic;
    color: var(--text-dim);
    width: 28px;
    text-align: center;
  }
  .rank-strip-card:nth-child(1) .rank-num { color: #ffd700; }
  .rank-strip-card:nth-child(2) .rank-num { color: #c0c0c0; }
  .rank-strip-card:nth-child(3) .rank-num { color: #cd7f32; }
  .rank-thumb-mini {
    width: 54px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .rank-thumb-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .rank-info {
    flex-grow: 1;
    overflow: hidden;
  }
  .rank-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .rank-stats {
    font-size: 0.74rem;
    color: var(--text-dim);
    display: flex;
    gap: 0.6rem;
  }
  .spotlight-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(90deg, rgba(10, 11, 14, 0.96) 0%, rgba(10, 11, 14, 0.65) 60%, rgba(10, 11, 14, 0.9) 100%),
                url('/assets/images/70634b2e75c0b709.jpg') center/cover no-repeat;
    border: 1px solid var(--border-light);
    padding: 3rem 2.5rem;
  }
  .spotlight-sub {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
  }
  .spotlight-heading {
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    max-width: 600px;
  }
  .spotlight-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .feature-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    height: 100%;
  }
  .feature-box-icon {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
  }
  .feature-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.6rem;
  }
  .feature-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
  }
  .channel-link-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
  }
  .channel-link-card:hover {
    border-color: var(--color-accent);
    background: var(--bg-elevated);
    transform: translateY(-3px);
  }
  .channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 242, 254, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .channel-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-white);
  }
  .channel-info span {
    font-size: 0.76rem;
    color: var(--text-dim);
  }
  .site-footer {
    background: #08090b;
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem;
    margin-top: 3rem;
  }
  .footer-brand-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
  }
  .footer-brand-title i { color: var(--color-primary); }
  .footer-brand-p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }
  .footer-col-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-links-list li { margin-bottom: 0.5rem; }
  .footer-links-list a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.2s;
  }
  .footer-links-list a:hover { color: var(--color-primary); }
  .footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2.8rem;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-dim);
  }
  @media screen and (max-width: 1024px) {
    .nav-segmented { display: none; }
    .hero-buttons, .stat-badge-group { justify-content: flex-start; margin-top: 1.2rem; }
  }
  @media screen and (max-width: 640px) {
    .cat-hero-title { font-size: 1.7rem; }
    .spotlight-banner { padding: 2rem 1.2rem; }
    .spotlight-heading { font-size: 1.4rem; }
  }

/* roulang page: category4 */
:root {
        --bg-base: #0a0b0e;
        --bg-surface: #12141b;
        --bg-elevated: #1a1d26;
        --color-primary: #ff2d55;
        --color-primary-hover: #e02449;
        --color-accent: #00f2fe;
        --color-gold: #f5a623;
        --text-white: #ffffff;
        --text-muted: #a0a5b5;
        --text-dim: #5c6275;
        --border-light: rgba(255, 255, 255, 0.08);
        --border-active: rgba(255, 45, 85, 0.4);
        --radius-sm: 6px;
        --radius-md: 10px;
        --radius-lg: 16px;
        --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
        --shadow-glow: 0 0 25px rgba(255, 45, 85, 0.25);
    }

    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        padding: 0;
        font-family: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        background-color: var(--bg-base);
        color: var(--text-white);
        line-height: 1.65;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    a:hover, a:focus {
        color: var(--color-primary);
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* Global Header */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(10, 11, 14, 0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-light);
        padding: 0.75rem 0;
    }
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }
    .brand-logo {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 1.35rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: var(--text-white);
    }
    .brand-logo i {
        color: var(--color-primary);
        font-size: 1.5rem;
    }
    .nav-segmented {
        display: flex;
        align-items: center;
        background: var(--bg-surface);
        border-radius: 50px;
        padding: 4px;
        border: 1px solid var(--border-light);
    }
    .nav-item {
        padding: 0.45rem 1.1rem;
        border-radius: 50px;
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--text-muted);
        transition: all 0.25s ease;
        white-space: nowrap;
    }
    .nav-item:hover {
        color: var(--text-white);
    }
    .nav-item.active {
        background: var(--color-primary);
        color: var(--text-white);
        box-shadow: 0 2px 10px rgba(255, 45, 85, 0.4);
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .search-pill {
        display: flex;
        align-items: center;
        background: var(--bg-surface);
        border: 1px solid var(--border-light);
        border-radius: 50px;
        padding: 0.35rem 0.85rem;
        font-size: 0.82rem;
        color: var(--text-dim);
    }
    .search-pill input {
        background: transparent;
        border: none;
        color: var(--text-white);
        font-size: 0.82rem;
        margin: 0;
        padding: 0 0 0 0.4rem;
        box-shadow: none;
    }
    .search-pill input:focus {
        background: transparent;
        box-shadow: none;
        border: none;
    }
    .btn-action {
        background: linear-gradient(135deg, var(--color-primary), #ff5c7c);
        color: var(--text-white);
        padding: 0.48rem 1.25rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(255, 45, 85, 0.35);
        transition: all 0.25s ease;
    }
    .btn-action:hover {
        background: linear-gradient(135deg, #e02449, #ff3f65);
        color: var(--text-white);
        transform: translateY(-1px);
    }

    /* Section Generic */
    .section-block {
        padding: 4.2rem 0;
        border-bottom: 1px solid var(--border-light);
    }
    .section-tagline {
        color: var(--color-accent);
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 0.4rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .section-title {
        font-size: 1.95rem;
        font-weight: 700;
        color: var(--text-white);
        margin-bottom: 0.6rem;
    }
    .section-desc {
        color: var(--text-muted);
        font-size: 0.95rem;
        max-width: 680px;
        line-height: 1.65;
    }

    /* Block 1: Category Header + Interactive Matcher (Blueprint: 自测选型短问卷视觉) */
    .cat-hero-wrap {
        position: relative;
        background: linear-gradient(135deg, rgba(10, 11, 14, 0.97) 15%, rgba(18, 20, 27, 0.85) 65%, rgba(10, 11, 14, 0.95)), url('/assets/images/6ac457cd9562ffd2.jpg') center/cover no-repeat;
        padding: 3.8rem 0 3.5rem;
        border-bottom: 1px solid var(--border-light);
    }
    .cat-h1 {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }
    .cat-h1 span {
        background: linear-gradient(135deg, #ffffff 40%, var(--color-primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .cat-lead {
        font-size: 1.02rem;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 1.8rem;
    }
    .cat-kpis {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .cat-kpi-item {
        background: rgba(26, 29, 38, 0.6);
        border: 1px solid var(--border-light);
        padding: 0.75rem 1.25rem;
        border-radius: var(--radius-md);
        backdrop-filter: blur(8px);
    }
    .cat-kpi-val {
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--color-accent);
        font-family: monospace;
    }
    .cat-kpi-label {
        font-size: 0.76rem;
        color: var(--text-dim);
    }

    /* Blueprint Questionnaire Card */
    .matcher-card {
        background: var(--bg-surface);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-lg);
        padding: 1.8rem;
        box-shadow: var(--shadow-soft);
        position: relative;
        overflow: hidden;
    }
    .matcher-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    }
    .matcher-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--color-primary);
        background: rgba(255, 45, 85, 0.1);
        padding: 0.25rem 0.65rem;
        border-radius: 50px;
        margin-bottom: 0.75rem;
    }
    .matcher-title {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .matcher-step {
        margin-bottom: 1rem;
    }
    .matcher-step-label {
        font-size: 0.8rem;
        color: var(--text-dim);
        margin-bottom: 0.4rem;
        display: block;
    }
    .matcher-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    .opt-chip {
        background: var(--bg-elevated);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-sm);
        padding: 0.45rem 0.5rem;
        text-align: center;
        font-size: 0.78rem;
        color: var(--text-muted);
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .opt-chip.selected, .opt-chip:hover {
        border-color: var(--color-accent);
        color: var(--text-white);
        background: rgba(0, 242, 254, 0.08);
    }
    .matcher-preview {
        background: rgba(10, 11, 14, 0.65);
        border: 1px dashed var(--border-light);
        border-radius: var(--radius-sm);
        padding: 0.8rem;
        margin: 1.2rem 0;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }
    .matcher-preview-thumb {
        width: 48px;
        height: 64px;
        border-radius: 4px;
        flex-shrink: 0;
    }
    .matcher-preview-info {
        flex: 1;
        min-width: 0;
    }
    .matcher-preview-title {
        font-size: 0.85rem;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .matcher-preview-meta {
        font-size: 0.74rem;
        color: var(--color-accent);
        margin-top: 0.2rem;
    }
    .btn-matcher-cta {
        width: 100%;
        background: linear-gradient(135deg, var(--color-primary), #ff486e);
        color: var(--text-white);
        border: none;
        border-radius: var(--radius-md);
        padding: 0.65rem 1rem;
        font-weight: 700;
        font-size: 0.88rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 4px 16px rgba(255, 45, 85, 0.3);
        transition: all 0.25s ease;
    }
    .btn-matcher-cta:hover {
        background: linear-gradient(135deg, #e02449, #ff335c);
        box-shadow: 0 6px 20px rgba(255, 45, 85, 0.45);
    }

    /* Block 2: Multi-dimensional Filter Bar */
    .filter-wrapper {
        background: var(--bg-surface);
        border-bottom: 1px solid var(--border-light);
        padding: 1.5rem 0;
    }
    .filter-group {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        flex-wrap: wrap;
    }
    .filter-group:last-child {
        margin-bottom: 0;
    }
    .filter-label {
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--text-dim);
        min-width: 72px;
    }
    .filter-chips {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        flex-wrap: wrap;
    }
    .filter-chip {
        font-size: 0.8rem;
        color: var(--text-muted);
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        background: transparent;
        border: 1px solid transparent;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .filter-chip:hover {
        color: var(--text-white);
        border-color: var(--border-light);
    }
    .filter-chip.active {
        background: rgba(255, 45, 85, 0.15);
        color: var(--color-primary);
        font-weight: 700;
        border-color: var(--border-active);
    }

    /* Block 3: Content Grid Showcase */
    .grid-movie-card {
        background: var(--bg-surface);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: all 0.35s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .grid-movie-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 45, 85, 0.45);
        box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.7), var(--shadow-glow);
    }
    .movie-poster-box {
        position: relative;
        aspect-ratio: 2 / 3;
        overflow: hidden;
        background: #000;
    }
    .movie-poster-box img {
        width: 100%;
        height: 100%;
        transition: transform 0.4s ease;
    }
    .grid-movie-card:hover .movie-poster-box img {
        transform: scale(1.05);
    }
    .badge-resolution {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(10, 11, 14, 0.82);
        backdrop-filter: blur(8px);
        color: var(--color-accent);
        border: 1px solid rgba(0, 242, 254, 0.35);
        font-size: 0.7rem;
        font-weight: 700;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        letter-spacing: 0.5px;
    }
    .badge-rating {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(245, 166, 35, 0.9);
        color: #000;
        font-size: 0.72rem;
        font-weight: 800;
        padding: 0.2rem 0.45rem;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }
    .movie-meta-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem 0.8rem 0.6rem;
        background: linear-gradient(to top, rgba(18, 20, 27, 0.98), transparent);
        font-size: 0.75rem;
        color: var(--text-dim);
    }
    .movie-info-body {
        padding: 0.9rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .movie-title {
        font-size: 0.98rem;
        font-weight: 700;
        color: var(--text-white);
        margin-bottom: 0.35rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .movie-tags {
        font-size: 0.75rem;
        color: var(--text-dim);
        margin-bottom: 0.6rem;
    }
    .movie-action-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 0.6rem;
        border-top: 1px solid var(--border-light);
    }
    .movie-duration {
        font-size: 0.75rem;
        color: var(--text-muted);
    }
    .btn-play-trigger {
        font-size: 0.78rem;
        color: var(--color-primary);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }
    .btn-play-trigger:hover {
        color: #ff5c7c;
    }
    .load-more-row {
        text-align: center;
        padding-top: 2.8rem;
    }
    .btn-load-more {
        background: var(--bg-surface);
        border: 1px solid var(--border-light);
        color: var(--text-white);
        padding: 0.7rem 2.2rem;
        border-radius: 50px;
        font-size: 0.88rem;
        font-weight: 600;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }
    .btn-load-more:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
        background: rgba(255, 45, 85, 0.05);
    }

    /* Block 4: Peak Chart (Rankings 1-10) */
    .rank-list-card {
        background: var(--bg-surface);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: all 0.25s ease;
        margin-bottom: 0.75rem;
    }
    .rank-list-card:hover {
        background: var(--bg-elevated);
        border-color: var(--border-active);
    }
    .rank-num {
        font-size: 1.35rem;
        font-weight: 900;
        font-family: monospace;
        width: 32px;
        text-align: center;
        color: var(--text-dim);
    }
    .rank-list-card:nth-child(1) .rank-num { color: #ff2d55; }
    .rank-list-card:nth-child(2) .rank-num { color: #ff7300; }
    .rank-list-card:nth-child(3) .rank-num { color: #f5a623; }
    .rank-thumb {
        width: 46px;
        height: 60px;
        border-radius: 4px;
        flex-shrink: 0;
    }
    .rank-info {
        flex: 1;
        min-width: 0;
    }
    .rank-name {
        font-size: 0.92rem;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0.2rem;
    }
    .rank-sub {
        font-size: 0.75rem;
        color: var(--text-dim);
    }
    .rank-score {
        text-align: right;
        flex-shrink: 0;
    }
    .score-val {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--color-gold);
        font-family: monospace;
    }
    .score-tag {
        font-size: 0.7rem;
        color: var(--text-dim);
        display: block;
    }

    /* Block 5: Thematic Curated Feature Banner */
    .thematic-banner {
        position: relative;
        background: linear-gradient(90deg, rgba(10, 11, 14, 0.96) 25%, rgba(18, 20, 27, 0.8) 70%, rgba(10, 11, 14, 0.95)), url('/assets/images/f965cd383f9c6371.jpg') center/cover no-repeat;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-light);
        padding: 3.5rem;
        overflow: hidden;
    }
    .thematic-content {
        max-width: 600px;
        position: relative;
        z-index: 2;
    }
    .thematic-badge {
        display: inline-block;
        background: rgba(0, 242, 254, 0.12);
        border: 1px solid rgba(0, 242, 254, 0.3);
        color: var(--color-accent);
        font-size: 0.76rem;
        font-weight: 700;
        padding: 0.25rem 0.65rem;
        border-radius: 50px;
        margin-bottom: 0.8rem;
    }
    .thematic-title {
        font-size: 1.85rem;
        font-weight: 800;
        color: var(--text-white);
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    .thematic-desc {
        color: var(--text-muted);
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    .thematic-specs {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1.8rem;
    }
    .spec-item {
        font-size: 0.8rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }
    .spec-item i {
        color: var(--color-primary);
    }

    /* Block 6: Deep Dive Audio-Visual Guide */
    .guide-panel {
        background: var(--bg-surface);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        padding: 2rem;
        height: 100%;
    }
    .guide-icon-header {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    .guide-icon-header i {
        font-size: 1.6rem;
        color: var(--color-primary);
    }
    .guide-panel-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-white);
    }
    .guide-p {
        font-size: 0.88rem;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
    .guide-bullets {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .guide-bullets li {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-bottom: 0.6rem;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .guide-bullets li i {
        color: var(--color-accent);
        margin-top: 0.25rem;
        font-size: 0.75rem;
    }

    /* Block 7: Cross-Category Exploration Matrix */
    .cross-cat-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.25rem;
    }
    .cross-cat-card {
        background: var(--bg-surface);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .cross-cat-card:hover {
        border-color: var(--color-accent);
        transform: translateY(-3px);
    }
    .cross-cat-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 48px;
        height: 48px;
        background: radial-gradient(circle, rgba(0, 242, 254, 0.15), transparent 70%);
    }
    .cross-cat-name {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
    }
    .cross-cat-count {
        font-size: 0.78rem;
        color: var(--text-dim);
        margin-bottom: 0.8rem;
    }
    .cross-cat-desc {
        font-size: 0.82rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    .cross-cat-link {
        font-size: 0.8rem;
        color: var(--color-accent);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }

    /* Global Footer */
    .site-footer {
        background: #08090b;
        border-top: 1px solid var(--border-light);
        padding: 3.5rem 0 2rem;
    }
    .footer-brand-title {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--text-white);
        margin-bottom: 1rem;
    }
    .footer-brand-title i {
        color: var(--color-primary);
    }
    .footer-brand-p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
    .footer-col-title {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--text-white);
        margin-bottom: 1.2rem;
        letter-spacing: 0.5px;
    }
    .footer-links-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-links-list li {
        margin-bottom: 0.6rem;
    }
    .footer-links-list a {
        font-size: 0.82rem;
        color: var(--text-dim);
    }
    .footer-links-list a:hover {
        color: var(--text-white);
    }
    .footer-bottom-bar {
        margin-top: 3rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.8rem;
        color: var(--text-dim);
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
        .cat-h1 { font-size: 2.1rem; }
        .thematic-banner { padding: 2.5rem; }
    }
    @media (max-width: 768px) {
        .header-inner { flex-wrap: wrap; }
        .nav-segmented { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; padding: 4px; }
        .search-pill { display: none; }
        .cat-h1 { font-size: 1.75rem; }
        .thematic-banner { padding: 1.8rem; }
        .thematic-title { font-size: 1.45rem; }
        .footer-bottom-bar { flex-direction: column; text-align: center; }
    }
