/* roulang page: index */
:root {
      --brand-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
      --brand-gradient-hover: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #ea580c 100%);
      --bg-main: #0B0D13;
      --bg-card: rgba(255, 255, 255, 0.035);
      --bg-card-hover: rgba(255, 255, 255, 0.065);
      --bg-elevated: #151922;
      --border-card: rgba(255, 255, 255, 0.08);
      --border-card-hover: rgba(236, 72, 153, 0.4);
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --text-dim: #64748B;
      --cyan-neon: #06B6D4;
      --gold-accent: #F59E0B;
      --radius-lg: 1.5rem;
      --radius-md: 1.125rem;
      --radius-sm: 0.75rem;
      --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
      --shadow-glow: 0 0 30px rgba(236, 72, 153, 0.15);
    }

    * {
      box-sizing: border-box;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s ease;
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1050;
      background: rgba(11, 13, 19, 0.82);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-brand-logo {
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-link {
      color: var(--text-muted) !important;
      font-size: 0.95rem;
      font-weight: 500;
      padding: 0.5rem 0.85rem !important;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }

    .nav-link:hover, .nav-link.active {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.06);
    }

    /* 时间线活动 Chip 组合 */
    .timeline-chips-wrap {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      padding-left: 0.75rem;
      border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .timeline-chip {
      font-size: 0.75rem;
      padding: 0.25rem 0.65rem;
      border-radius: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      white-space: nowrap;
      text-decoration: none;
      font-weight: 500;
    }

    .chip-preview {
      background: rgba(6, 182, 212, 0.1);
      border: 1px solid rgba(6, 182, 212, 0.4);
      color: #67e8f9;
    }

    .chip-live {
      background: rgba(236, 72, 153, 0.12);
      border: 1px solid rgba(236, 72, 153, 0.5);
      color: #f472b6;
    }

    .chip-playback {
      background: rgba(148, 163, 184, 0.08);
      border: 1px solid rgba(148, 163, 184, 0.25);
      color: #cbd5e1;
    }

    .dot-live {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: #22c55e;
      box-shadow: 0 0 8px #22c55e;
      animation: pulseBreath 1.8s infinite;
    }

    .dot-amber {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: #f59e0b;
    }

    @keyframes pulseBreath {
      0% { opacity: 0.4; transform: scale(0.9); }
      50% { opacity: 1; transform: scale(1.25); }
      100% { opacity: 0.4; transform: scale(0.9); }
    }

    /* 按钮与通用组件 */
    .btn-brand-gradient {
      background: var(--brand-gradient);
      color: #fff !important;
      font-weight: 600;
      border: none;
      padding: 0.75rem 1.6rem;
      border-radius: var(--radius-sm);
      box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-brand-gradient:hover {
      opacity: 0.95;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(236, 72, 153, 0.4);
    }

    .btn-brand-outline {
      background: rgba(255, 255, 255, 0.05);
      color: #fff !important;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 0.75rem 1.6rem;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-brand-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
    }

    /* 圆角大卡片系统 */
    .stream-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .stream-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-card-hover);
      transform: translateY(-6px);
      box-shadow: var(--shadow-card), var(--shadow-glow);
    }

    /* 数据徽章 */
    .data-pill {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.3rem 0.75rem;
      border-radius: 50rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      backdrop-filter: blur(8px);
    }

    .data-pill-cyan {
      background: rgba(6, 182, 212, 0.12);
      color: var(--cyan-neon);
      border: 1px solid rgba(6, 182, 212, 0.3);
    }

    .data-pill-gold {
      background: rgba(245, 158, 11, 0.12);
      color: var(--gold-accent);
      border: 1px solid rgba(245, 158, 11, 0.3);
    }

    .data-pill-purple {
      background: rgba(139, 92, 246, 0.15);
      color: #c084fc;
      border: 1px solid rgba(139, 92, 246, 0.35);
    }

    /* 板块通用修饰 */
    .section-spacing {
      padding: 5rem 0;
      position: relative;
    }

    .section-title-tag {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #f472b6;
      font-weight: 700;
      margin-bottom: 0.5rem;
      display: block;
    }

    .section-title {
      font-size: 2.15rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.85rem;
      color: #ffffff;
    }

    .section-desc {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
    }

    /* Hero 杂志分栏布局定制 */
    .hero-journal {
      position: relative;
      padding: 4.5rem 0 3.5rem;
      background: radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
                  radial-gradient(circle at 20% 60%, rgba(139, 92, 246, 0.14) 0%, transparent 60%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero-h1 {
      font-size: 2.85rem;
      line-height: 1.18;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
    }

    .hero-h1 span {
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-journal-lead {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .hero-featured-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      position: relative;
      box-shadow: var(--shadow-card);
    }

    .hero-featured-img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: var(--radius-md);
      margin-bottom: 1.2rem;
      display: block;
    }

    /* 海报封面比例 */
    .poster-media-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .poster-media-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .stream-card:hover .poster-media-wrap img {
      transform: scale(1.04);
    }

    .poster-overlay-top {
      position: absolute;
      top: 0.65rem;
      left: 0.65rem;
      right: 0.65rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 2;
    }

    /* 播放按钮浮层 */
    .poster-play-hover {
      position: absolute;
      inset: 0;
      background: rgba(11, 13, 19, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .poster-play-hover i {
      width: 48px;
      height: 48px;
      background: var(--brand-gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: #fff;
      box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    }

    .stream-card:hover .poster-play-hover {
      opacity: 1;
    }

    /* 仪表盘 KPI 数值卡 */
    .kpi-block {
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      text-align: left;
      height: 100%;
    }

    .kpi-val {
      font-size: 2.25rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.25rem;
    }

    /* 对比表格重写 */
    .matrix-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-card);
      background: var(--bg-card);
    }

    .matrix-table th, .matrix-table td {
      padding: 1rem 1.25rem;
      font-size: 0.92rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .matrix-table th {
      background: rgba(255, 255, 255, 0.04);
      font-weight: 600;
      color: #fff;
    }

    .matrix-table tr:last-child td {
      border-bottom: none;
    }

    /* 手风琴重写 */
    .accordion-item {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-md) !important;
      margin-bottom: 0.85rem;
      overflow: hidden;
    }

    .accordion-button {
      background: transparent;
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      padding: 1.2rem 1.4rem;
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      background: rgba(255, 255, 255, 0.04);
      color: #f472b6;
    }

    .accordion-button::after {
      filter: invert(1);
    }

    .accordion-body {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.75;
      padding: 1.2rem 1.4rem;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    /* 页脚样式 */
    .site-footer {
      background: #080A0E;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 4.5rem 0 2.5rem;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .footer-heading {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
    }

    .footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links-list li {
      margin-bottom: 0.65rem;
    }

    .footer-links-list a {
      color: var(--text-muted);
    }

    .footer-links-list a:hover {
      color: #fff;
      padding-left: 4px;
    }

    .footer-bottom {
      margin-top: 3.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 0.82rem;
      color: var(--text-dim);
    }

    @media (max-width: 991px) {
      .hero-h1 {
        font-size: 2.15rem;
      }
      .section-spacing {
        padding: 3.5rem 0;
      }
      .timeline-chips-wrap {
        border-left: none;
        padding-left: 0;
        margin-top: 1rem;
        flex-wrap: wrap;
      }
    }

/* roulang page: category1 */
:root {
            --brand-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
            --brand-gradient-hover: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #ea580c 100%);
            --bg-main: #0B0D13;
            --bg-card: rgba(255, 255, 255, 0.035);
            --bg-card-hover: rgba(255, 255, 255, 0.065);
            --bg-elevated: #151922;
            --border-card: rgba(255, 255, 255, 0.08);
            --border-card-hover: rgba(236, 72, 153, 0.4);
            --text-main: #F8FAFC;
            --text-muted: #94A3B8;
            --text-dim: #64748B;
            --cyan-neon: #06B6D4;
            --gold-accent: #F59E0B;
            --radius-lg: 1.5rem;
            --radius-md: 1.125rem;
            --radius-sm: 0.75rem;
            --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
            --shadow-glow: 0 0 30px rgba(236, 72, 153, 0.15);
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.65;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.25s ease;
        }
        /* 顶部导航 */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(11, 13, 19, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .navbar-brand-logo {
            font-size: 1.45rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-link {
            color: var(--text-muted) !important;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.5rem 0.85rem !important;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: #fff !important;
            background: rgba(255, 255, 255, 0.06);
        }
        /* 时间线活动 Chip 组合 */
        .timeline-chips-wrap {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            padding-left: 0.75rem;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }
        .timeline-chip {
            font-size: 0.75rem;
            padding: 0.25rem 0.65rem;
            border-radius: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            white-space: nowrap;
            text-decoration: none;
            font-weight: 500;
        }
        .chip-preview {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.4);
            color: #67e8f9;
        }
        .chip-live {
            background: rgba(236, 72, 153, 0.12);
            border: 1px solid rgba(236, 72, 153, 0.5);
            color: #f472b6;
        }
        .chip-playback {
            background: rgba(148, 163, 184, 0.08);
            border: 1px solid rgba(148, 163, 184, 0.25);
            color: #cbd5e1;
        }
        .dot-amber {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #06b6d4;
            display: inline-block;
        }
        .dot-live {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #ec4899;
            display: inline-block;
            box-shadow: 0 0 6px #ec4899;
            animation: pulse-dot 1.5s infinite;
        }
        @keyframes pulse-dot {
            0% { transform: scale(0.9); opacity: 0.8; }
            50% { transform: scale(1.3); opacity: 1; }
            100% { transform: scale(0.9); opacity: 0.8; }
        }
        /* 按钮与通用组件 */
        .btn-brand-gradient {
            background: var(--brand-gradient);
            color: #fff !important;
            font-weight: 600;
            border: none;
            padding: 0.75rem 1.6rem;
            border-radius: var(--radius-sm);
            box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-brand-gradient:hover {
            opacity: 0.95;
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(236, 72, 153, 0.4);
        }
        .btn-brand-outline {
            background: rgba(255, 255, 255, 0.05);
            color: #fff !important;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 0.75rem 1.6rem;
            border-radius: var(--radius-sm);
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-brand-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        /* 圆角大卡片系统 */
        .stream-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }
        .stream-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-card-hover);
            transform: translateY(-6px);
            box-shadow: var(--shadow-card), var(--shadow-glow);
        }
        /* 数据徽章 */
        .data-pill {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.3rem 0.75rem;
            border-radius: 50rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            backdrop-filter: blur(8px);
        }
        .data-pill-cyan {
            background: rgba(6, 182, 212, 0.12);
            color: var(--cyan-neon);
            border: 1px solid rgba(6, 182, 212, 0.3);
        }
        .data-pill-gold {
            background: rgba(245, 158, 11, 0.12);
            color: var(--gold-accent);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        .data-pill-purple {
            background: rgba(139, 92, 246, 0.15);
            color: #c084fc;
            border: 1px solid rgba(139, 92, 246, 0.35);
        }
        /* 板块通用修饰 */
        .section-spacing {
            padding: 4.5rem 0;
            position: relative;
        }
        .section-title-tag {
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #f472b6;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.85rem;
            color: #ffffff;
        }
        .section-desc {
            color: var(--text-muted);
            font-size: 0.98rem;
            line-height: 1.7;
        }

        /* 分类页定制样式 */
        .category-banner {
            padding: 3rem 0 2.5rem;
            background: radial-gradient(circle at 90% 10%, rgba(236, 72, 153, 0.14) 0%, transparent 60%),
                        radial-gradient(circle at 10% 90%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
                        linear-gradient(180deg, #10141e 0%, var(--bg-main) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb-item a {
            color: var(--text-dim);
        }
        .breadcrumb-item a:hover {
            color: #fff;
        }
        .breadcrumb-item.active {
            color: #f472b6;
        }
        .filter-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 1.5rem;
        }
        .filter-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .filter-row:last-child {
            margin-bottom: 0;
        }
        .filter-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dim);
            min-width: 70px;
        }
        .filter-chip {
            font-size: 0.82rem;
            padding: 0.25rem 0.75rem;
            border-radius: 2rem;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            border: 1px solid transparent;
            transition: all 0.2s ease;
        }
        .filter-chip:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }
        .filter-chip.active {
            background: var(--brand-gradient);
            color: #fff;
            font-weight: 600;
            border-color: transparent;
        }

        /* 电影卡片与海报 */
        .movie-card {
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-card-hover);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7), var(--shadow-glow);
        }
        .movie-poster-wrap {
            position: relative;
            aspect-ratio: 2/3;
            overflow: hidden;
            background: #171b26;
        }
        .movie-poster-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .movie-card:hover .movie-poster-wrap img {
            transform: scale(1.05);
        }
        .movie-badge-float {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
        }
        .movie-score-float {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 2;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(6px);
            color: var(--gold-accent);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 0.2rem 0.5rem;
            border-radius: 0.4rem;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        .movie-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 0.8rem 0.8rem;
            background: linear-gradient(180deg, transparent 0%, rgba(11, 13, 19, 0.95) 100%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--text-dim);
        }
        .movie-info {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: space-between;
        }
        .movie-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.35rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .movie-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* 焦点横卡 16:9 */
        .spotlight-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .spotlight-card:hover {
            border-color: var(--border-card-hover);
            transform: translateY(-4px);
        }
        .spotlight-thumb {
            aspect-ratio: 16/9;
            width: 100%;
            object-fit: cover;
        }

        /* 榜单列表 */
        .rank-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.9rem 1.2rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            margin-bottom: 0.75rem;
            transition: all 0.25s ease;
        }
        .rank-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateX(4px);
        }
        .rank-num {
            font-size: 1.25rem;
            font-weight: 800;
            width: 32px;
            color: var(--text-dim);
            font-style: italic;
        }
        .rank-num.top-1 { color: #f43f5e; font-size: 1.45rem; }
        .rank-num.top-2 { color: #f97316; }
        .rank-num.top-3 { color: var(--gold-accent); }

        /* 影评资讯卡片 */
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            height: 100%;
            transition: all 0.3s ease;
        }
        .review-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-card-hover);
            transform: translateY(-4px);
        }

        /* FAQ 手风琴 */
        .accordion-stream .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md) !important;
            margin-bottom: 0.85rem;
            overflow: hidden;
        }
        .accordion-stream .accordion-button {
            background: transparent;
            color: #fff;
            font-weight: 600;
            box-shadow: none;
            padding: 1.25rem 1.5rem;
        }
        .accordion-stream .accordion-button:not(.collapsed) {
            background: rgba(255, 255, 255, 0.03);
            color: #f472b6;
        }
        .accordion-stream .accordion-button::after {
            filter: invert(1);
        }
        .accordion-stream .accordion-body {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            padding: 1rem 1.5rem 1.5rem;
        }

        /* 页脚 */
        .footer-custom {
            background: #07080c;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 4.5rem 0 2rem;
        }
        .footer-brand {
            font-size: 1.35rem;
            font-weight: 800;
            color: #fff;
        }
        .text-pink { color: #ec4899; }
        .footer-links li { margin-bottom: 0.65rem; }
        .footer-links a { color: var(--text-muted); }
        .footer-links a:hover { color: #fff; }
        .border-white-10 { border-color: rgba(255, 255, 255, 0.08) !important; }

        @media (max-width: 991px) {
            .timeline-chips-wrap {
                padding-left: 0;
                border-left: none;
                margin-top: 0.75rem;
                flex-wrap: wrap;
            }
        }
        @media (max-width: 576px) {
            .section-title { font-size: 1.6rem; }
            .category-banner { padding: 2rem 0; }
        }

/* roulang page: category2 */
:root {
      --brand-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
      --brand-gradient-hover: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #ea580c 100%);
      --bg-main: #0B0D13;
      --bg-card: rgba(255, 255, 255, 0.035);
      --bg-card-hover: rgba(255, 255, 255, 0.065);
      --bg-elevated: #151922;
      --border-card: rgba(255, 255, 255, 0.08);
      --border-card-hover: rgba(236, 72, 153, 0.4);
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --text-dim: #64748B;
      --cyan-neon: #06B6D4;
      --gold-accent: #F59E0B;
      --radius-lg: 1.5rem;
      --radius-md: 1.125rem;
      --radius-sm: 0.75rem;
      --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
      --shadow-glow: 0 0 30px rgba(236, 72, 153, 0.15);
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s ease;
    }
    .text-pink { color: #EC4899 !important; }
    .border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }
    
    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1050;
      background: rgba(11, 13, 19, 0.82);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .navbar-brand-logo {
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .nav-link {
      color: var(--text-muted) !important;
      font-size: 0.95rem;
      font-weight: 500;
      padding: 0.5rem 0.85rem !important;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }
    .nav-link:hover, .nav-link.active {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.06);
    }

    /* 时间线活动 Chip 组合 */
    .timeline-chips-wrap {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      padding-left: 0.75rem;
      border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    .timeline-chip {
      font-size: 0.75rem;
      padding: 0.25rem 0.65rem;
      border-radius: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      white-space: nowrap;
      text-decoration: none;
      font-weight: 500;
    }
    .chip-preview {
      background: rgba(6, 182, 212, 0.1);
      border: 1px solid rgba(6, 182, 212, 0.4);
      color: #67e8f9;
    }
    .chip-live {
      background: rgba(236, 72, 153, 0.12);
      border: 1px solid rgba(236, 72, 153, 0.5);
      color: #f472b6;
    }
    .chip-playback {
      background: rgba(148, 163, 184, 0.08);
      border: 1px solid rgba(148, 163, 184, 0.25);
      color: #cbd5e1;
    }
    .dot-amber {
      width: 6px;
      height: 6px;
      background-color: var(--gold-accent);
      border-radius: 50%;
      display: inline-block;
    }
    .dot-live {
      width: 6px;
      height: 6px;
      background-color: #ef4444;
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 8px #ef4444;
      animation: livePulse 1.8s infinite;
    }
    @keyframes livePulse {
      0% { transform: scale(0.9); opacity: 0.8; }
      50% { transform: scale(1.3); opacity: 1; }
      100% { transform: scale(0.9); opacity: 0.8; }
    }

    /* 按钮与通用组件 */
    .btn-brand-gradient {
      background: var(--brand-gradient);
      color: #fff !important;
      font-weight: 600;
      border: none;
      padding: 0.75rem 1.6rem;
      border-radius: var(--radius-sm);
      box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-brand-gradient:hover {
      opacity: 0.95;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(236, 72, 153, 0.4);
    }
    .btn-brand-outline {
      background: rgba(255, 255, 255, 0.05);
      color: #fff !important;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 0.75rem 1.6rem;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-brand-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
    }

    /* 圆角大卡片系统 */
    .stream-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }
    .stream-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-card-hover);
      transform: translateY(-6px);
      box-shadow: var(--shadow-card), var(--shadow-glow);
    }

    /* 数据徽章 */
    .data-pill {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.3rem 0.75rem;
      border-radius: 50rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      backdrop-filter: blur(8px);
    }
    .data-pill-cyan {
      background: rgba(6, 182, 212, 0.12);
      color: var(--cyan-neon);
      border: 1px solid rgba(6, 182, 212, 0.3);
    }
    .data-pill-gold {
      background: rgba(245, 158, 11, 0.12);
      color: var(--gold-accent);
      border: 1px solid rgba(245, 158, 11, 0.3);
    }
    .data-pill-purple {
      background: rgba(139, 92, 246, 0.15);
      color: #c084fc;
      border: 1px solid rgba(139, 92, 246, 0.35);
    }

    /* 板块通用修饰 */
    .section-spacing {
      padding: 4.5rem 0;
      position: relative;
    }
    .section-title-tag {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #f472b6;
      font-weight: 700;
      margin-bottom: 0.4rem;
      display: block;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
      color: #ffffff;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 0.98rem;
      line-height: 1.7;
    }

    /* 分类紧凑型引导 Banner (板块 1) */
    .cat-compact-banner {
      position: relative;
      padding: 3.2rem 0;
      background: radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 60%),
                  radial-gradient(circle at 15% 70%, rgba(139, 92, 246, 0.16) 0%, transparent 65%),
                  #0E111A;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .cat-breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: var(--text-dim);
      margin-bottom: 1rem;
    }
    .cat-breadcrumb a { color: var(--text-muted); }
    .cat-breadcrumb a:hover { color: #fff; }
    .cat-h1 {
      font-size: 2.35rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      background: linear-gradient(135deg, #FFFFFF 20%, #CBD5E1 60%, #94A3B8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.8rem;
    }

    /* 多维矩阵筛选栏 (板块 2) */
    .filter-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.55rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 68px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-dim);
      padding-top: 0.35rem;
      flex-shrink: 0;
    }
    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      flex-grow: 1;
    }
    .filter-chip-item {
      font-size: 0.82rem;
      padding: 0.3rem 0.85rem;
      border-radius: 2rem;
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-muted);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-chip-item:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-chip-item.active {
      background: var(--brand-gradient);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
    }

    /* 剧集海报卡片与网格 (板块 3) */
    .series-poster-box {
      position: relative;
      aspect-ratio: 2/3;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: #141722;
    }
    .series-poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }
    .stream-card:hover .series-poster-box img {
      transform: scale(1.06);
    }
    .poster-overlay-top {
      position: absolute;
      top: 0.6rem;
      left: 0.6rem;
      right: 0.6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 2;
    }
    .poster-overlay-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2.2rem 0.75rem 0.6rem;
      background: linear-gradient(to top, rgba(11, 13, 19, 0.95) 0%, transparent 100%);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      z-index: 2;
    }
    .card-meta-text {
      font-size: 0.78rem;
      color: #cbd5e1;
    }

    /* 宽屏焦点大卡 (板块 4) */
    .spotlight-card {
      border-radius: var(--radius-lg);
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      overflow: hidden;
      position: relative;
      transition: all 0.35s ease;
    }
    .spotlight-card:hover {
      border-color: var(--border-card-hover);
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }
    .spotlight-cover-wrap {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      border-radius: var(--radius-md);
    }
    .spotlight-cover-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .spotlight-card:hover .spotlight-cover-wrap img {
      transform: scale(1.05);
    }

    /* 排行榜单样式 (板块 5) */
    .rank-row-item {
      display: flex;
      align-items: center;
      padding: 0.9rem 1.1rem;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      margin-bottom: 0.75rem;
      transition: all 0.25s ease;
    }
    .rank-row-item:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(236, 72, 153, 0.3);
      transform: translateX(4px);
    }
    .rank-num {
      font-size: 1.15rem;
      font-weight: 800;
      width: 32px;
      flex-shrink: 0;
      color: var(--text-dim);
    }
    .rank-top-1 { color: #f59e0b; }
    .rank-top-2 { color: #ec4899; }
    .rank-top-3 { color: #06b6d4; }

    /* FAQ 手风琴 (板块 7) */
    .faq-accordion .accordion-item {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-md) !important;
      margin-bottom: 0.85rem;
      overflow: hidden;
    }
    .faq-accordion .accordion-button {
      background: transparent;
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      padding: 1.15rem 1.4rem;
      box-shadow: none;
    }
    .faq-accordion .accordion-button:not(.collapsed) {
      background: rgba(255, 255, 255, 0.03);
      color: #f472b6;
    }
    .faq-accordion .accordion-button::after {
      filter: invert(1);
    }
    .faq-accordion .accordion-body {
      color: var(--text-muted);
      font-size: 0.92rem;
      padding: 1.2rem 1.4rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* 预约转化横幅 (板块 8) */
    .cat-cta-box {
      background: radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.2) 0%, transparent 60%),
                  radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.25) 0%, transparent 65%),
                  #131722;
      border: 1px solid rgba(236, 72, 153, 0.35);
      border-radius: var(--radius-lg);
      padding: 3rem 2rem;
      box-shadow: var(--shadow-glow);
    }

    /* 页脚组件 */
    .footer-custom {
      background: #07080D;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 4.5rem 0 2rem;
    }
    .footer-brand {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-links li {
      margin-bottom: 0.65rem;
    }
    .footer-links a {
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: #fff;
      padding-left: 3px;
    }

    @media (max-width: 991.98px) {
      .timeline-chips-wrap {
        border-left: none;
        padding-left: 0;
        margin-top: 0.8rem;
        flex-wrap: wrap;
      }
    }

/* roulang page: category4 */
:root {
      --brand-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
      --brand-gradient-hover: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #ea580c 100%);
      --bg-main: #0B0D13;
      --bg-card: rgba(255, 255, 255, 0.035);
      --bg-card-hover: rgba(255, 255, 255, 0.065);
      --bg-elevated: #151922;
      --border-card: rgba(255, 255, 255, 0.08);
      --border-card-hover: rgba(236, 72, 153, 0.4);
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --text-dim: #64748B;
      --cyan-neon: #06B6D4;
      --gold-accent: #F59E0B;
      --radius-lg: 1.5rem;
      --radius-md: 1.125rem;
      --radius-sm: 0.75rem;
      --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
      --shadow-glow: 0 0 30px rgba(236, 72, 153, 0.15);
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s ease;
    }
    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1050;
      background: rgba(11, 13, 19, 0.85);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .navbar-brand-logo {
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .nav-link {
      color: var(--text-muted) !important;
      font-size: 0.95rem;
      font-weight: 500;
      padding: 0.5rem 0.85rem !important;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }
    .nav-link:hover, .nav-link.active {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.06);
    }
    /* 时间线活动 Chip 组合 */
    .timeline-chips-wrap {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      padding-left: 0.75rem;
      border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    .timeline-chip {
      font-size: 0.75rem;
      padding: 0.25rem 0.65rem;
      border-radius: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      white-space: nowrap;
      text-decoration: none;
      font-weight: 500;
    }
    .chip-preview {
      background: rgba(6, 182, 212, 0.1);
      border: 1px solid rgba(6, 182, 212, 0.4);
      color: #67e8f9;
    }
    .chip-live {
      background: rgba(236, 72, 153, 0.12);
      border: 1px solid rgba(236, 72, 153, 0.5);
      color: #f472b6;
    }
    .chip-playback {
      background: rgba(148, 163, 184, 0.08);
      border: 1px solid rgba(148, 163, 184, 0.25);
      color: #cbd5e1;
    }
    .dot-amber {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #f59e0b;
    }
    .dot-live {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 8px #10b981;
      animation: pulse-live 1.8s infinite;
    }
    @keyframes pulse-live {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.85); }
    }
    /* 按钮与通用组件 */
    .btn-brand-gradient {
      background: var(--brand-gradient);
      color: #fff !important;
      font-weight: 600;
      border: none;
      padding: 0.75rem 1.6rem;
      border-radius: var(--radius-sm);
      box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-brand-gradient:hover {
      opacity: 0.95;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(236, 72, 153, 0.4);
    }
    .btn-brand-outline {
      background: rgba(255, 255, 255, 0.05);
      color: #fff !important;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 0.75rem 1.6rem;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-brand-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
    }
    /* 圆角大卡片系统 */
    .stream-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }
    .stream-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-card-hover);
      transform: translateY(-6px);
      box-shadow: var(--shadow-card), var(--shadow-glow);
    }
    /* 数据徽章 */
    .data-pill {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.3rem 0.75rem;
      border-radius: 50rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      backdrop-filter: blur(8px);
    }
    .data-pill-cyan {
      background: rgba(6, 182, 212, 0.12);
      color: var(--cyan-neon);
      border: 1px solid rgba(6, 182, 212, 0.3);
    }
    .data-pill-gold {
      background: rgba(245, 158, 11, 0.12);
      color: var(--gold-accent);
      border: 1px solid rgba(245, 158, 11, 0.3);
    }
    .data-pill-purple {
      background: rgba(139, 92, 246, 0.15);
      color: #c084fc;
      border: 1px solid rgba(139, 92, 246, 0.35);
    }
    .section-spacing {
      padding: 4.5rem 0;
      position: relative;
    }
    .section-title-tag {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #f472b6;
      font-weight: 700;
      margin-bottom: 0.5rem;
      display: block;
    }
    .section-title {
      font-size: 2.15rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.85rem;
      color: #ffffff;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
    }

    /* 分类紧凑型引导 Banner 特有样式 */
    .category-banner-wrap {
      position: relative;
      padding: 3.5rem 0 2.5rem;
      background: linear-gradient(180deg, rgba(139, 92, 246, 0.12) 0%, rgba(11, 13, 19, 0.95) 100%),
                  url('/assets/images/bea773baf9ab6893.jpg') center/cover no-repeat;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .breadcrumb-nav a {
      color: var(--text-muted);
      font-size: 0.88rem;
    }
    .breadcrumb-nav a:hover {
      color: #fff;
    }
    .breadcrumb-separator {
      color: var(--text-dim);
      margin: 0 0.5rem;
      font-size: 0.8rem;
    }
    .category-banner-h1 {
      font-size: 2.6rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.85rem;
    }

    /* 多维筛选栏样式 */
    .filter-panel {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      backdrop-filter: blur(12px);
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.65rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      min-width: 70px;
      font-size: 0.85rem;
      color: var(--text-dim);
      padding-top: 0.3rem;
      font-weight: 600;
    }
    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .filter-chip {
      font-size: 0.82rem;
      color: var(--text-muted);
      padding: 0.25rem 0.85rem;
      border-radius: 2rem;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
      user-select: none;
    }
    .filter-chip:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-chip.active {
      color: #fff;
      background: rgba(236, 72, 153, 0.2);
      border-color: rgba(236, 72, 153, 0.5);
      font-weight: 600;
    }

    /* 海报卡片 */
    .anime-poster-box {
      position: relative;
      aspect-ratio: 2 / 3;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: #181d28;
    }
    .anime-poster-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .stream-card:hover .anime-poster-img {
      transform: scale(1.06);
    }
    .poster-badge-top {
      position: absolute;
      top: 0.75rem;
      left: 0.75rem;
      z-index: 2;
    }
    .poster-score-top {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      z-index: 2;
      background: rgba(0, 0, 0, 0.65);
      color: var(--gold-accent);
      font-weight: 700;
      font-size: 0.82rem;
      padding: 0.2rem 0.55rem;
      border-radius: 0.4rem;
      border: 1px solid rgba(245, 158, 11, 0.4);
      backdrop-filter: blur(4px);
    }
    .poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(11, 13, 19, 0.95) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .stream-card:hover .poster-overlay {
      opacity: 1;
    }
    .poster-play-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      box-shadow: 0 0 25px rgba(236, 72, 153, 0.6);
      transform: scale(0.85);
      transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .stream-card:hover .poster-play-icon {
      transform: scale(1);
    }

    /* 宽屏 16:9 焦点大卡 */
    .spotlight-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 0.35s ease;
    }
    .spotlight-card:hover {
      border-color: var(--border-card-hover);
      transform: translateY(-4px);
      box-shadow: var(--shadow-card), var(--shadow-glow);
    }
    .spotlight-ratio {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }
    .spotlight-ratio img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .spotlight-card:hover .spotlight-ratio img {
      transform: scale(1.05);
    }

    /* 实时榜单趋势条目 */
    .ranking-item {
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-md);
      padding: 1rem 1.25rem;
      transition: all 0.25s ease;
      display: flex;
      align-items: center;
      gap: 1.2rem;
    }
    .ranking-item:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(236, 72, 153, 0.3);
      transform: translateX(6px);
    }
    .rank-num {
      font-size: 1.4rem;
      font-weight: 800;
      min-width: 32px;
      text-align: center;
      color: var(--text-dim);
    }
    .rank-num-top {
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 1.6rem;
    }

    /* FAQ 手风琴重构 */
    .accordion-anime .accordion-item {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-md) !important;
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .accordion-anime .accordion-button {
      background: transparent;
      color: var(--text-main);
      font-weight: 600;
      box-shadow: none;
      padding: 1.2rem 1.5rem;
      font-size: 1.05rem;
    }
    .accordion-anime .accordion-button:not(.collapsed) {
      color: #f472b6;
      background: rgba(255, 255, 255, 0.03);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .accordion-anime .accordion-body {
      color: var(--text-muted);
      line-height: 1.8;
      padding: 1.4rem 1.5rem;
      font-size: 0.95rem;
    }
    .accordion-anime .accordion-button::after {
      filter: invert(1);
    }

    /* 预约转化横幅 */
    .action-banner-wrap {
      background: radial-gradient(circle at 10% 50%, rgba(236, 72, 153, 0.18) 0%, transparent 60%),
                  radial-gradient(circle at 90% 50%, rgba(139, 92, 246, 0.22) 0%, transparent 60%),
                  #131722;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: 3.5rem 2.5rem;
      position: relative;
      overflow: hidden;
    }

    /* 页脚 */
    .footer-custom {
      background: #08090d;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 4.5rem 0 2rem;
    }
    .footer-brand {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-links li {
      margin-bottom: 0.6rem;
    }
    .footer-links a {
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: #fff;
      padding-left: 4px;
    }
    .text-pink {
      color: #ec4899;
    }
    .border-white-10 {
      border-color: rgba(255, 255, 255, 0.08) !important;
    }

    @media (max-width: 991px) {
      .timeline-chips-wrap {
        border-left: none;
        padding-left: 0;
        margin-top: 1rem;
        flex-wrap: wrap;
      }
      .category-banner-h1 {
        font-size: 2.1rem;
      }
    }

/* roulang page: category3 */
:root {
        --brand-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
        --brand-gradient-hover: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #ea580c 100%);
        --bg-main: #0B0D13;
        --bg-card: rgba(255, 255, 255, 0.035);
        --bg-card-hover: rgba(255, 255, 255, 0.065);
        --bg-elevated: #151922;
        --border-card: rgba(255, 255, 255, 0.08);
        --border-card-hover: rgba(236, 72, 153, 0.4);
        --text-main: #F8FAFC;
        --text-muted: #94A3B8;
        --text-dim: #64748B;
        --cyan-neon: #06B6D4;
        --gold-accent: #F59E0B;
        --radius-lg: 1.5rem;
        --radius-md: 1.125rem;
        --radius-sm: 0.75rem;
        --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
        --shadow-glow: 0 0 30px rgba(236, 72, 153, 0.15);
    }
    body {
        background-color: var(--bg-main);
        color: var(--text-main);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        line-height: 1.65;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.25s ease;
    }

    /* 顶部导航 */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1050;
        background: rgba(11, 13, 19, 0.86);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .navbar-brand-logo {
        font-size: 1.45rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .nav-link {
        color: var(--text-muted) !important;
        font-size: 0.95rem;
        font-weight: 500;
        padding: 0.5rem 0.85rem !important;
        border-radius: var(--radius-sm);
        transition: all 0.2s ease;
    }
    .nav-link:hover, .nav-link.active {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.06);
    }

    /* 时间线活动 Chip 组合 */
    .timeline-chips-wrap {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        padding-left: 0.75rem;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    .timeline-chip {
        font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
        border-radius: 2rem;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        white-space: nowrap;
        text-decoration: none;
        font-weight: 500;
    }
    .chip-preview {
        background: rgba(6, 182, 212, 0.1);
        border: 1px solid rgba(6, 182, 212, 0.4);
        color: #67e8f9;
    }
    .chip-live {
        background: rgba(236, 72, 153, 0.12);
        border: 1px solid rgba(236, 72, 153, 0.5);
        color: #f472b6;
    }
    .chip-playback {
        background: rgba(148, 163, 184, 0.08);
        border: 1px solid rgba(148, 163, 184, 0.25);
        color: #cbd5e1;
    }
    .dot-amber {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--gold-accent);
    }
    .dot-live {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #ef4444;
        box-shadow: 0 0 8px #ef4444;
        animation: pulse-live 1.6s infinite;
    }
    @keyframes pulse-live {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.4; transform: scale(0.85); }
    }

    /* 按钮与通用组件 */
    .btn-brand-gradient {
        background: var(--brand-gradient);
        color: #fff !important;
        font-weight: 600;
        border: none;
        padding: 0.75rem 1.6rem;
        border-radius: var(--radius-sm);
        box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .btn-brand-gradient:hover {
        opacity: 0.95;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(236, 72, 153, 0.4);
    }
    .btn-brand-outline {
        background: rgba(255, 255, 255, 0.05);
        color: #fff !important;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0.75rem 1.6rem;
        border-radius: var(--radius-sm);
        transition: all 0.25s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .btn-brand-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    /* 紧凑型分类横幅 (Category Compact Hero) */
    .category-banner {
        position: relative;
        padding: 3.5rem 0 2.5rem;
        background: linear-gradient(180deg, rgba(139, 92, 246, 0.12) 0%, rgba(11, 13, 19, 0.8) 100%),
                    url('/assets/images/9544c31ffcd9b3fe.jpg') center/cover no-repeat;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .category-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(11, 13, 19, 0.85);
        backdrop-filter: blur(8px);
    }
    .category-banner-content {
        position: relative;
        z-index: 2;
    }
    .category-h1 {
        font-size: 2.35rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #ffffff;
        margin-bottom: 0.75rem;
    }
    .category-h1 span {
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .breadcrumb-nav a {
        color: var(--text-muted);
        font-size: 0.85rem;
    }
    .breadcrumb-nav a:hover {
        color: #fff;
    }
    .breadcrumb-nav .active {
        color: #f472b6;
        font-size: 0.85rem;
    }

    /* 多维筛选区 (Filter Matrix) */
    .filter-matrix-box {
        background: var(--bg-elevated);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-md);
        padding: 1.25rem 1.5rem;
        margin-top: -2rem;
        position: relative;
        z-index: 10;
        box-shadow: var(--shadow-card);
    }
    .filter-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .filter-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-dim);
        min-width: 4.5rem;
    }
    .filter-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
    }
    .filter-chip {
        font-size: 0.82rem;
        color: var(--text-muted);
        padding: 0.25rem 0.75rem;
        border-radius: 2rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid transparent;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .filter-chip:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }
    .filter-chip.active {
        background: var(--brand-gradient);
        color: #ffffff;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
    }

    /* 圆角大卡片与海报矩阵 */
    .stream-card {
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-card);
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .stream-card:hover {
        background: var(--bg-card-hover);
        border-color: var(--border-card-hover);
        transform: translateY(-6px);
        box-shadow: var(--shadow-card), var(--shadow-glow);
    }
    .poster-wrap {
        position: relative;
        width: 100%;
        padding-top: 135%; /* 3:4 比例更利于展示综艺海报 */
        overflow: hidden;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background-color: #121620;
    }
    .poster-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .stream-card:hover .poster-wrap img {
        transform: scale(1.06);
    }
    .poster-badges {
        position: absolute;
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 2;
    }
    .badge-rating {
        background: rgba(15, 23, 42, 0.75);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(245, 158, 11, 0.4);
        color: var(--gold-accent);
        font-weight: 700;
        font-size: 0.78rem;
        padding: 0.2rem 0.55rem;
        border-radius: 2rem;
    }
    .badge-resolution {
        background: rgba(139, 92, 246, 0.2);
        border: 1px solid rgba(139, 92, 246, 0.5);
        color: #d8b4fe;
        font-weight: 600;
        font-size: 0.72rem;
        padding: 0.2rem 0.5rem;
        border-radius: 2rem;
    }
    .poster-overlay-play {
        position: absolute;
        inset: 0;
        background: rgba(11, 13, 19, 0.45);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 3;
    }
    .play-btn-circle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--brand-gradient);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
        transform: scale(0.85);
        transition: transform 0.25s ease;
    }
    .stream-card:hover .poster-overlay-play {
        opacity: 1;
    }
    .stream-card:hover .play-btn-circle {
        transform: scale(1);
    }
    .card-body-content {
        padding: 1.15rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .variety-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.35rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .variety-meta {
        font-size: 0.8rem;
        color: var(--text-dim);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.65rem;
    }
    .variety-tags {
        display: flex;
        gap: 0.35rem;
        flex-wrap: wrap;
        margin-top: auto;
    }
    .mini-tag {
        font-size: 0.72rem;
        color: var(--text-muted);
        background: rgba(255, 255, 255, 0.05);
        padding: 0.15rem 0.45rem;
        border-radius: 0.35rem;
    }

    /* 宽屏焦点推荐大卡 (16:9) */
    .focus-card {
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition: all 0.35s ease;
        position: relative;
    }
    .focus-card:hover {
        background: var(--bg-card-hover);
        border-color: var(--border-card-hover);
        transform: translateY(-4px);
    }
    .focus-media-wrap {
        position: relative;
        padding-top: 56.25%; /* 16:9 */
        overflow: hidden;
    }
    .focus-media-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .focus-content {
        padding: 1.5rem;
    }
    .focus-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
        border-radius: 2rem;
        background: rgba(236, 72, 153, 0.15);
        color: #f472b6;
        border: 1px solid rgba(236, 72, 153, 0.35);
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        margin-bottom: 0.65rem;
    }

    /* 排行榜单样式 */
    .rank-board-card {
        background: var(--bg-elevated);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-lg);
        padding: 1.75rem;
    }
    .rank-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transition: background-color 0.2s ease;
    }
    .rank-item:last-child {
        border-bottom: none;
    }
    .rank-item:hover {
        background: rgba(255, 255, 255, 0.02);
    }
    .rank-number {
        font-size: 1.25rem;
        font-weight: 800;
        width: 28px;
        text-align: center;
        color: var(--text-dim);
    }
    .rank-number.top-1 { color: #f59e0b; }
    .rank-number.top-2 { color: #cbd5e1; }
    .rank-number.top-3 { color: #b45309; }
    .rank-info {
        flex: 1;
        min-width: 0;
    }
    .rank-title {
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.15rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .rank-sub {
        font-size: 0.78rem;
        color: var(--text-dim);
    }
    .rank-heat {
        font-size: 0.82rem;
        color: #f472b6;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    /* 深度影评鉴赏卡片 */
    .review-card {
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-md);
        padding: 1.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.3s ease;
    }
    .review-card:hover {
        border-color: rgba(236, 72, 153, 0.3);
        transform: translateY(-4px);
    }
    .review-author {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        margin-top: 1.25rem;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .review-avatar {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--brand-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.85rem;
        color: #fff;
    }

    /* FAQ 手风琴 */
    .faq-accordion .accordion-item {
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-md) !important;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    .faq-accordion .accordion-button {
        background: var(--bg-card);
        color: #fff;
        font-weight: 600;
        box-shadow: none;
        padding: 1.25rem 1.5rem;
    }
    .faq-accordion .accordion-button:not(.collapsed) {
        background: rgba(255, 255, 255, 0.04);
        color: #f472b6;
    }
    .faq-accordion .accordion-button::after {
        filter: invert(1);
    }
    .faq-accordion .accordion-body {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 1rem 1.5rem 1.5rem;
        background: rgba(0, 0, 0, 0.15);
    }

    /* 预约转化区 (CTA Strip) */
    .reserve-banner {
        background: radial-gradient(circle at 10% 50%, rgba(236, 72, 153, 0.18) 0%, transparent 60%),
                    radial-gradient(circle at 90% 50%, rgba(139, 92, 246, 0.18) 0%, transparent 60%),
                    var(--bg-elevated);
        border: 1px solid rgba(236, 72, 153, 0.25);
        border-radius: var(--radius-lg);
        padding: 3rem 2.5rem;
        position: relative;
        overflow: hidden;
    }

    /* 页脚 */
    .footer-custom {
        background: #07080c;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 4.5rem 0 2.5rem;
        position: relative;
        z-index: 10;
    }
    .footer-brand {
        font-size: 1.35rem;
        font-weight: 800;
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .footer-links li {
        margin-bottom: 0.65rem;
    }
    .footer-links a {
        color: var(--text-muted);
        transition: color 0.2s ease;
    }
    .footer-links a:hover {
        color: #fff;
    }
    .border-white-10 {
        border-color: rgba(255, 255, 255, 0.08) !important;
    }

    @media (max-width: 991.98px) {
        .timeline-chips-wrap {
            border-left: none;
            padding-left: 0;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        .filter-matrix-box {
            margin-top: -1rem;
        }
        .category-h1 {
            font-size: 1.85rem;
        }
    }

/* roulang page: category5 */
:root {
        --brand-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
        --brand-gradient-hover: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #ea580c 100%);
        --bg-main: #0B0D13;
        --bg-card: rgba(255, 255, 255, 0.035);
        --bg-card-hover: rgba(255, 255, 255, 0.065);
        --bg-elevated: #151922;
        --border-card: rgba(255, 255, 255, 0.08);
        --border-card-hover: rgba(236, 72, 153, 0.4);
        --text-main: #F8FAFC;
        --text-muted: #94A3B8;
        --text-dim: #64748B;
        --cyan-neon: #06B6D4;
        --gold-accent: #F59E0B;
        --radius-lg: 1.5rem;
        --radius-md: 1.125rem;
        --radius-sm: 0.75rem;
        --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
        --shadow-glow: 0 0 30px rgba(236, 72, 153, 0.15);
    }
    body {
        background-color: var(--bg-main);
        color: var(--text-main);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        line-height: 1.65;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.25s ease;
    }
    /* 顶部导航 */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1050;
        background: rgba(11, 13, 19, 0.82);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .navbar-brand-logo {
        font-size: 1.45rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .nav-link {
        color: var(--text-muted) !important;
        font-size: 0.95rem;
        font-weight: 500;
        padding: 0.5rem 0.85rem !important;
        border-radius: var(--radius-sm);
        transition: all 0.2s ease;
    }
    .nav-link:hover, .nav-link.active {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.06);
    }
    /* 时间线活动 Chip 组合 */
    .timeline-chips-wrap {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        padding-left: 0.75rem;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    .timeline-chip {
        font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
        border-radius: 2rem;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        white-space: nowrap;
        text-decoration: none;
        font-weight: 500;
    }
    .chip-preview {
        background: rgba(6, 182, 212, 0.1);
        border: 1px solid rgba(6, 182, 212, 0.4);
        color: #67e8f9;
    }
    .chip-live {
        background: rgba(236, 72, 153, 0.12);
        border: 1px solid rgba(236, 72, 153, 0.5);
        color: #f472b6;
    }
    .chip-playback {
        background: rgba(148, 163, 184, 0.08);
        border: 1px solid rgba(148, 163, 184, 0.25);
        color: #cbd5e1;
    }
    .dot-amber {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--gold-accent);
        display: inline-block;
    }
    .dot-live {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #f43f5e;
        display: inline-block;
        box-shadow: 0 0 8px #f43f5e;
        animation: pulseLive 1.5s infinite;
    }
    @keyframes pulseLive {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7); }
        70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(244, 63, 94, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
    }
    /* 按钮与通用组件 */
    .btn-brand-gradient {
        background: var(--brand-gradient);
        color: #fff !important;
        font-weight: 600;
        border: none;
        padding: 0.75rem 1.6rem;
        border-radius: var(--radius-sm);
        box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .btn-brand-gradient:hover {
        opacity: 0.95;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(236, 72, 153, 0.4);
    }
    .btn-brand-outline {
        background: rgba(255, 255, 255, 0.05);
        color: #fff !important;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0.75rem 1.6rem;
        border-radius: var(--radius-sm);
        transition: all 0.25s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .btn-brand-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    /* 圆角大卡片系统 */
    .stream-card {
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-card);
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
    }
    .stream-card:hover {
        background: var(--bg-card-hover);
        border-color: var(--border-card-hover);
        transform: translateY(-6px);
        box-shadow: var(--shadow-card), var(--shadow-glow);
    }
    /* 数据徽章 */
    .data-pill {
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.3rem 0.75rem;
        border-radius: 50rem;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        backdrop-filter: blur(8px);
    }
    .data-pill-cyan {
        background: rgba(6, 182, 212, 0.12);
        color: var(--cyan-neon);
        border: 1px solid rgba(6, 182, 212, 0.3);
    }
    .data-pill-gold {
        background: rgba(245, 158, 11, 0.12);
        color: var(--gold-accent);
        border: 1px solid rgba(245, 158, 11, 0.3);
    }
    .data-pill-purple {
        background: rgba(139, 92, 246, 0.15);
        color: #c084fc;
        border: 1px solid rgba(139, 92, 246, 0.35);
    }
    .data-pill-pink {
        background: rgba(236, 72, 153, 0.15);
        color: #f472b6;
        border: 1px solid rgba(236, 72, 153, 0.35);
    }
    /* 板块通用修饰 */
    .section-spacing {
        padding: 4.5rem 0;
        position: relative;
    }
    .section-title-tag {
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #f472b6;
        font-weight: 700;
        margin-bottom: 0.5rem;
        display: block;
    }
    .section-title {
        font-size: 2.15rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 0.85rem;
        color: #ffffff;
    }
    .section-desc {
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.7;
    }

    /* 分类页定制：紧凑型横幅 + 路线图版本预告 */
    .category-hero {
        position: relative;
        padding: 3.5rem 0 3rem;
        background: radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 15% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
                    linear-gradient(180deg, rgba(11, 13, 19, 0.6) 0%, #0B0D13 100%),
                    url('/assets/images/043cb1990af7c812.jpg') center/cover no-repeat;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .category-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(11, 13, 19, 0.86);
    }
    .hero-content-relative {
        position: relative;
        z-index: 2;
    }
    .custom-breadcrumb {
        font-size: 0.85rem;
        color: var(--text-dim);
    }
    .custom-breadcrumb a {
        color: var(--text-muted);
    }
    .custom-breadcrumb a:hover {
        color: #fff;
    }
    
    /* 路线图预告与节点条 */
    .roadmap-track {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-md);
        padding: 1.25rem 1.5rem;
        margin-top: 2rem;
    }
    .roadmap-step {
        position: relative;
        padding-left: 1.75rem;
    }
    .roadmap-step::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.35rem;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--cyan-neon);
        box-shadow: 0 0 10px var(--cyan-neon);
    }
    .roadmap-step.active::before {
        background: #ec4899;
        box-shadow: 0 0 12px #ec4899;
    }
    .roadmap-step.upcoming::before {
        background: var(--text-dim);
        box-shadow: none;
    }

    /* 矩阵筛选器 Chip 组 */
    .filter-group-wrap {
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius-md);
        padding: 1.25rem 1.5rem;
    }
    .filter-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        padding: 0.5rem 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
        border-bottom: none;
    }
    .filter-label {
        font-size: 0.85rem;
        color: var(--text-dim);
        font-weight: 600;
        min-width: 70px;
    }
    .filter-item-btn {
        font-size: 0.85rem;
        color: var(--text-muted);
        padding: 0.25rem 0.8rem;
        border-radius: 50rem;
        background: transparent;
        border: 1px solid transparent;
        transition: all 0.2s ease;
    }
    .filter-item-btn:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
    }
    .filter-item-btn.active {
        color: #fff;
        background: rgba(236, 72, 153, 0.2);
        border-color: rgba(236, 72, 153, 0.4);
        font-weight: 600;
    }

    /* 纪录片海报卡片 (2:3比例) */
    .doc-poster-card {
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .doc-poster-card:hover {
        transform: translateY(-6px);
        border-color: var(--border-card-hover);
        box-shadow: var(--shadow-card), var(--shadow-glow);
    }
    .doc-poster-thumb {
        position: relative;
        aspect-ratio: 16/10;
        overflow: hidden;
        background: #11141c;
    }
    .doc-poster-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .doc-poster-card:hover .doc-poster-thumb img {
        transform: scale(1.06);
    }
    .doc-card-body {
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    /* 16:9 横版焦点卡片 */
    .focus-wide-card {
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition: all 0.35s ease;
    }
    .focus-wide-card:hover {
        border-color: rgba(6, 182, 212, 0.4);
        box-shadow: 0 16px 36px rgba(6, 182, 212, 0.15);
        transform: translateY(-4px);
    }
    .focus-thumb-wrap {
        position: relative;
        height: 100%;
        min-height: 240px;
    }
    .focus-thumb-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 榜单排行列表 */
    .rank-list-item {
        display: flex;
        align-items: center;
        padding: 1rem 1.25rem;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 0.75rem;
        transition: all 0.25s ease;
    }
    .rank-list-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
        transform: translateX(4px);
    }
    .rank-index {
        width: 2rem;
        height: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.5rem;
        font-weight: 800;
        font-size: 1.05rem;
        margin-right: 1.25rem;
        background: rgba(255, 255, 255, 0.06);
        color: var(--text-muted);
    }
    .rank-index.top-1 { background: linear-gradient(135deg, #ef4444, #f97316); color: #fff; }
    .rank-index.top-2 { background: linear-gradient(135deg, #f59e0b, #eab308); color: #fff; }
    .rank-index.top-3 { background: linear-gradient(135deg, #06b6d4, #3b82f6); color: #fff; }

    /* 影评导赏资讯卡 */
    .review-guide-card {
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-md);
        padding: 1.5rem;
        height: 100%;
        transition: all 0.3s ease;
    }
    .review-guide-card:hover {
        border-color: var(--border-card-hover);
        transform: translateY(-4px);
        background: var(--bg-card-hover);
    }

    /* FAQ 手风琴深色适配 */
    .custom-accordion .accordion-item {
        background-color: var(--bg-card);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-md) !important;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    .custom-accordion .accordion-button {
        background-color: transparent;
        color: var(--text-main);
        font-weight: 600;
        font-size: 1.05rem;
        padding: 1.25rem 1.5rem;
        box-shadow: none;
    }
    .custom-accordion .accordion-button:not(.collapsed) {
        color: #f472b6;
        background-color: rgba(255, 255, 255, 0.03);
    }
    .custom-accordion .accordion-button::after {
        filter: invert(1);
    }
    .custom-accordion .accordion-body {
        color: var(--text-muted);
        line-height: 1.75;
        padding: 1.25rem 1.5rem 1.5rem;
        background-color: rgba(0, 0, 0, 0.15);
    }

    /* 专属转化横幅 */
    .category-cta-box {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(236, 72, 153, 0.18) 50%, rgba(249, 115, 22, 0.18) 100%);
        border: 1px solid rgba(236, 72, 153, 0.35);
        border-radius: var(--radius-lg);
        padding: 3rem 2.5rem;
        position: relative;
        overflow: hidden;
    }

    /* 页脚 */
    .footer-custom {
        background-color: #07080c;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 4.5rem 0 2rem;
    }
    .footer-brand {
        font-size: 1.35rem;
        font-weight: 800;
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .footer-links li {
        margin-bottom: 0.65rem;
    }
    .footer-links a {
        color: var(--text-muted);
        transition: color 0.2s ease;
    }
    .footer-links a:hover {
        color: #fff;
    }
    .border-white-10 {
        border-color: rgba(255, 255, 255, 0.08) !important;
    }
    .text-pink {
        color: #ec4899;
    }

    /* 移动端适配 */
    @media (max-width: 991.98px) {
        .timeline-chips-wrap {
            border-left: none;
            padding-left: 0;
            padding-top: 0.75rem;
            margin-top: 0.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            flex-wrap: wrap;
        }
        .section-title {
            font-size: 1.75rem;
        }
    }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
