/* roulang page: index */
:root {
            --bg-dark-matrix: #0B0C10;
            --bg-dark-surface: #14161D;
            --bg-dark-card: #1A1D27;
            --border-glow: #1F222E;
            --primary-cine: #FF2E63;
            --primary-cine-hover: #E02656;
            --accent-cyan: #08D9D6;
            --accent-gold: #FFB800;
            --text-high: #F4F5F7;
            --text-muted-custom: #9BA1B0;
            --text-dim: #5B6170;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-pill: 30px;
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6);
            --shadow-neon: 0 0 25px rgba(255, 46, 99, 0.35);
        }

        /* 基础与全局重设 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-dark-matrix);
            color: var(--text-high);
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        a:hover {
            color: var(--primary-cine);
        }

        .container {
            max-width: 1320px;
        }

        /* 导航栏重构 */
        .cine-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(11, 12, 16, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition-smooth);
        }

        .cine-logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--text-high);
        }
        .cine-logo i {
            color: var(--primary-cine);
            font-size: 1.6rem;
            filter: drop-shadow(0 0 8px var(--primary-cine));
        }

        .cine-nav-link {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted-custom);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            position: relative;
        }
        .cine-nav-link:hover, .cine-nav-link.active {
            color: var(--text-high);
        }
        .cine-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary-cine);
            box-shadow: 0 0 8px var(--primary-cine);
            border-radius: 2px;
        }

        .lang-capsule {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-pill);
            padding: 3px 5px;
            font-size: 0.8rem;
        }
        .lang-btn {
            padding: 3px 8px;
            border-radius: var(--radius-pill);
            color: var(--text-muted-custom);
            font-size: 0.75rem;
            border: none;
            background: transparent;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .lang-btn.active {
            background: var(--border-glow);
            color: var(--text-high);
            font-weight: 600;
        }

        /* 统一自定义按钮与徽标 */
        .btn-cine-primary {
            background: var(--primary-cine);
            color: #ffffff;
            border: none;
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(255, 46, 99, 0.4);
            transition: var(--transition-smooth);
        }
        .btn-cine-primary:hover {
            background: var(--primary-cine-hover);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-neon);
        }

        .btn-cine-outline {
            background: transparent;
            color: var(--text-high);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 9px 22px;
            border-radius: var(--radius-pill);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition-smooth);
        }
        .btn-cine-outline:hover {
            border-color: var(--text-high);
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
        }

        .cine-badge {
            background: rgba(255, 46, 99, 0.15);
            border: 1px solid rgba(255, 46, 99, 0.35);
            color: var(--primary-cine);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .cine-badge-gold {
            background: rgba(255, 184, 0, 0.15);
            border: 1px solid rgba(255, 184, 0, 0.4);
            color: var(--accent-gold);
        }
        .cine-badge-cyan {
            background: rgba(8, 217, 214, 0.15);
            border: 1px solid rgba(8, 217, 214, 0.4);
            color: var(--accent-cyan);
        }

        /* 页面板块公共样式 */
        .cine-section {
            padding: 70px 0;
            position: relative;
        }
        .cine-section-header {
            margin-bottom: 36px;
        }
        .cine-section-header h2 {
            font-size: 1.85rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text-high);
            margin-bottom: 10px;
        }
        .cine-section-header p {
            font-size: 0.95rem;
            color: var(--text-muted-custom);
            margin-bottom: 0;
        }

        .cine-card {
            background: var(--bg-dark-surface);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            transition: var(--transition-smooth);
            overflow: hidden;
            height: 100%;
        }
        .cine-card:hover {
            border-color: rgba(255, 46, 99, 0.4);
            transform: translateY(-5px);
            box-shadow: var(--shadow-card);
        }

        /* 1. 首屏促销巨幕 */
        .hero-banner-wrap {
            position: relative;
            background: linear-gradient(180deg, rgba(11, 12, 16, 0.3) 0%, var(--bg-dark-matrix) 100%), url('/assets/images/e101735e88bcbee8.jpg') center/cover no-repeat;
            padding: 100px 0 80px;
            min-height: 560px;
            display: flex;
            align-items: center;
        }
        .hero-badge-ribbon {
            position: absolute;
            top: 24px;
            left: 24px;
            background: linear-gradient(135deg, #FF2E63, #FF5E86);
            color: #fff;
            padding: 6px 16px;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 15px rgba(255, 46, 99, 0.5);
            text-transform: uppercase;
        }
        .hero-title-h1 {
            font-size: 2.75rem;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -1px;
            margin-bottom: 18px;
            background: linear-gradient(90deg, #FFFFFF 0%, #E2E8F0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 1.05rem;
            color: var(--text-muted-custom);
            line-height: 1.7;
            margin-bottom: 28px;
        }
        .hero-preview-box {
            background: rgba(20, 22, 29, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            padding: 24px;
        }

        /* 2. 核心分类直达 */
        .channel-card {
            background: var(--bg-dark-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            display: block;
            transition: var(--transition-smooth);
        }
        .channel-card i {
            font-size: 2rem;
            color: var(--accent-cyan);
            margin-bottom: 10px;
            display: inline-block;
            transition: var(--transition-smooth);
        }
        .channel-card:hover {
            border-color: var(--primary-cine);
            transform: translateY(-4px);
            background: #232736;
        }
        .channel-card:hover i {
            color: var(--primary-cine);
            transform: scale(1.15);
        }
        .channel-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-high);
            margin-bottom: 4px;
        }
        .channel-card span {
            font-size: 0.8rem;
            color: var(--text-dim);
        }

        /* 3. 影视海报卡片 (2:3) */
        .poster-card {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--bg-dark-surface);
            border: 1px solid var(--border-glow);
            transition: var(--transition-smooth);
        }
        .poster-img-wrap {
            position: relative;
            width: 100%;
            padding-top: 145%; /* 接近 2:3 */
            overflow: hidden;
            background: #000;
        }
        .poster-img-wrap img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .poster-card:hover .poster-img-wrap img {
            transform: scale(1.06);
        }
        .poster-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
        }
        .poster-score {
            position: absolute;
            bottom: 10px;
            right: 10px;
            z-index: 2;
            background: rgba(0, 0, 0, 0.7);
            padding: 2px 8px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            color: var(--accent-gold);
            font-weight: 700;
        }
        .poster-info {
            padding: 14px;
        }
        .poster-title {
            font-size: 1rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }
        .poster-sub {
            font-size: 0.8rem;
            color: var(--text-muted-custom);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* 4. 优势数据指标 */
        .metric-card {
            background: linear-gradient(145deg, #14161D, #1B1E28);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            padding: 24px;
            text-align: center;
        }
        .metric-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-cyan);
            margin-bottom: 6px;
            font-family: Arial, sans-serif;
        }
        .metric-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-high);
            margin-bottom: 4px;
        }
        .metric-desc {
            font-size: 0.8rem;
            color: var(--text-muted-custom);
        }

        /* 5. 方案流程 */
        .step-node {
            position: relative;
            background: var(--bg-dark-surface);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            height: 100%;
        }
        .step-index {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 46, 99, 0.15);
            border: 1px solid var(--primary-cine);
            color: var(--primary-cine);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 16px;
        }

        /* 6. 口碑影评卡片 */
        .review-bento {
            background: var(--bg-dark-surface);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }
        .review-quote {
            font-size: 0.92rem;
            color: var(--text-high);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #2D3244;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--accent-cyan);
        }

        /* 7. 主题专区大卡 */
        .theme-cover-card {
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--bg-dark-surface);
            border: 1px solid var(--border-glow);
            height: 100%;
        }
        .theme-img-box {
            position: relative;
            height: 160px;
            overflow: hidden;
        }
        .theme-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }
        .theme-cover-card:hover .theme-img-box img {
            transform: scale(1.05);
        }

        /* 8. 多终端支持 */
        .device-icon-box {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-md);
            background: rgba(8, 217, 214, 0.1);
            color: var(--accent-cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* 9. 资讯卡 */
        .news-item {
            display: flex;
            gap: 16px;
            background: var(--bg-dark-surface);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            padding: 14px;
            margin-bottom: 16px;
            transition: var(--transition-smooth);
        }
        .news-item:hover {
            border-color: rgba(255, 46, 99, 0.35);
            background: #181B24;
        }
        .news-thumb {
            width: 120px;
            height: 75px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
        }

        /* 10. 合作伙伴 */
        .partner-logo-pill {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-sm);
            padding: 16px 20px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-dim);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: var(--transition-smooth);
        }
        .partner-logo-pill:hover {
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--text-high);
        }

        /* 11. FAQ 手风琴样式定制 */
        .cine-accordion .accordion-item {
            background: var(--bg-dark-surface);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md) !important;
            margin-bottom: 14px;
            overflow: hidden;
        }
        .cine-accordion .accordion-button {
            background: var(--bg-dark-surface);
            color: var(--text-high);
            font-weight: 600;
            font-size: 1rem;
            box-shadow: none !important;
            padding: 18px 22px;
        }
        .cine-accordion .accordion-button:not(.collapsed) {
            color: var(--primary-cine);
            background: rgba(255, 46, 99, 0.05);
        }
        .cine-accordion .accordion-button::after {
            filter: invert(1);
        }
        .cine-accordion .accordion-body {
            color: var(--text-muted-custom);
            font-size: 0.92rem;
            line-height: 1.7;
            padding: 0 22px 20px 22px;
        }

        /* 12. 保障条 */
        .guarantee-bar {
            background: linear-gradient(90deg, #161822 0%, #1A1D29 100%);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-lg);
            padding: 24px;
        }

        /* 13. 心愿表单 */
        .wish-form-card {
            background: var(--bg-dark-surface);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-lg);
            padding: 36px;
        }
        .form-control-cine {
            background: #0B0C10;
            border: 1px solid #282C3D;
            color: var(--text-high);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
        }
        .form-control-cine:focus {
            background: #0B0C10;
            border-color: var(--primary-cine);
            color: var(--text-high);
            box-shadow: 0 0 10px rgba(255, 46, 99, 0.25);
        }

        /* 14. 转化收口 Banner */
        .cta-banner {
            background: radial-gradient(circle at top right, rgba(255, 46, 99, 0.25), transparent 60%), #14161F;
            border: 1px solid rgba(255, 46, 99, 0.3);
            border-radius: var(--radius-lg);
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
        }

        /* 页脚 */
        .cine-footer {
            background: #07080B;
            border-top: 1px solid var(--border-glow);
            padding: 60px 0 24px;
            color: var(--text-muted-custom);
            font-size: 0.9rem;
        }
        .cine-footer h4 {
            color: var(--text-high);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .cine-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cine-footer ul li {
            margin-bottom: 10px;
        }
        .cine-footer a {
            color: var(--text-muted-custom);
        }
        .cine-footer a:hover {
            color: var(--primary-cine);
        }
        .footer-bottom {
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.8rem;
            color: var(--text-dim);
        }

        /* 移动适配微调 */
        @media (max-width: 991px) {
            .hero-title-h1 {
                font-size: 2.1rem;
            }
            .hero-banner-wrap {
                padding: 60px 0;
            }
        }
        @media (max-width: 576px) {
            .hero-title-h1 {
                font-size: 1.7rem;
            }
            .cine-section {
                padding: 45px 0;
            }
            .wish-form-card, .cta-banner {
                padding: 24px 16px;
            }
        }

/* roulang page: category2 */
:root {
      --bg-dark-matrix: #0B0C10;
      --bg-dark-surface: #14161D;
      --bg-dark-card: #1A1D27;
      --border-glow: #1F222E;
      --primary-cine: #FF2E63;
      --primary-cine-hover: #E02656;
      --accent-cyan: #08D9D6;
      --accent-gold: #FFB800;
      --text-high: #F4F5F7;
      --text-muted-custom: #9BA1B0;
      --text-dim: #5B6170;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-pill: 30px;
      --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6);
      --shadow-neon: 0 0 25px rgba(255, 46, 99, 0.35);
    }
    body {
      background-color: var(--bg-dark-matrix);
      color: var(--text-high);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--primary-cine);
    }
    .container {
      max-width: 1320px;
    }
    .cine-header {
      position: sticky;
      top: 0;
      z-index: 1050;
      background: rgba(11, 12, 16, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: var(--transition-smooth);
    }
    .cine-logo {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text-high);
    }
    .cine-logo i {
      color: var(--primary-cine);
      font-size: 1.6rem;
      filter: drop-shadow(0 0 8px var(--primary-cine));
    }
    .cine-logo-icon {
      width: 38px;
      height: 38px;
      background: rgba(255, 46, 99, 0.15);
      border: 1px solid rgba(255, 46, 99, 0.3);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cine-nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted-custom);
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      position: relative;
    }
    .cine-nav-link:hover, .cine-nav-link.active {
      color: var(--text-high);
    }
    .cine-nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 14px;
      right: 14px;
      height: 2px;
      background: var(--primary-cine);
      box-shadow: 0 0 8px var(--primary-cine);
      border-radius: 2px;
    }
    .lang-switcher {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-pill);
      padding: 2px 4px;
      display: inline-flex;
      align-items: center;
    }
    .lang-btn {
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      color: var(--text-muted-custom);
      font-size: 0.75rem;
      border: none;
      background: transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .lang-btn.active {
      background: var(--border-glow);
      color: var(--text-high);
      font-weight: 600;
    }
    .btn-cine-primary {
      background: var(--primary-cine);
      color: #ffffff;
      border: none;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(255, 46, 99, 0.4);
      transition: var(--transition-smooth);
    }
    .btn-cine-primary:hover {
      background: var(--primary-cine-hover);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-neon);
    }
    .btn-cine-outline {
      background: transparent;
      color: var(--text-high);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 9px 22px;
      border-radius: var(--radius-pill);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition-smooth);
    }
    .btn-cine-outline:hover {
      border-color: var(--text-high);
      background: rgba(255, 255, 255, 0.06);
      color: #ffffff;
    }
    .cine-badge {
      background: rgba(255, 46, 99, 0.15);
      border: 1px solid rgba(255, 46, 99, 0.35);
      color: var(--primary-cine);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .cine-badge-gold {
      background: rgba(255, 184, 0, 0.15);
      border: 1px solid rgba(255, 184, 0, 0.4);
      color: var(--accent-gold);
    }
    .cine-badge-cyan {
      background: rgba(8, 217, 214, 0.15);
      border: 1px solid rgba(8, 217, 214, 0.4);
      color: var(--accent-cyan);
    }
    .cine-section {
      padding: 60px 0;
      position: relative;
    }
    .cine-section-header {
      margin-bottom: 32px;
    }
    .cine-section-header h2 {
      font-size: 1.85rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--text-high);
      margin-bottom: 8px;
    }
    .cine-section-header p {
      font-size: 0.95rem;
      color: var(--text-muted-custom);
      margin-bottom: 0;
    }
    .cine-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      transition: var(--transition-smooth);
      overflow: hidden;
      height: 100%;
    }
    .cine-card:hover {
      border-color: rgba(255, 46, 99, 0.4);
      transform: translateY(-5px);
      box-shadow: var(--shadow-card);
    }

    /* 蓝光院线专属板块样式 */
    /* 1. 卡片堆叠首屏 */
    .stacked-hero-section {
      padding: 45px 0 60px;
      position: relative;
      background: radial-gradient(circle at 80% 20%, rgba(255, 46, 99, 0.12), transparent 50%),
                  radial-gradient(circle at 10% 80%, rgba(8, 217, 214, 0.08), transparent 45%);
    }
    .hero-meta-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-pill);
      font-size: 0.85rem;
      color: var(--text-muted-custom);
    }
    .stacked-cards-container {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .stack-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--transition-smooth);
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: var(--shadow-card);
      position: absolute;
    }
    .stack-card-side-left {
      width: 240px;
      height: 330px;
      left: 20px;
      transform: rotate(-6deg) scale(0.9);
      z-index: 1;
      opacity: 0.65;
      filter: brightness(0.65);
    }
    .stack-card-side-right {
      width: 240px;
      height: 330px;
      right: 20px;
      transform: rotate(6deg) scale(0.9);
      z-index: 1;
      opacity: 0.65;
      filter: brightness(0.65);
    }
    .stack-card-main {
      width: 320px;
      height: 430px;
      z-index: 2;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 46, 99, 0.3);
      border-color: rgba(255, 46, 99, 0.5);
    }
    .stack-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .stack-card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(to top, rgba(11, 12, 16, 0.95), transparent);
    }
    .stack-card:hover {
      transform: translateY(-8px) scale(1.02);
      opacity: 1;
      filter: brightness(1);
      z-index: 3;
    }

    /* 2. 多维级联筛选控制器 */
    .filter-panel {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 24px;
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 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;
      color: var(--text-dim);
      font-weight: 600;
      flex-shrink: 0;
    }
    .filter-tags-scroll {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-tag {
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 0.82rem;
      color: var(--text-muted-custom);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-tag:hover {
      color: var(--text-high);
      border-color: rgba(255, 255, 255, 0.15);
    }
    .filter-tag.active {
      background: var(--primary-cine);
      color: #ffffff;
      font-weight: 600;
      box-shadow: 0 0 10px rgba(255, 46, 99, 0.4);
    }

    /* 3. 影视海报流核心矩阵 */
    .poster-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      transition: var(--transition-smooth);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .poster-media {
      position: relative;
      aspect-ratio: 2 / 3;
      width: 100%;
      overflow: hidden;
      background: #000;
    }
    .poster-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-media img {
      transform: scale(1.06);
    }
    .poster-tag-top {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
    }
    .poster-score-top {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
      background: rgba(11, 12, 16, 0.75);
      backdrop-filter: blur(4px);
      padding: 2px 8px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--accent-gold);
      border: 1px solid rgba(255, 184, 0, 0.3);
    }
    .poster-body {
      padding: 14px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .poster-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-high);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-meta {
      font-size: 0.78rem;
      color: var(--text-muted-custom);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* 4. 分页组件 */
    .cine-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }
    .page-box {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      color: var(--text-muted-custom);
      font-size: 0.9rem;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .page-box:hover {
      border-color: rgba(255, 255, 255, 0.3);
      color: var(--text-high);
    }
    .page-box.active {
      background: var(--primary-cine);
      color: #fff;
      border-color: var(--primary-cine);
      box-shadow: 0 0 15px rgba(255, 46, 99, 0.4);
      font-weight: 600;
    }

    /* 5. 蓝光热度飙升榜 */
    .rank-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 16px;
      display: flex;
      gap: 16px;
      align-items: center;
      transition: var(--transition-smooth);
    }
    .rank-card:hover {
      border-color: rgba(255, 46, 99, 0.4);
      transform: translateX(4px);
    }
    .rank-badge-number {
      font-size: 2rem;
      font-weight: 900;
      font-style: italic;
      color: var(--primary-cine);
      line-height: 1;
      width: 42px;
      text-align: center;
      filter: drop-shadow(0 0 6px rgba(255, 46, 99, 0.4));
    }
    .rank-thumb {
      width: 75px;
      height: 105px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }
    .rank-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .rank-info {
      flex-grow: 1;
      min-width: 0;
    }

    /* 6. 观影指南与图谱 */
    .guide-feature-card {
      background: linear-gradient(145deg, var(--bg-dark-surface), var(--bg-dark-matrix));
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 32px;
    }

    /* 7. 自检微卡片 */
    .trouble-box {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 24px;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .trouble-box:hover {
      border-color: var(--accent-cyan);
      box-shadow: 0 4px 20px rgba(8, 217, 214, 0.15);
    }
    .trouble-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: rgba(8, 217, 214, 0.12);
      color: var(--accent-cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 16px;
    }

    /* 8. 补片投递条 */
    .wishlist-strip {
      background: linear-gradient(90deg, #181b26, #1f1a28);
      border: 1px solid rgba(255, 46, 99, 0.25);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
    }

    /* 页脚复用样式 */
    .cine-footer {
      background: #07080a;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 65px 0 25px;
      margin-top: 40px;
    }
    .footer-title {
      color: var(--text-high);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 18px;
      position: relative;
    }
    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--primary-cine);
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--text-muted-custom);
      font-size: 0.88rem;
    }
    .footer-links a:hover {
      color: var(--primary-cine);
      padding-left: 4px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 25px;
      margin-top: 40px;
      font-size: 0.8rem;
      color: var(--text-dim);
    }

    @media (max-width: 991px) {
      .stacked-cards-container {
        min-height: 360px;
        margin-top: 30px;
      }
      .stack-card-side-left, .stack-card-side-right {
        width: 180px;
        height: 260px;
      }
      .stack-card-main {
        width: 240px;
        height: 330px;
      }
    }
    @media (max-width: 767px) {
      .filter-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .filter-tags-scroll {
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        padding-bottom: 4px;
      }
      .wishlist-strip {
        padding: 24px 20px;
      }
      .stack-card-side-left, .stack-card-side-right {
        display: none;
      }
      .stack-card-main {
        position: relative;
        width: 100%;
        max-width: 280px;
      }
    }

/* roulang page: category1 */
:root {
        --bg-dark-matrix: #0B0C10;
        --bg-dark-surface: #14161D;
        --bg-dark-card: #1A1D27;
        --border-glow: #1F222E;
        --primary-cine: #FF2E63;
        --primary-cine-hover: #E02656;
        --accent-cyan: #08D9D6;
        --accent-gold: #FFB800;
        --text-high: #F4F5F7;
        --text-muted-custom: #9BA1B0;
        --text-dim: #5B6170;
        --radius-sm: 8px;
        --radius-md: 14px;
        --radius-lg: 20px;
        --radius-pill: 30px;
        --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6);
        --shadow-neon: 0 0 25px rgba(255, 46, 99, 0.35);
    }
    body {
        background-color: var(--bg-dark-matrix);
        color: var(--text-high);
        font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        line-height: 1.65;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }
    a {
        color: inherit;
        text-decoration: none;
        transition: var(--transition-smooth);
    }
    a:hover {
        color: var(--primary-cine);
    }
    .container {
        max-width: 1320px;
    }
    .cine-header {
        position: sticky;
        top: 0;
        z-index: 1050;
        background: rgba(11, 12, 16, 0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: var(--transition-smooth);
    }
    .cine-logo {
        font-size: 1.5rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--text-high);
    }
    .cine-logo i {
        color: var(--primary-cine);
        font-size: 1.6rem;
        filter: drop-shadow(0 0 8px var(--primary-cine));
    }
    .cine-nav-link {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-muted-custom);
        padding: 8px 14px;
        border-radius: var(--radius-sm);
        position: relative;
    }
    .cine-nav-link:hover, .cine-nav-link.active {
        color: var(--text-high);
    }
    .cine-nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--primary-cine);
        box-shadow: 0 0 8px var(--primary-cine);
        border-radius: 2px;
    }
    .lang-btn {
        padding: 3px 8px;
        border-radius: var(--radius-pill);
        color: var(--text-muted-custom);
        font-size: 0.75rem;
        border: none;
        background: transparent;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .lang-btn.active {
        background: var(--border-glow);
        color: var(--text-high);
        font-weight: 600;
    }
    .btn-cine-primary {
        background: var(--primary-cine);
        color: #ffffff;
        border: none;
        padding: 10px 24px;
        border-radius: var(--radius-pill);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(255, 46, 99, 0.4);
        transition: var(--transition-smooth);
    }
    .btn-cine-primary:hover {
        background: var(--primary-cine-hover);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: var(--shadow-neon);
    }
    .btn-cine-outline {
        background: transparent;
        color: var(--text-high);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 9px 22px;
        border-radius: var(--radius-pill);
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition-smooth);
    }
    .btn-cine-outline:hover {
        border-color: var(--text-high);
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
    }
    .cine-badge {
        background: rgba(255, 46, 99, 0.15);
        border: 1px solid rgba(255, 46, 99, 0.35);
        color: var(--primary-cine);
        font-size: 0.75rem;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: var(--radius-pill);
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    .cine-badge-gold {
        background: rgba(255, 184, 0, 0.15);
        border: 1px solid rgba(255, 184, 0, 0.4);
        color: var(--accent-gold);
    }
    .cine-badge-cyan {
        background: rgba(8, 217, 214, 0.15);
        border: 1px solid rgba(8, 217, 214, 0.4);
        color: var(--accent-cyan);
    }
    .cine-section {
        padding: 55px 0;
        position: relative;
    }
    .cine-section-header {
        margin-bottom: 28px;
    }
    .cine-section-header h2 {
        font-size: 1.65rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        color: var(--text-high);
        margin-bottom: 8px;
    }
    .cine-section-header p {
        font-size: 0.92rem;
        color: var(--text-muted-custom);
        margin-bottom: 0;
    }
    .cine-card {
        background: var(--bg-dark-surface);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-md);
        transition: var(--transition-smooth);
        overflow: hidden;
        height: 100%;
    }
    .cine-card:hover {
        border-color: rgba(255, 46, 99, 0.4);
        transform: translateY(-5px);
        box-shadow: var(--shadow-card);
    }
    .cine-footer {
        background: #07080A;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 70px 0 25px;
    }
    .footer-title {
        color: var(--text-high);
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-left: 12px;
    }
    .footer-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 4px;
        bottom: 4px;
        width: 3px;
        background: var(--primary-cine);
        border-radius: 2px;
    }
    .footer-links {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }
    .footer-links li {
        margin-bottom: 12px;
    }
    .footer-links a {
        color: var(--text-muted-custom);
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .footer-links a:hover {
        color: var(--text-high);
        padding-left: 4px;
    }

    /* === AI 分类页专属无大图首屏与组件样式 === */
    .cat-head-block {
        padding: 40px 0 30px;
        background: radial-gradient(circle at 15% 20%, rgba(255, 46, 99, 0.08), transparent 45%),
                    radial-gradient(circle at 85% 30%, rgba(8, 217, 214, 0.06), transparent 50%),
                    var(--bg-dark-matrix);
        border-bottom: 1px solid var(--border-glow);
    }
    .cat-stat-bar {
        background: var(--bg-dark-surface);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-pill);
        padding: 6px 16px;
        display: inline-flex;
        align-items: center;
        gap: 16px;
        font-size: 0.85rem;
        color: var(--text-muted-custom);
    }
    .cat-stat-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .cat-stat-pill strong {
        color: var(--text-high);
    }
    .live-dot {
        width: 8px;
        height: 8px;
        background-color: var(--accent-cyan);
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 0 8px var(--accent-cyan);
        animation: pulseLive 2s infinite;
    }
    @keyframes pulseLive {
        0% { transform: scale(0.95); opacity: 0.7; }
        50% { transform: scale(1.2); opacity: 1; }
        100% { transform: scale(0.95); opacity: 0.7; }
    }
    .cat-icon-matrix {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .matrix-item {
        background: var(--bg-dark-surface);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-md);
        padding: 14px 12px;
        text-align: center;
        transition: var(--transition-smooth);
    }
    .matrix-item:hover {
        border-color: rgba(255, 46, 99, 0.4);
        background: rgba(255, 46, 99, 0.04);
        transform: translateY(-3px);
    }
    .matrix-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        color: var(--accent-cyan);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        margin-bottom: 8px;
    }
    .matrix-title {
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--text-high);
        margin-bottom: 2px;
    }
    .matrix-sub {
        font-size: 0.75rem;
        color: var(--text-dim);
    }

    /* 多维级联筛选器 */
    .filter-panel {
        background: var(--bg-dark-surface);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-lg);
        padding: 22px 24px;
        margin-top: -15px;
        box-shadow: var(--shadow-card);
    }
    .filter-row {
        display: flex;
        align-items: flex-start;
        padding: 8px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .filter-label {
        width: 72px;
        flex-shrink: 0;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-dim);
        padding-top: 5px;
    }
    .filter-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .filter-tag {
        font-size: 0.82rem;
        padding: 4px 14px;
        border-radius: var(--radius-pill);
        color: var(--text-muted-custom);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid transparent;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .filter-tag:hover {
        color: var(--text-high);
        background: rgba(255, 255, 255, 0.08);
    }
    .filter-tag.active {
        background: rgba(255, 46, 99, 0.15);
        color: var(--primary-cine);
        border-color: rgba(255, 46, 99, 0.4);
        font-weight: 600;
    }

    /* 影视海报流 */
    .poster-card {
        background: var(--bg-dark-surface);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }
    .poster-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 46, 99, 0.5);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    }
    .poster-thumb-wrap {
        position: relative;
        width: 100%;
        padding-top: 142%; /* 约 2:3 标准海报比例 */
        overflow: hidden;
        background: #181B24;
    }
    .poster-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .poster-card:hover .poster-img {
        transform: scale(1.06);
    }
    .poster-mask {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(11, 12, 16, 0.95) 0%, rgba(11, 12, 16, 0.2) 40%, transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 12px;
        opacity: 0.9;
        transition: var(--transition-smooth);
    }
    .poster-badge-top {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 2;
    }
    .poster-rating {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2;
        background: rgba(0, 0, 0, 0.75);
        border: 1px solid rgba(255, 184, 0, 0.4);
        color: var(--accent-gold);
        font-size: 0.75rem;
        font-weight: 700;
        padding: 2px 7px;
        border-radius: var(--radius-sm);
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }
    .poster-body {
        padding: 14px 12px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .poster-title {
        font-size: 0.96rem;
        font-weight: 600;
        color: var(--text-high);
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .poster-meta {
        font-size: 0.78rem;
        color: var(--text-dim);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* 分页导航 */
    .cine-pagination {
        display: inline-flex;
        gap: 8px;
        align-items: center;
        background: var(--bg-dark-surface);
        padding: 6px 12px;
        border-radius: var(--radius-pill);
        border: 1px solid var(--border-glow);
    }
    .cine-page-btn {
        min-width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--text-muted-custom);
        font-size: 0.88rem;
        font-weight: 600;
        transition: var(--transition-smooth);
    }
    .cine-page-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--text-high);
    }
    .cine-page-btn.active {
        background: var(--primary-cine);
        color: #ffffff;
        box-shadow: 0 0 12px rgba(255, 46, 99, 0.4);
    }

    /* 飙升排行榜 */
    .rank-card {
        background: var(--bg-dark-surface);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-md);
        padding: 16px;
        display: flex;
        gap: 16px;
        align-items: center;
        transition: var(--transition-smooth);
        height: 100%;
    }
    .rank-card:hover {
        border-color: rgba(255, 46, 99, 0.4);
        transform: translateY(-4px);
    }
    .rank-number {
        font-size: 2.2rem;
        font-weight: 900;
        line-height: 1;
        font-style: italic;
        width: 42px;
        flex-shrink: 0;
        text-align: center;
    }
    .rank-01 { color: #FF2E63; text-shadow: 0 0 12px rgba(255, 46, 99, 0.4); }
    .rank-02 { color: #FFB800; text-shadow: 0 0 12px rgba(255, 184, 0, 0.4); }
    .rank-03 { color: #08D9D6; text-shadow: 0 0 12px rgba(8, 217, 214, 0.4); }
    .rank-thumb {
        width: 70px;
        height: 98px;
        border-radius: var(--radius-sm);
        object-fit: cover;
        flex-shrink: 0;
    }

    /* 观影知识图谱 Bento */
    .bento-guide {
        background: var(--bg-dark-surface);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-lg);
        padding: 30px;
        position: relative;
        overflow: hidden;
    }
    .bento-timeline-item {
        position: relative;
        padding-left: 26px;
        margin-bottom: 22px;
    }
    .bento-timeline-item:last-child {
        margin-bottom: 0;
    }
    .bento-timeline-item::before {
        content: '';
        position: absolute;
        left: 6px;
        top: 6px;
        bottom: -22px;
        width: 2px;
        background: rgba(255, 255, 255, 0.08);    }
    .bento-timeline-item:last-child::before {
        display: none;
    }
    .bento-timeline-dot {
        position: absolute;
        left: 0;
        top: 6px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--bg-dark-card);
        border: 2px solid var(--primary-cine);
    }
    .troubleshoot-card {
        background: var(--bg-dark-surface);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-md);
        padding: 24px 20px;
        transition: var(--transition-smooth);
        height: 100%;
    }
    .troubleshoot-card:hover {
        border-color: rgba(8, 217, 214, 0.4);
        transform: translateY(-3px);
    }
    .wish-strip {
        background: linear-gradient(135deg, rgba(26, 29, 39, 0.95), rgba(20, 22, 29, 0.98));
        border: 1px solid rgba(255, 46, 99, 0.25);
        border-radius: var(--radius-lg);
        padding: 36px 40px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    }
    .wish-input-group {
        background: rgba(11, 12, 16, 0.75);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-pill);
        padding: 6px 8px 6px 20px;
        display: flex;
        align-items: center;
        transition: var(--transition-smooth);
    }
    .wish-input-group:focus-within {
        border-color: var(--primary-cine);
        box-shadow: 0 0 15px rgba(255, 46, 99, 0.25);
    }
    .wish-input {
        background: transparent;
        border: none;
        outline: none;
        color: var(--text-high);
        font-size: 0.92rem;
        width: 100%;
    }
    .wish-input::placeholder {
        color: var(--text-dim);
    }
    @media (max-width: 991.98px) {
        .cat-icon-matrix {
            grid-template-columns: repeat(2, 1fr);
        }
        .filter-panel {
            padding: 18px 16px;
        }
    }
    @media (max-width: 575.98px) {
        .cat-icon-matrix {
            grid-template-columns: 1fr;
        }
        .cat-stat-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            width: 100%;
        }
        .filter-label {
            width: 100%;
            margin-bottom: 6px;
        }
        .filter-row {
            flex-direction: column;
        }
        .wish-strip {
            padding: 24px 18px;
        }
        .wish-input-group {
            flex-direction: column;
            border-radius: var(--radius-md);
            padding: 12px;
            gap: 12px;
        }
        .wish-input-group .btn-cine-primary {
            width: 100%;
            justify-content: center;
        }
    }

/* roulang page: category3 */
:root {
      --bg-dark-matrix: #0B0C10;
      --bg-dark-surface: #14161D;
      --bg-dark-card: #1A1D27;
      --border-glow: #1F222E;
      --primary-cine: #FF2E63;
      --primary-cine-hover: #E02656;
      --accent-cyan: #08D9D6;
      --accent-gold: #FFB800;
      --text-high: #F4F5F7;
      --text-muted-custom: #9BA1B0;
      --text-dim: #5B6170;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-pill: 30px;
      --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6);
      --shadow-neon: 0 0 25px rgba(255, 46, 99, 0.35);
    }

    body {
      background-color: var(--bg-dark-matrix);
      color: var(--text-high);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--primary-cine);
    }

    .container {
      max-width: 1320px;
    }

    /* 统一深色滚动条 */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    ::-webkit-scrollbar-track {
      background: var(--bg-dark-matrix);
    }
    ::-webkit-scrollbar-thumb {
      background: #252936;
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-cine);
    }

    /* 顶部导航重构 */
    .cine-header {
      position: sticky;
      top: 0;
      z-index: 1050;
      background: rgba(11, 12, 16, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: var(--transition-smooth);
    }
    .cine-logo {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text-high);
    }
    .cine-logo-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--primary-cine), #9d0208);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      box-shadow: 0 0 15px rgba(255, 46, 99, 0.4);
    }
    .cine-logo i {
      color: var(--primary-cine);
      font-size: 1.6rem;
      filter: drop-shadow(0 0 8px var(--primary-cine));
    }
    .cine-nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted-custom);
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      position: relative;
    }
    .cine-nav-link:hover, .cine-nav-link.active {
      color: var(--text-high);
    }
    .cine-nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 14px;
      right: 14px;
      height: 2px;
      background: var(--primary-cine);
      box-shadow: 0 0 8px var(--primary-cine);
      border-radius: 2px;
    }
    .lang-switcher-capsule {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-pill);
      padding: 3px 6px;
      display: inline-flex;
      align-items: center;
      gap: 2px;
    }
    .lang-btn {
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      color: var(--text-muted-custom);
      font-size: 0.75rem;
      border: none;
      background: transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .lang-btn.active {
      background: var(--border-glow);
      color: var(--text-high);
      font-weight: 600;
    }

    /* 按钮体系与徽章 */
    .btn-cine-primary {
      background: var(--primary-cine);
      color: #ffffff;
      border: none;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(255, 46, 99, 0.4);
      transition: var(--transition-smooth);
    }
    .btn-cine-primary:hover {
      background: var(--primary-cine-hover);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-neon);
    }
    .btn-cine-outline {
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-high);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 9px 22px;
      border-radius: var(--radius-pill);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition-smooth);
    }
    .btn-cine-outline:hover {
      border-color: var(--text-high);
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
    }
    .cine-badge {
      background: rgba(255, 46, 99, 0.15);
      border: 1px solid rgba(255, 46, 99, 0.35);
      color: var(--primary-cine);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .cine-badge-gold {
      background: rgba(255, 184, 0, 0.15);
      border: 1px solid rgba(255, 184, 0, 0.4);
      color: var(--accent-gold);
    }
    .cine-badge-cyan {
      background: rgba(8, 217, 214, 0.15);
      border: 1px solid rgba(8, 217, 214, 0.4);
      color: var(--accent-cyan);
    }

    /* 板块结构基类 */
    .cine-section {
      padding: 55px 0;
      position: relative;
    }
    .cine-section-header {
      margin-bottom: 30px;
    }
    .cine-section-header h2 {
      font-size: 1.75rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--text-high);
      margin-bottom: 8px;
    }
    .cine-section-header p {
      font-size: 0.95rem;
      color: var(--text-muted-custom);
      margin-bottom: 0;
    }
    .cine-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      transition: var(--transition-smooth);
      overflow: hidden;
      height: 100%;
    }
    .cine-card:hover {
      border-color: rgba(255, 46, 99, 0.4);
      transform: translateY(-5px);
      box-shadow: var(--shadow-card);
    }

    /* 1. Bento 风格首屏频道概览 */
    .bento-hero-wrap {
      padding-top: 36px;
      padding-bottom: 30px;
    }
    .bento-main-box {
      background: linear-gradient(135deg, rgba(20, 22, 29, 0.9), rgba(11, 12, 16, 0.95)), url('/assets/images/c02cd69b1d3462e8.jpg') center/cover no-repeat;
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 42px 40px;
      position: relative;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: var(--shadow-card);
    }
    .bento-main-box::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(255, 46, 99, 0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .bento-sub-box {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 24px;
      height: calc(50% - 10px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: var(--transition-smooth);
    }
    .bento-sub-box:hover {
      border-color: rgba(8, 217, 214, 0.4);
      transform: translateY(-3px);
    }
    .bento-cta-bar {
      margin-top: 20px;
      background: rgba(26, 29, 39, 0.85);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 18px 24px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    /* 2. 多维级联筛选器 */
    .filter-pills-panel {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 24px;
    }
    .filter-row {
      display: flex;
      align-items: center;
      margin-bottom: 14px;
      gap: 12px;
    }
    .filter-row:last-child {
      margin-bottom: 0;
    }
    .filter-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-dim);
      min-width: 64px;
    }
    .filter-items {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-tag {
      font-size: 0.82rem;
      color: var(--text-muted-custom);
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-tag:hover {
      color: var(--text-high);
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-tag.active {
      background: rgba(255, 46, 99, 0.16);
      color: var(--primary-cine);
      border-color: rgba(255, 46, 99, 0.4);
      font-weight: 600;
    }

    /* 3. 影视海报流卡片核心矩阵 */
    .poster-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
    }
    .poster-card:hover {
      transform: translateY(-7px);
      border-color: var(--primary-cine);
      box-shadow: 0 12px 30px rgba(255, 46, 99, 0.22);
    }
    .poster-thumb-wrap {
      position: relative;
      width: 100%;
      padding-top: 145%; /* 2:3 纵向海报比例 */
      overflow: hidden;
      background: #171922;
    }
    .poster-thumb-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-thumb-wrap img {
      transform: scale(1.06);
    }
    .poster-badges-top {
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 2;
    }
    .poster-info {
      padding: 14px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .poster-title {
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--text-high);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-meta {
      font-size: 0.8rem;
      color: var(--text-dim);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* 4. 分页导航条 */
    .cine-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
    }
    .page-box {
      min-width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      color: var(--text-muted-custom);
      font-size: 0.9rem;
      font-weight: 500;
      transition: var(--transition-smooth);
    }
    .page-box:hover {
      border-color: var(--primary-cine);
      color: var(--text-high);
    }
    .page-box.active {
      background: var(--primary-cine);
      color: #ffffff;
      border-color: var(--primary-cine);
      box-shadow: 0 0 15px rgba(255, 46, 99, 0.4);
    }

    /* 5. 本周分类热度飙升榜 */
    .rank-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
    }
    .rank-card:hover {
      border-color: var(--accent-cyan);
      transform: translateX(4px);
    }
    .rank-num {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1;
      width: 46px;
      text-align: center;
      font-style: italic;
      color: var(--text-dim);
    }
    .rank-1 .rank-num {
      color: var(--primary-cine);
      text-shadow: 0 0 12px rgba(255, 46, 99, 0.5);
    }
    .rank-2 .rank-num {
      color: var(--accent-cyan);
      text-shadow: 0 0 12px rgba(8, 217, 214, 0.5);
    }
    .rank-3 .rank-num {
      color: var(--accent-gold);
      text-shadow: 0 0 12px rgba(255, 184, 0, 0.5);
    }
    .rank-cover {
      width: 60px;
      height: 80px;
      border-radius: var(--radius-sm);
      object-fit: cover;
      flex-shrink: 0;
    }
    .rank-info {
      flex-grow: 1;
      overflow: hidden;
    }
    .rank-info-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-high);
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-info-desc {
      font-size: 0.8rem;
      color: var(--text-muted-custom);
      margin-bottom: 6px;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* 6. 观影指南与图谱 */
    .guide-feature-box {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 32px;
      height: 100%;
    }

    /* 7. 播控自检指引 */
    .diagnostic-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 24px;
      height: 100%;
      border-left: 4px solid var(--border-glow);
      transition: var(--transition-smooth);
    }
    .diagnostic-card:hover {
      border-left-color: var(--accent-cyan);
      border-color: rgba(8, 217, 214, 0.3);
      transform: translateY(-4px);
    }
    .diagnostic-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(8, 217, 214, 0.1);
      color: var(--accent-cyan);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 16px;
    }

    /* 8. 补番心愿单提交条 */
    .wish-banner {
      background: linear-gradient(90deg, #181c26 0%, #13151f 100%);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      position: relative;
      overflow: hidden;
    }
    .wish-banner::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 300px;
      background: radial-gradient(circle at right, rgba(255, 46, 99, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .wish-input-group {
      display: flex;
      gap: 12px;
    }
    .wish-input {
      background: rgba(11, 12, 16, 0.7);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-pill);
      padding: 12px 20px;
      color: var(--text-high);
      font-size: 0.95rem;
      flex-grow: 1;
      outline: none;
      transition: var(--transition-smooth);
    }
    .wish-input:focus {
      border-color: var(--primary-cine);
      box-shadow: 0 0 15px rgba(255, 46, 99, 0.25);
    }

    /* 页脚标准架构 */
    .cine-footer {
      background: #08090C;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 60px 0 25px;
      margin-top: 40px;
    }
    .footer-title {
      color: var(--text-high);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--text-muted-custom);
      font-size: 0.88rem;
    }
    .footer-links a:hover {
      color: var(--primary-cine);
      padding-left: 4px;
    }

    /* 移动端断点适配 */
    @media (max-width: 991px) {
      .bento-hero-wrap {
        padding-top: 20px;
      }
      .bento-main-box {
        padding: 30px 24px;
        margin-bottom: 20px;
      }
      .bento-sub-box {
        height: auto;
        margin-bottom: 16px;
      }
      .wish-banner {
        padding: 26px 20px;
      }
      .wish-input-group {
        flex-direction: column;
      }
      .filter-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }

/* roulang page: category4 */
:root {
      --bg-dark-matrix: #0B0C10;
      --bg-dark-surface: #14161D;
      --bg-dark-card: #1A1D27;
      --border-glow: #1F222E;
      --primary-cine: #FF2E63;
      --primary-cine-hover: #E02656;
      --accent-cyan: #08D9D6;
      --accent-gold: #FFB800;
      --text-high: #F4F5F7;
      --text-muted-custom: #9BA1B0;
      --text-dim: #5B6170;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-pill: 30px;
      --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6);
      --shadow-neon: 0 0 25px rgba(255, 46, 99, 0.35);
    }

    body {
      background-color: var(--bg-dark-matrix);
      color: var(--text-high);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--primary-cine);
    }

    .container {
      max-width: 1320px;
    }

    /* 顶部导航 */
    .cine-header {
      position: sticky;
      top: 0;
      z-index: 1050;
      background: rgba(11, 12, 16, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: var(--transition-smooth);
    }
    .cine-logo {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text-high);
    }
    .cine-logo i {
      color: var(--primary-cine);
      font-size: 1.6rem;
      filter: drop-shadow(0 0 8px var(--primary-cine));
    }
    .cine-nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted-custom);
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      position: relative;
    }
    .cine-nav-link:hover, .cine-nav-link.active {
      color: var(--text-high);
    }
    .cine-nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 14px;
      right: 14px;
      height: 2px;
      background: var(--primary-cine);
      box-shadow: 0 0 8px var(--primary-cine);
      border-radius: 2px;
    }

    /* 语言切换微控件 */
    .lang-capsule {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-pill);
      padding: 3px;
      display: inline-flex;
      align-items: center;
    }
    .lang-btn {
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      color: var(--text-muted-custom);
      font-size: 0.75rem;
      border: none;
      background: transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .lang-btn.active {
      background: var(--border-glow);
      color: var(--text-high);
      font-weight: 600;
    }

    /* 统一按钮与徽标 */
    .btn-cine-primary {
      background: var(--primary-cine);
      color: #ffffff;
      border: none;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(255, 46, 99, 0.4);
      transition: var(--transition-smooth);
    }
    .btn-cine-primary:hover {
      background: var(--primary-cine-hover);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-neon);
    }
    .btn-cine-outline {
      background: transparent;
      color: var(--text-high);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 9px 22px;
      border-radius: var(--radius-pill);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition-smooth);
    }
    .btn-cine-outline:hover {
      border-color: var(--text-high);
      background: rgba(255, 255, 255, 0.06);
      color: #ffffff;
    }
    .cine-badge {
      background: rgba(255, 46, 99, 0.15);
      border: 1px solid rgba(255, 46, 99, 0.35);
      color: var(--primary-cine);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .cine-badge-gold {
      background: rgba(255, 184, 0, 0.15);
      border: 1px solid rgba(255, 184, 0, 0.4);
      color: var(--accent-gold);
    }
    .cine-badge-cyan {
      background: rgba(8, 217, 214, 0.15);
      border: 1px solid rgba(8, 217, 214, 0.4);
      color: var(--accent-cyan);
    }

    /* 板块结构 */
    .cine-section {
      padding: 55px 0;
      position: relative;
    }
    .cine-section-header {
      margin-bottom: 30px;
    }
    .cine-section-header h2 {
      font-size: 1.75rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--text-high);
      margin-bottom: 8px;
    }
    .cine-section-header p {
      font-size: 0.95rem;
      color: var(--text-muted-custom);
      margin-bottom: 0;
    }
    .cine-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      transition: var(--transition-smooth);
      overflow: hidden;
      height: 100%;
    }
    .cine-card:hover {
      border-color: rgba(255, 46, 99, 0.4);
      transform: translateY(-5px);
      box-shadow: var(--shadow-card);
    }

    /* 1. 分类专属 Hero：双栏门户（左主张右快捷入口网格） */
    .cat-hero-portal {
      position: relative;
      padding: 45px 0 50px;
      background: linear-gradient(180deg, rgba(20, 22, 29, 0.95) 0%, rgba(11, 12, 16, 1) 100%);
      border-bottom: 1px solid var(--border-glow);
      overflow: hidden;
    }
    .cat-hero-portal::before {
      content: '';
      position: absolute;
      top: -150px;
      left: 10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 46, 99, 0.15) 0%, rgba(11, 12, 16, 0) 70%);
      pointer-events: none;
    }
    .cat-quick-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .cat-quick-item {
      background: rgba(26, 29, 39, 0.7);
      border: 1px solid var(--border-glow);
      padding: 16px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      gap: 14px;
      transition: var(--transition-smooth);
    }
    .cat-quick-item:hover {
      border-color: var(--accent-cyan);
      background: rgba(26, 29, 39, 0.95);
      transform: translateY(-3px);
    }
    .cat-quick-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(8, 217, 214, 0.12);
      color: var(--accent-cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    /* 2. 多维级联影视筛选器 */
    .cine-filter-panel {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 24px;
      margin-bottom: 35px;
    }
    .filter-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      font-size: 0.85rem;
      color: var(--text-dim);
      font-weight: 600;
      min-width: 60px;
    }
    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-pill {
      font-size: 0.82rem;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      color: var(--text-muted-custom);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-pill:hover {
      color: var(--text-high);
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-pill.active {
      color: #ffffff;
      background: var(--primary-cine);
      box-shadow: 0 2px 10px rgba(255, 46, 99, 0.4);
      font-weight: 600;
    }

    /* 3. 影视海报流卡片 */
    .poster-card {
      position: relative;
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .poster-card:hover {
      border-color: rgba(255, 46, 99, 0.5);
      transform: translateY(-6px);
      box-shadow: var(--shadow-card);
    }
    .poster-thumb {
      position: relative;
      aspect-ratio: 2/3;
      width: 100%;
      overflow: hidden;
      background: #14161D;
    }
    .poster-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .poster-card:hover .poster-thumb img {
      transform: scale(1.06);
    }
    .poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 12, 16, 0.1) 40%, rgba(11, 12, 16, 0.85) 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 12px;
    }
    .poster-badge-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .poster-info {
      padding: 14px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .poster-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-high);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 6px;
    }
    .poster-meta {
      font-size: 0.8rem;
      color: var(--text-muted-custom);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* 4. 分页组件 */
    .cine-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }
    .cine-page-item {
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.88rem;
      color: var(--text-muted-custom);
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      transition: var(--transition-smooth);
      cursor: pointer;
    }
    .cine-page-item:hover, .cine-page-item.active {
      background: var(--primary-cine);
      color: #ffffff;
      border-color: var(--primary-cine);
      box-shadow: 0 0 12px rgba(255, 46, 99, 0.4);
      font-weight: 600;
    }
    .cine-page-item.disabled {
      opacity: 0.4;
      pointer-events: none;
    }

    /* 5. 热度飙升榜 */
    .rank-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: var(--transition-smooth);
    }
    .rank-card:hover {
      border-color: var(--accent-gold);
      transform: translateY(-4px);
    }
    .rank-num {
      font-size: 2.2rem;
      font-weight: 900;
      font-style: italic;
      line-height: 1;
      width: 45px;
      text-align: center;
    }
    .rank-num.num-1 { color: #FF2E63; text-shadow: 0 0 10px rgba(255, 46, 99, 0.5); }
    .rank-num.num-2 { color: #FFB800; text-shadow: 0 0 10px rgba(255, 184, 0, 0.5); }
    .rank-num.num-3 { color: #08D9D6; text-shadow: 0 0 10px rgba(8, 217, 214, 0.5); }
    .rank-detail {
      flex-grow: 1;
      min-width: 0;
    }
    .rank-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-heat {
      font-size: 0.8rem;
      color: var(--accent-gold);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    /* 6. 深度图谱与指南 */
    .guide-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      height: 100%;
    }
    .guide-card:hover {
      border-color: rgba(8, 217, 214, 0.5);
      transform: translateY(-4px);
    }
    .guide-body {
      padding: 24px;
    }
    .guide-tag {
      color: var(--accent-cyan);
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 8px;
      display: inline-block;
    }

    /* 7. 播控与音画自检说明 */
    .troubleshoot-item {
      background: var(--bg-dark-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 24px;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .troubleshoot-item:hover {
      border-color: rgba(255, 255, 255, 0.2);
    }
    .troubleshoot-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255, 46, 99, 0.1);
      color: var(--primary-cine);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      margin-bottom: 16px;
    }

    /* 8. 补片心愿投递条 */
    .wish-submit-box {
      background: linear-gradient(135deg, rgba(20, 22, 29, 0.9) 0%, rgba(26, 29, 39, 0.95) 100%);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 35px 30px;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .wish-submit-box::after {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255, 46, 99, 0.12) 0%, rgba(0,0,0,0) 70%);
      pointer-events: none;
    }

    /* 页脚设计 */
    .cine-footer {
      background: #07080B;
      border-top: 1px solid var(--border-glow);
      padding: 60px 0 25px;
      margin-top: 50px;
    }
    .footer-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-high);
      margin-bottom: 18px;
      position: relative;
      padding-left: 12px;
    }
    .footer-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 3px;
      bottom: 3px;
      width: 3px;
      background: var(--primary-cine);
      border-radius: 2px;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--text-muted-custom);
      font-size: 0.88rem;
    }
    .footer-links a:hover {
      color: var(--primary-cine);
      padding-left: 4px;
    }
    .cine-logo-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255, 46, 99, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-cine);
    }
    .cine-footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      margin-top: 40px;
      color: var(--text-dim);
      font-size: 0.82rem;
    }

    @media (max-width: 991.98px) {
      .cat-quick-grid {
        grid-template-columns: 1fr;
      }
      .filter-row {
        align-items: flex-start;
      }
    }
    @media (max-width: 575.98px) {
      .poster-thumb {
        aspect-ratio: 2/3;
      }
      .wish-submit-box {
        padding: 24px 16px;
      }
    }

/* roulang page: category5 */
:root {
      --bg-dark-matrix: #0B0C10;
      --bg-dark-surface: #14161D;
      --bg-dark-card: #1A1D27;
      --border-glow: #1F222E;
      --primary-cine: #FF2E63;
      --primary-cine-hover: #E02656;
      --accent-cyan: #08D9D6;
      --accent-gold: #FFB800;
      --text-high: #F4F5F7;
      --text-muted-custom: #9BA1B0;
      --text-dim: #5B6170;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-pill: 30px;
      --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6);
      --shadow-neon: 0 0 25px rgba(255, 46, 99, 0.35);
    }
    body {
      background-color: var(--bg-dark-matrix);
      color: var(--text-high);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--primary-cine);
    }
    .container {
      max-width: 1320px;
    }
    /* 导航系统 */
    .cine-header {
      position: sticky;
      top: 0;
      z-index: 1050;
      background: rgba(11, 12, 16, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: var(--transition-smooth);
    }
    .cine-logo {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text-high);
    }
    .cine-logo i {
      color: var(--primary-cine);
      font-size: 1.6rem;
      filter: drop-shadow(0 0 8px var(--primary-cine));
    }
    .cine-nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted-custom);
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      position: relative;
    }
    .cine-nav-link:hover, .cine-nav-link.active {
      color: var(--text-high);
    }
    .cine-nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 14px;
      right: 14px;
      height: 2px;
      background: var(--primary-cine);
      box-shadow: 0 0 8px var(--primary-cine);
      border-radius: 2px;
    }
    .lang-btn {
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      color: var(--text-muted-custom);
      font-size: 0.75rem;
      border: none;
      background: transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .lang-btn.active {
      background: var(--border-glow);
      color: var(--text-high);
      font-weight: 600;
    }
    /* 统一按钮与通用徽章 */
    .btn-cine-primary {
      background: var(--primary-cine);
      color: #ffffff;
      border: none;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(255, 46, 99, 0.4);
      transition: var(--transition-smooth);
    }
    .btn-cine-primary:hover {
      background: var(--primary-cine-hover);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-neon);
    }
    .btn-cine-gold {
      background: linear-gradient(135deg, #FFD700 0%, #FF9E00 100%);
      color: #14161D;
      border: none;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(255, 184, 0, 0.35);
      transition: var(--transition-smooth);
    }
    .btn-cine-gold:hover {
      color: #000;
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(255, 184, 0, 0.5);
    }
    .cine-badge {
      background: rgba(255, 46, 99, 0.15);
      border: 1px solid rgba(255, 46, 99, 0.35);
      color: var(--primary-cine);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .cine-badge-gold {
      background: rgba(255, 184, 0, 0.15);
      border: 1px solid rgba(255, 184, 0, 0.4);
      color: var(--accent-gold);
    }
    .cine-badge-cyan {
      background: rgba(8, 217, 214, 0.15);
      border: 1px solid rgba(8, 217, 214, 0.4);
      color: var(--accent-cyan);
    }
    .cine-section {
      padding: 60px 0;
      position: relative;
    }
    .cine-section-header {
      margin-bottom: 30px;
    }
    .cine-section-header h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--text-high);
      margin-bottom: 8px;
    }
    .cine-section-header p {
      font-size: 0.95rem;
      color: var(--text-muted-custom);
      margin-bottom: 0;
    }
    .cine-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      transition: var(--transition-smooth);
      overflow: hidden;
      height: 100%;
    }
    .cine-card:hover {
      border-color: rgba(255, 46, 99, 0.4);
      transform: translateY(-5px);
      box-shadow: var(--shadow-card);
    }

    /* 板块1：会员俱乐部黑金感 Hero */
    .vip-hero-section {
      background: radial-gradient(circle at 80% 30%, rgba(255, 184, 0, 0.12) 0%, rgba(11, 12, 16, 0.95) 70%),
                  linear-gradient(180deg, #14161D 0%, #0B0C10 100%);
      border-bottom: 1px solid rgba(255, 184, 0, 0.2);
      padding: 60px 0 50px;
      position: relative;
    }
    .vip-hero-badge {
      background: linear-gradient(90deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 184, 0, 0.05) 100%);
      border: 1px solid rgba(255, 184, 0, 0.5);
      color: var(--accent-gold);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 0.85rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 16px;
    }
    .vip-rank-matrix {
      background: rgba(26, 29, 39, 0.8);
      border: 1px solid rgba(255, 184, 0, 0.25);
      border-radius: var(--radius-md);
      padding: 24px;
      backdrop-filter: blur(12px);
    }
    .rank-tier-pill {
      background: rgba(11, 12, 16, 0.6);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      transition: var(--transition-smooth);
    }
    .rank-tier-pill:hover {
      border-color: var(--accent-gold);
      transform: translateY(-2px);
    }

    /* 板块2：多维级联筛选控制器 */
    .filter-wrap {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 20px 24px;
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      min-width: 70px;
      font-size: 0.85rem;
      color: var(--text-dim);
      font-weight: 600;
    }
    .filter-items {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-tag {
      font-size: 0.85rem;
      color: var(--text-muted-custom);
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.03);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-tag:hover {
      color: var(--text-high);
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-tag.active {
      background: var(--primary-cine);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(255, 46, 99, 0.3);
    }

    /* 板块3：影视海报流卡片核心矩阵 */
    .poster-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--bg-dark-card);
      border: 1px solid var(--border-glow);
      transition: var(--transition-smooth);
    }
    .poster-card:hover {
      transform: translateY(-6px) scale(1.02);
      border-color: rgba(255, 46, 99, 0.5);
      box-shadow: var(--shadow-card);
    }
    .poster-img-wrap {
      position: relative;
      width: 100%;
      padding-top: 145%; /* 2:3海报比例 */
      overflow: hidden;
      background: #111;
    }
    .poster-img-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .poster-card:hover .poster-img-wrap img {
      transform: scale(1.06);
    }
    .poster-top-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
    }
    .poster-score-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
      background: rgba(0, 0, 0, 0.75);
      border: 1px solid rgba(255, 184, 0, 0.5);
      color: var(--accent-gold);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      backdrop-filter: blur(4px);
    }
    .poster-info {
      padding: 14px;
    }
    .poster-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-high);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }
    .poster-sub {
      font-size: 0.8rem;
      color: var(--text-muted-custom);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 8px;
    }
    .poster-meta {
      font-size: 0.75rem;
      color: var(--text-dim);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* 板块4：居中深色方块分页组件 */
    .cine-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
    }
    .page-box {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      color: var(--text-muted-custom);
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 0.9rem;
      transition: var(--transition-smooth);
    }
    .page-box:hover {
      background: var(--bg-dark-card);
      border-color: var(--primary-cine);
      color: #fff;
    }
    .page-box.active {
      background: var(--primary-cine);
      border-color: var(--primary-cine);
      color: #fff;
      box-shadow: 0 0 15px rgba(255, 46, 99, 0.4);
    }

    /* 板块5：本周热度飙升榜 */
    .rank-card-h {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 16px;
      display: flex;
      gap: 16px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .rank-card-h:hover {
      border-color: rgba(8, 217, 214, 0.5);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }
    .rank-num-glory {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1;
      font-style: italic;
      color: rgba(255, 255, 255, 0.1);
      position: absolute;
      right: 14px;
      bottom: 8px;
    }
    .rank-card-h:hover .rank-num-glory {
      color: rgba(8, 217, 214, 0.25);
    }
    .rank-h-thumb {
      width: 80px;
      height: 110px;
      border-radius: var(--radius-sm);
      object-fit: cover;
      flex-shrink: 0;
    }

    /* 板块6：图文知识图谱 */
    .knowledge-card {
      background: var(--bg-dark-surface);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 24px;
      height: 100%;
    }
    .knowledge-thumb {
      border-radius: var(--radius-sm);
      width: 100%;
      height: 180px;
      object-fit: cover;
      margin-bottom: 16px;
    }

    /* 板块7：编码与音画自检指引 */
    .spec-check-card {
      background: var(--bg-dark-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 20px;
      height: 100%;
    }

    /* 板块8：底端观影心愿投递条 */
    .wish-banner-wrap {
      background: linear-gradient(90deg, rgba(20, 22, 29, 0.95) 0%, rgba(26, 29, 39, 0.95) 100%);
      border: 1px solid rgba(255, 46, 99, 0.3);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }
    .wish-input-group .form-control {
      background: rgba(11, 12, 16, 0.8);
      border: 1px solid var(--border-glow);
      color: #fff;
      padding: 12px 18px;
      border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    }
    .wish-input-group .form-control:focus {
      border-color: var(--primary-cine);
      box-shadow: none;
    }
    .wish-input-group .btn {
      border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
      padding: 12px 28px;
    }

    /* 页脚设计 */
    .cine-footer {
      background-color: var(--bg-dark-surface);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 70px 0 25px;
      margin-top: 40px;
    }
    .cine-logo-icon {
      width: 38px;
      height: 38px;
      background: rgba(255, 46, 99, 0.15);
      border: 1px solid rgba(255, 46, 99, 0.3);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-cine);
    }
    .footer-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-high);
      margin-bottom: 20px;
      position: relative;
      padding-left: 12px;
    }
    .footer-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 4px;
      bottom: 4px;
      width: 3px;
      background: var(--primary-cine);
      border-radius: 2px;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--text-muted-custom);
      font-size: 0.9rem;
    }
    .footer-links a:hover {
      color: var(--primary-cine);
      padding-left: 4px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 25px;
      margin-top: 40px;
      color: var(--text-dim);
      font-size: 0.85rem;
    }

    @media (max-width: 991px) {
      .wish-banner-wrap {
        padding: 24px 20px;
      }
      .filter-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* 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}
