/* roulang page: index */
:root {
            --bg-main: #0B0E14;
            --bg-card: #151A23;
            --bg-elevated: #1F2633;
            --primary: #E50914;
            --primary-hover: #F40612;
            --accent: #FFB800;
            --accent-sub: #00D2FF;
            --text-main: #F8FAFC;
            --text-body: #CBD5E1;
            --text-muted: #64748B;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(229, 9, 20, 0.35);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-body);
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.7;
            font-size: 15px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover, a:focus {
            color: var(--primary);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 统一紧凑顶部联动导航 */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 68px;
            background: rgba(11, 14, 20, 0.88);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.02em;
        }

        .brand-logo i {
            color: var(--primary);
            font-size: 1.6rem;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
            margin: 0 0 0 36px;
        }

        .nav-menu a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-body);
            position: relative;
            padding: 6px 0;
        }

        .nav-menu a.active, .nav-menu a:hover {
            color: var(--text-main);
        }

        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .search-bar {
            position: relative;
            width: 220px;
        }

        .search-bar input {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            color: var(--text-main);
            font-size: 0.85rem;
            padding: 6px 14px 6px 36px;
            margin: 0;
            height: 36px;
            transition: var(--transition);
        }

        .search-bar input:focus {
            border-color: var(--primary);
            background: var(--bg-elevated);
            outline: none;
            box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
        }

        .search-bar i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .btn-vip {
            background: linear-gradient(135deg, var(--primary), #B20710);
            color: #FFF;
            padding: 7px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(229, 9, 20, 0.35);
            transition: var(--transition);
        }

        .btn-vip:hover {
            background: linear-gradient(135deg, var(--primary-hover), var(--primary));
            color: #FFF;
            transform: translateY(-1px);
        }

        /* 统一标题与说明排版 */
        .section-header {
            margin-bottom: 40px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(229, 9, 20, 0.12);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
            border: 1px solid rgba(229, 9, 20, 0.25);
        }

        .section-title {
            color: var(--text-main);
            font-size: 1.85rem;
            font-weight: 800;
            letter-spacing: -0.01em;
            margin-bottom: 12px;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 680px;
        }

        .section-desc.center {
            margin-left: auto;
            margin-right: auto;
        }

        /* 板块通用间距 */
        .page-section {
            padding: 70px 0;
            position: relative;
        }

        .page-section-alt {
            background: #0E121A;
        }

        /* 板块 1：首屏分屏联动 Hero + 斜切色块 */
        .hero-section {
            position: relative;
            min-height: 580px;
            background: linear-gradient(135deg, rgba(11,14,20,0.95) 0%, rgba(11,14,20,0.7) 100%), url('/assets/images/7dea4746b8ff23ae.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            padding: 60px 0 90px;
            overflow: hidden;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--bg-main), transparent);
        }

        .hero-slanted-bg {
            position: absolute;
            top: 0;
            left: -10%;
            width: 65%;
            height: 100%;
            background: linear-gradient(105deg, rgba(21, 26, 35, 0.96) 0%, rgba(11, 14, 20, 0.88) 100%);
            transform: skewX(-8deg);
            z-index: 1;
            border-right: 2px solid rgba(229, 9, 20, 0.4);
            box-shadow: 15px 0 50px rgba(0,0,0,0.8);
        }

        .hero-content-wrap {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            color: var(--text-main);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 20px;
        }

        .hero-title span {
            color: var(--primary);
            text-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
        }

        .hero-text {
            color: var(--text-body);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary-play {
            background: var(--primary);
            color: #FFF;
            font-size: 1rem;
            font-weight: 700;
            padding: 13px 32px;
            border-radius: var(--radius-md);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 6px 20px rgba(229, 9, 20, 0.45);
            transition: var(--transition);
        }

        .btn-primary-play:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            color: #FFF;
            box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6);
        }

        .btn-secondary-client {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-main);
            font-size: 1rem;
            font-weight: 600;
            padding: 13px 26px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(8px);
        }

        .btn-secondary-client:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #FFF;
        }

        .hero-visual-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 20px 45px rgba(0,0,0,0.7);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .hero-visual-card img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            transition: var(--transition);
        }

        .hero-visual-card:hover img {
            transform: scale(1.03);
        }

        .hero-floating-status {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(15, 20, 29, 0.85);
            backdrop-filter: blur(12px);
            border-radius: var(--radius-md);
            padding: 14px 18px;
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .status-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .status-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(229, 9, 20, 0.2);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .status-info h4 {
            color: var(--text-main);
            font-size: 0.95rem;
            font-weight: 700;
            margin: 0;
        }

        .status-info p {
            color: var(--accent);
            font-size: 0.78rem;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .spec-badge {
            background: rgba(0, 210, 255, 0.15);
            color: var(--accent-sub);
            border: 1px solid rgba(0, 210, 255, 0.3);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
        }

        /* 板块 2：核心解码功能矩阵 */
        .feature-box {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 30px 24px;
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .feature-box:hover {
            transform: translateY(-5px);
            border-color: rgba(229, 9, 20, 0.35);
            box-shadow: var(--shadow-card);
        }

        .feature-box:hover::before {
            opacity: 1;
        }

        .feature-icon-wrapper {
            width: 54px;
            height: 54px;
            border-radius: 12px;
            background: var(--bg-elevated);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
            border: 1px solid var(--border-subtle);
        }

        .feature-title {
            color: var(--text-main);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-desc {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.65;
            margin-bottom: 0;
        }

        /* 板块 3：分类矩阵 */
        .category-matrix-card {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            display: block;
            height: 190px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
            border: 1px solid var(--border-subtle);
        }

        .category-matrix-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .category-matrix-card .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11, 14, 20, 0.95) 0%, rgba(11, 14, 20, 0.4) 60%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            transition: var(--transition);
        }

        .category-matrix-card:hover img {
            transform: scale(1.08);
        }

        .category-matrix-card:hover .overlay {
            background: linear-gradient(to top, rgba(229, 9, 20, 0.85) 0%, rgba(11, 14, 20, 0.6) 100%);
        }

        .category-name {
            color: var(--text-main);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .category-count {
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* 板块 4：全场景智能观影生态 */
        .scenario-item {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 50px;
        }

        .scenario-item:last-child {
            margin-bottom: 0;
        }

        .scenario-item.reverse {
            flex-direction: row-reverse;
        }

        .scenario-text {
            flex: 1;
        }

        .scenario-img {
            flex: 1;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
        }

        .scenario-img img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: var(--transition);
        }

        .scenario-img:hover img {
            transform: scale(1.04);
        }

        .scenario-badge {
            display: inline-block;
            color: var(--accent-sub);
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 8px;
        }

        .scenario-heading {
            color: var(--text-main);
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .scenario-paragraph {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .scenario-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .scenario-tag {
            background: var(--bg-elevated);
            color: var(--text-body);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            border: 1px solid var(--border-subtle);
        }

        /* 板块 5：极速播放内核演示 */
        .player-simulator {
            background: #000;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            position: relative;
        }

        .simulator-screen {
            position: relative;
            height: 480px;
            background: url('/assets/images/7193edd295038dd7.jpg') center/cover no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 24px;
        }

        .simulator-screen::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 40%, rgba(0,0,0,0.8) 100%);
        }

        .player-top-bar {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .player-video-title {
            color: #FFF;
            font-weight: 700;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .danmaku-layer {
            position: relative;
            z-index: 2;
            height: 120px;
            pointer-events: none;
            overflow: hidden;
        }

        .danmaku-item {
            position: absolute;
            color: #FFF;
            background: rgba(0, 0, 0, 0.4);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.85rem;
            white-space: nowrap;
            opacity: 0.9;
        }

        .danmaku-1 { top: 10px; right: 20%; }
        .danmaku-2 { top: 50px; right: 50%; color: var(--accent); }
        .danmaku-3 { top: 90px; right: 35%; }

        .player-bottom-controls {
            position: relative;
            z-index: 2;
        }

        .player-timeline {
            height: 5px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 3px;
            position: relative;
            margin-bottom: 16px;
            cursor: pointer;
        }

        .timeline-progress {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 48%;
            background: var(--primary);
            border-radius: 3px;
        }

        .timeline-point {
            position: absolute;
            left: 48%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 14px;
            height: 14px;
            background: #FFF;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0,0,0,0.5);
        }

        .controls-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .controls-left, .controls-right {
            display: flex;
            align-items: center;
            gap: 18px;
            color: #FFF;
            font-size: 1.1rem;
        }

        .player-time {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-left: 10px;
        }

        .badge-select {
            background: rgba(255,255,255,0.15);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* 板块 6：片库案例五列海报墙 */
        .poster-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
            display: block;
            margin-bottom: 24px;
        }

        .poster-card:hover {
            transform: translateY(-6px);
            border-color: rgba(229, 9, 20, 0.4);
            box-shadow: var(--shadow-card);
        }

        .poster-media {
            position: relative;
            aspect-ratio: 2/3;
            overflow: hidden;
        }

        .poster-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .poster-card:hover .poster-media img {
            transform: scale(1.05);
        }

        .poster-badge-top {
            position: absolute;
            top: 8px;
            left: 8px;
            background: rgba(0,0,0,0.7);
            color: var(--accent);
            border: 1px solid rgba(255, 184, 0, 0.3);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            backdrop-filter: blur(4px);
        }

        .poster-badge-status {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(11, 14, 20, 0.8);
            color: #FFF;
            font-size: 0.72rem;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .poster-content {
            padding: 12px;
        }

        .poster-title {
            color: var(--text-main);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .poster-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .poster-score {
            color: var(--accent);
            font-weight: 700;
        }

        /* 板块 7：权益与服务体系 */
        .price-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            padding: 36px 28px;
            position: relative;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .price-card.featured {
            border-color: var(--primary);
            box-shadow: 0 10px 40px rgba(229, 9, 20, 0.25);
            transform: scale(1.03);
            background: linear-gradient(180deg, #1A1F2C 0%, var(--bg-card) 100%);
        }

        .price-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-card);
        }

        .price-card.featured:hover {
            transform: scale(1.03) translateY(-6px);
        }

        .featured-tag {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: #FFF;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 0.05em;
        }

        .price-level {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 10px;
        }

        .price-figure {
            margin-bottom: 24px;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .price-num {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text-main);
        }

        .price-cycle {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .price-features {
            list-style: none;
            margin: 0 0 32px 0;
            flex-grow: 1;
        }

        .price-features li {
            font-size: 0.9rem;
            color: var(--text-body);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .price-features li i {
            color: #10B981;
            font-size: 0.85rem;
        }

        .price-features li.disabled {
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .price-features li.disabled i {
            color: var(--text-muted);
        }

        .btn-price {
            width: 100%;
            text-align: center;
            padding: 12px 0;
            border-radius: var(--radius-md);
            font-weight: 700;
            font-size: 0.95rem;
            background: var(--bg-elevated);
            color: var(--text-main);
            border: 1px solid var(--border-subtle);
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-price.primary {
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
        }

        .btn-price:hover {
            background: var(--primary-hover);
            color: #FFF;
        }

        /* 板块 8：影迷评价墙 */
        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 24px;
            border: 1px solid var(--border-subtle);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .review-card:hover {
            border-color: rgba(255,255,255,0.2);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }

        .review-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--bg-elevated);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--accent);
            border: 1px solid var(--border-subtle);
        }

        .user-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-main);
        }

        .user-device {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .review-stars {
            color: var(--accent);
            font-size: 0.8rem;
        }

        .review-text {
            font-size: 0.88rem;
            line-height: 1.65;
            color: var(--text-body);
            margin-bottom: 12px;
        }

        .review-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--text-muted);
            border-top: 1px dashed var(--border-subtle);
            padding-top: 10px;
        }

        /* 板块 9：社区话题与口碑榜 */
        .topic-poll-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 28px;
            border: 1px solid var(--border-subtle);
            height: 100%;
        }

        .poll-item {
            margin-bottom: 18px;
        }

        .poll-label {
            display: flex;
            justify-content: space-between;
            font-size: 0.88rem;
            color: var(--text-main);
            margin-bottom: 6px;
            font-weight: 500;
        }

        .poll-bar {
            height: 8px;
            background: var(--bg-elevated);
            border-radius: 4px;
            overflow: hidden;
        }

        .poll-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            border-radius: 4px;
        }

        .top-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .top-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 14px;
            border-radius: var(--radius-sm);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .top-item:hover {
            background: var(--bg-elevated);
            border-color: rgba(229, 9, 20, 0.3);
        }

        .top-rank {
            width: 24px;
            font-weight: 800;
            font-size: 1rem;
            color: var(--text-muted);
        }

        .top-item:nth-child(1) .top-rank { color: #E50914; font-size: 1.15rem; }
        .top-item:nth-child(2) .top-rank { color: #FFB800; font-size: 1.15rem; }
        .top-item:nth-child(3) .top-rank { color: #00D2FF; font-size: 1.15rem; }

        .top-title {
            flex-grow: 1;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
            padding: 0 12px;
        }

        .top-heat {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* 板块 10：片讯资讯列表 */
        .news-card {
            display: flex;
            gap: 16px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 16px;
            border: 1px solid var(--border-subtle);
            margin-bottom: 18px;
            transition: var(--transition);
        }

        .news-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .news-thumb {
            width: 160px;
            height: 100px;
            flex-shrink: 0;
            border-radius: var(--radius-sm);
            overflow: hidden;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .news-card:hover .news-thumb img {
            transform: scale(1.06);
        }

        .news-info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .news-tag {
            font-size: 0.75rem;
            color: var(--accent-sub);
            font-weight: 600;
        }

        .news-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-main);
            margin: 4px 0 6px 0;
            line-height: 1.4;
        }

        .news-date {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* 板块 11：FAQ 折叠 */
        .faq-accordion {
            background: transparent;
            border: none;
        }

        .faq-accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: 14px;
            overflow: hidden;
        }

        .faq-accordion-title {
            color: var(--text-main) !important;
            font-size: 1rem !important;
            font-weight: 700 !important;
            padding: 18px 24px !important;
            background: var(--bg-card) !important;
            border: none !important;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-accordion-title::before {
            display: none !important;
        }

        .faq-accordion-title:hover {
            background: var(--bg-elevated) !important;
        }

        .faq-accordion-content {
            background: var(--bg-card) !important;
            color: var(--text-body) !important;
            font-size: 0.9rem !important;
            line-height: 1.75 !important;
            padding: 0 24px 20px 24px !important;
            border: none !important;
        }

        /* 板块 12：开通行动 CTA */
        .cta-banner {
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.9) 0%, rgba(15, 20, 29, 0.95) 100%), url('/assets/images/a3115c3495d2f7a7.jpg') center/cover no-repeat;
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            border: 1px solid rgba(229, 9, 20, 0.3);
            text-align: center;
        }

        .cta-title {
            color: #FFF;
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-desc {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.05rem;
            max-width: 650px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        .cta-action-group {
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .btn-cta-white {
            background: #FFF;
            color: #0B0E14;
            font-weight: 800;
            font-size: 1rem;
            padding: 14px 34px;
            border-radius: var(--radius-md);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-cta-white:hover {
            background: var(--text-main);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255,255,255,0.25);
        }

        /* 板块 13：合作伙伴图标墙 */
        .partner-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
        }

        .partner-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--text-muted);
            font-weight: 700;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .partner-card:hover {
            border-color: rgba(255,255,255,0.25);
            color: var(--text-main);
            transform: translateY(-2px);
        }

        /* 全局页脚 */
        .site-footer {
            background: #080B0F;
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px 0;
            color: var(--text-muted);
            font-size: 0.88rem;
        }

        .footer-brand {
            margin-bottom: 24px;
        }

        .footer-logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-main);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .footer-logo i {
            color: var(--primary);
        }

        .footer-links-col h4 {
            color: var(--text-main);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .footer-links-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links-col li {
            margin-bottom: 10px;
        }

        .footer-links-col a {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-links-col a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
        }

        /* 响应式断点控制 */
        @media (max-width: 1024px) {
            .partner-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-slanted-bg {
                display: none;
            }
            .hero-section {
                padding: 40px 0 60px;
            }
            .hero-visual-card {
                margin-top: 30px;
            }
            .scenario-item, .scenario-item.reverse {
                flex-direction: column;
                gap: 24px;
            }
            .partner-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-bar {
                display: none;
            }
            .nav-menu {
                display: none;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }

/* roulang page: category1 */
:root {
      --bg-main: #0B0E14;
      --bg-card: #151A23;
      --bg-elevated: #1F2633;
      --primary: #E50914;
      --primary-hover: #F40612;
      --accent: #FFB800;
      --accent-sub: #00D2FF;
      --text-main: #F8FAFC;
      --text-body: #CBD5E1;
      --text-muted: #64748B;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(229, 9, 20, 0.35);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-body);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.7;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover, a:focus {
      color: var(--primary);
      text-decoration: none;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      height: 68px;
      background: rgba(11, 14, 20, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-subtle);
      display: flex;
      align-items: center;
    }
    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.02em;
    }
    .brand-logo i {
      color: var(--primary);
      font-size: 1.6rem;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
      margin: 0 0 0 36px;
    }
    .nav-menu a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-body);
      position: relative;
      padding: 6px 0;
    }
    .nav-menu a.active, .nav-menu a:hover {
      color: var(--text-main);
    }
    .nav-menu a.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .search-bar {
      position: relative;
      width: 220px;
    }
    .search-bar input {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      color: var(--text-main);
      font-size: 0.85rem;
      padding: 6px 14px 6px 36px;
      margin: 0;
      height: 36px;
      transition: var(--transition);
    }
    .search-bar input:focus {
      border-color: var(--primary);
      background: var(--bg-elevated);
      outline: none;
      box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
    }
    .search-bar i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .btn-vip {
      background: linear-gradient(135deg, var(--primary), #B20710);
      color: #FFF;
      padding: 7px 18px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(229, 9, 20, 0.35);
      transition: var(--transition);
    }
    .btn-vip:hover {
      background: linear-gradient(135deg, var(--primary-hover), var(--primary));
      color: #FFF;
      transform: translateY(-1px);
    }
    .page-section {
      padding: 56px 0;
      position: relative;
    }
    .page-section-alt {
      background: #0E121A;
    }
    .section-header {
      margin-bottom: 32px;
    }
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(229, 9, 20, 0.12);
      color: var(--primary);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 10px;
      border: 1px solid rgba(229, 9, 20, 0.25);
    }
    .section-title {
      color: var(--text-main);
      font-size: 1.75rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      max-width: 680px;
    }

    /* 板块 1：分类频道主控台 */
    .cat-console-banner {
      background: linear-gradient(135deg, rgba(11, 14, 20, 0.96) 0%, rgba(21, 26, 35, 0.85) 100%), url('/assets/images/7193edd295038dd7.jpg') center/cover no-repeat;
      padding: 50px 0;
      border-bottom: 1px solid var(--border-subtle);
    }
    .cat-h1 {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.25;
      margin-bottom: 14px;
    }
    .cat-lead {
      color: var(--text-body);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 620px;
      margin-bottom: 0;
    }
    .stats-dashboard {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      background: rgba(21, 26, 35, 0.75);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      backdrop-filter: blur(10px);
    }
    .stat-item {
      text-align: center;
      border-right: 1px solid var(--border-subtle);
    }
    .stat-item:last-child {
      border-right: none;
    }
    .stat-val {
      font-size: 1.85rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1.2;
    }
    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* 板块 2：多维影视筛选器组件 */
    .filter-panel {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      margin-top: -24px;
      position: relative;
      z-index: 10;
      box-shadow: var(--shadow-card);
    }
    .filter-row {
      display: flex;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-row:first-child {
      padding-top: 0;
    }
    .filter-label {
      width: 80px;
      flex-shrink: 0;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-tag {
      font-size: 0.85rem;
      padding: 4px 14px;
      border-radius: 16px;
      color: var(--text-body);
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-tag:hover {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-tag.active {
      background: var(--primary);
      color: #FFF;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(229, 9, 20, 0.4);
    }

    /* 板块 3：核心片库海报流网格 */
    .media-grid-five {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .movie-poster-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
      position: relative;
    }
    .movie-poster-card:hover {
      transform: translateY(-6px);
      border-color: rgba(229, 9, 20, 0.4);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    }
    .poster-wrap {
      position: relative;
      aspect-ratio: 2/3;
      overflow: hidden;
      background: #111;
    }
    .poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .movie-poster-card:hover .poster-wrap img {
      transform: scale(1.06);
    }
    .badge-quality {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(11, 14, 20, 0.8);
      backdrop-filter: blur(6px);
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 184, 0, 0.35);
      z-index: 2;
    }
    .badge-duration {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.7);
      color: var(--text-main);
      font-size: 0.75rem;
      padding: 2px 6px;
      border-radius: 4px;
      z-index: 2;
    }
    .poster-meta {
      padding: 14px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .poster-title-line {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 6px;
      gap: 8px;
    }
    .poster-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-score {
      color: var(--accent);
      font-size: 0.85rem;
      font-weight: 800;
      flex-shrink: 0;
    }
    .poster-info-sub {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    .btn-more-wrap {
      text-align: center;
      margin-top: 40px;
    }
    .btn-cat-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--bg-elevated);
      color: var(--text-main);
      border: 1px solid var(--border-subtle);
      padding: 12px 36px;
      border-radius: 25px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-cat-more:hover {
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 4px 16px rgba(229, 9, 20, 0.35);
      color: #FFF;
    }

    /* 板块 4：本周热播飙升榜 */
    .rank-board-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      height: 100%;
    }
    .rank-board-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-subtle);
    }
    .rank-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .rank-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      transition: var(--transition);
    }
    .rank-item:last-child {
      border-bottom: none;
    }
    .rank-item:hover {
      transform: translateX(4px);
    }
    .rank-num {
      width: 26px;
      height: 26px;
      border-radius: 6px;
      background: var(--bg-elevated);
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .rank-num.top-1 {
      background: linear-gradient(135deg, #FF4B4B, var(--primary));
      color: #FFF;
      box-shadow: 0 2px 8px rgba(229, 9, 20, 0.4);
    }
    .rank-num.top-2 {
      background: linear-gradient(135deg, #FFB800, #E69500);
      color: #000;
    }
    .rank-num.top-3 {
      background: linear-gradient(135deg, #00D2FF, #0099CC);
      color: #000;
    }
    .rank-thumb {
      width: 44px;
      height: 58px;
      border-radius: 4px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .rank-meta {
      flex-grow: 1;
      overflow: hidden;
    }
    .rank-name {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 2px;
    }
    .rank-desc-mini {
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    .rank-trend {
      font-size: 0.75rem;
      font-weight: 700;
      color: #10B981;
      display: flex;
      align-items: center;
      gap: 2px;
      flex-shrink: 0;
    }

    /* 板块 5：独家主题精选片单合集 */
    .special-topic-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .special-topic-card:hover {
      transform: translateY(-4px);
      border-color: rgba(229, 9, 20, 0.4);
    }
    .topic-cover-wrap {
      position: relative;
      height: 170px;
      overflow: hidden;
    }
    .topic-cover-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .special-topic-card:hover .topic-cover-wrap img {
      transform: scale(1.05);
    }
    .topic-badge-count {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(11, 14, 20, 0.85);
      backdrop-filter: blur(4px);
      font-size: 0.75rem;
      color: var(--accent);
      padding: 3px 8px;
      border-radius: 4px;
      border: 1px solid rgba(255, 184, 0, 0.3);
    }
    .topic-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .topic-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .topic-intro {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      flex-grow: 1;
    }
    .topic-meta-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8rem;
      color: var(--text-muted);
      border-top: 1px solid var(--border-subtle);
      padding-top: 12px;
    }

    /* 板块 6：分类影视观影指南与深度简评 */
    .article-guide-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      gap: 20px;
      transition: var(--transition);
      height: 100%;
    }
    .article-guide-card:hover {
      border-color: rgba(229, 9, 20, 0.3);
      transform: translateY(-3px);
    }
    .guide-thumb-box {
      width: 140px;
      height: 110px;
      flex-shrink: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .guide-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .guide-content-box {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .guide-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      line-height: 1.4;
    }
    .guide-summary {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 10px;
    }
    .guide-date {
      font-size: 0.75rem;
      color: #8A99AD;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* 板块 7：多端观影极速跳转与收藏引导 */
    .favorite-sync-bar {
      background: linear-gradient(90deg, #1A212E 0%, #151A23 100%);
      border: 1px solid rgba(229, 9, 20, 0.25);
      border-radius: var(--radius-md);
      padding: 28px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
    .fav-text-box h3 {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 6px;
    }
    .fav-text-box p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin: 0;
    }
    .fav-btns {
      display: flex;
      gap: 14px;
    }
    .btn-fav-primary {
      background: var(--primary);
      color: #FFF;
      padding: 10px 24px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-fav-primary:hover {
      background: var(--primary-hover);
      color: #FFF;
      box-shadow: 0 4px 14px rgba(229, 9, 20, 0.4);
    }
    .btn-fav-secondary {
      background: transparent;
      color: var(--text-body);
      border: 1px solid var(--border-subtle);
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-fav-secondary:hover {
      color: var(--text-main);
      border-color: rgba(255, 255, 255, 0.25);
    }

    /* 统一页脚 */
    .site-footer {
      background: #080A0E;
      border-top: 1px solid var(--border-subtle);
      padding: 60px 0 30px;
      color: var(--text-muted);
    }
    .footer-brand-title {
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.8;
      color: var(--text-muted);
    }
    .footer-col-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      font-size: 0.85rem;
      color: var(--text-muted);;
      transition: var(--transition);
    }
    .footer-links a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid var(--border-subtle);
      margin-top: 40px;
      padding-top: 24px;
      font-size: 0.8rem;
      text-align: center;
      line-height: 1.8;
    }

    /* 响应式断点适配 */
    @media (max-width: 1024px) {
      .media-grid-five {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      .stats-dashboard {
        grid-template-columns: 1fr;
        margin-top: 24px;
      }
      .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        padding-bottom: 12px;
      }
      .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .media-grid-five {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .favorite-sync-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
      }
      .fav-btns {
        width: 100%;
        flex-direction: column;
      }
      .btn-fav-primary, .btn-fav-secondary {
        width: 100%;
        justify-content: center;
      }
      .article-guide-card {
        flex-direction: column;
      }
      .guide-thumb-box {
        width: 100%;
        height: 160px;
      }
      .cat-h1 {
        font-size: 1.7rem;
      }
    }
    @media (max-width: 520px) {
      .search-bar {
        width: 150px;
      }
      .filter-panel {
        padding: 16px;
      }
      .filter-label {
        width: 60px;
        font-size: 0.8rem;
      }
      .filter-tag {
        padding: 3px 10px;
        font-size: 0.75rem;
      }
    }

/* roulang page: category2 */
:root {
        --bg-main: #0B0E14;
        --bg-card: #151A23;
        --bg-elevated: #1F2633;
        --primary: #E50914;
        --primary-hover: #F40612;
        --accent: #FFB800;
        --accent-sub: #00D2FF;
        --text-main: #F8FAFC;
        --text-body: #CBD5E1;
        --text-muted: #64748B;
        --border-subtle: rgba(255, 255, 255, 0.08);
        --border-glow: rgba(229, 9, 20, 0.35);
        --radius-sm: 6px;
        --radius-md: 10px;
        --radius-lg: 16px;
        --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    body {
        background-color: var(--bg-main);
        color: var(--text-body);
        font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        line-height: 1.7;
        font-size: 15px;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }
    a {
        color: inherit;
        text-decoration: none;
        transition: var(--transition);
    }
    a:hover, a:focus {
        color: var(--primary);
        text-decoration: none;
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* 统一紧凑顶部联动导航 */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        height: 68px;
        background: rgba(11, 14, 20, 0.88);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border-subtle);
        display: flex;
        align-items: center;
    }
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .brand-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--text-main);
        letter-spacing: -0.02em;
    }
    .brand-logo i {
        color: var(--primary);
        font-size: 1.6rem;
    }
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 24px;
        list-style: none;
        margin: 0 0 0 36px;
    }
    .nav-menu a {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-body);
        position: relative;
        padding: 6px 0;
    }
    .nav-menu a.active, .nav-menu a:hover {
        color: var(--text-main);
    }
    .nav-menu a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .search-bar {
        position: relative;
        width: 220px;
    }
    .search-bar input {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 20px;
        color: var(--text-main);
        font-size: 0.85rem;
        padding: 6px 14px 6px 36px;
        margin: 0;
        height: 36px;
        transition: var(--transition);
    }
    .search-bar input:focus {
        border-color: var(--primary);
        background: var(--bg-elevated);
        outline: none;
        box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
    }
    .search-bar i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        font-size: 0.85rem;
    }
    .btn-vip {
        background: linear-gradient(135deg, var(--primary), #B20710);
        color: #FFF;
        padding: 7px 18px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(229, 9, 20, 0.35);
        transition: var(--transition);
    }
    .btn-vip:hover {
        background: linear-gradient(135deg, var(--primary-hover), var(--primary));
        color: #FFF;
        transform: translateY(-1px);
    }

    /* 板块通用间距与标题 */
    .page-section {
        padding: 55px 0;
        position: relative;
    }
    .page-section-alt {
        background: #0E121A;
    }
    .section-header {
        margin-bottom: 30px;
    }
    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(229, 9, 20, 0.12);
        color: var(--primary);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 10px;
        border: 1px solid rgba(229, 9, 20, 0.25);
    }
    .section-title {
        color: var(--text-main);
        font-size: 1.75rem;
        font-weight: 800;
        letter-spacing: -0.01em;
        margin-bottom: 8px;
    }
    .section-desc {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* 板块 1：分类频道主控台（Banner） */
    .category-hero {
        position: relative;
        padding: 50px 0 45px;
        background: radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.15) 0%, transparent 60%),
                    linear-gradient(180deg, rgba(11, 14, 20, 0.75) 0%, rgba(11, 14, 20, 0.98) 100%),
                    url('/assets/images/7193edd295038dd7.jpg') center/cover no-repeat;
        border-bottom: 1px solid var(--border-subtle);
    }
    .category-hero-h1 {
        font-size: 2.3rem;
        font-weight: 800;
        color: var(--text-main);
        line-height: 1.25;
        margin-bottom: 14px;
        letter-spacing: -0.02em;
    }
    .category-hero-h1 span {
        color: var(--primary);
    }
    .category-hero-desc {
        font-size: 1rem;
        color: var(--text-body);
        max-width: 660px;
        margin-bottom: 20px;
        line-height: 1.7;
    }
    .stats-dashboard {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        background: rgba(21, 26, 35, 0.85);
        backdrop-filter: blur(10px);
        padding: 24px;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-card);
    }
    .stat-item {
        padding: 10px;
        border-left: 3px solid var(--primary);
    }
    .stat-num {
        font-size: 1.65rem;
        font-weight: 800;
        color: var(--text-main);
        line-height: 1.1;
        margin-bottom: 4px;
        font-feature-settings: "tnum";
    }
    .stat-num small {
        font-size: 0.85rem;
        color: var(--accent);
        font-weight: 600;
        margin-left: 2px;
    }
    .stat-label {
        font-size: 0.82rem;
        color: var(--text-muted);
    }

    /* 板块 2：多维影视筛选器组件 */
    .filter-panel {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 20px 24px;
        margin-top: -24px;
        position: relative;
        z-index: 10;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }
    .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: 75px;
        flex-shrink: 0;
        font-size: 0.85rem;
        color: var(--text-muted);
        font-weight: 600;
        padding-top: 4px;
    }
    .filter-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 12px;
        flex-grow: 1;
    }
    .filter-tag {
        font-size: 0.84rem;
        color: var(--text-body);
        padding: 3px 12px;
        border-radius: 14px;
        cursor: pointer;
        transition: var(--transition);
        background: transparent;
    }
    .filter-tag:hover {
        color: var(--text-main);
        background: var(--bg-elevated);
    }
    .filter-tag.active {
        background: var(--primary);
        color: #FFFFFF;
        font-weight: 600;
    }

    /* 板块 3：分类核心片库海报流主体（5列网格） */
    .drama-grid-5 {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
    .poster-card {
        background: var(--bg-card);
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid var(--border-subtle);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
    }
    .poster-card:hover {
        transform: translateY(-6px);
        border-color: var(--border-glow);
        box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    }
    .poster-media {
        position: relative;
        aspect-ratio: 2/3;
        overflow: hidden;
        background: #11151D;
    }
    .poster-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
    }
    .poster-card:hover .poster-media img {
        transform: scale(1.06);
    }
    .badge-quality {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(11, 14, 20, 0.78);
        backdrop-filter: blur(8px);
        color: #FFFFFF;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .badge-episodes {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(229, 9, 20, 0.9);
        color: #FFFFFF;
        font-size: 0.72rem;
        font-weight: 600;
        padding: 2px 7px;
        border-radius: 4px;
    }
    .poster-info {
        padding: 14px 12px 16px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .poster-title {
        color: var(--text-main);
        font-size: 0.96rem;
        font-weight: 700;
        margin-bottom: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .poster-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 8px;
    }
    .poster-rating {
        color: var(--accent);
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }
    .poster-tags {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
    }
    .poster-tag-item {
        font-size: 0.72rem;
        color: var(--text-muted);
        background: var(--bg-elevated);
        padding: 2px 6px;
        border-radius: 3px;
    }
    .load-more-wrapper {
        text-align: center;
        margin-top: 40px;
    }
    .btn-load-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--bg-card);
        color: var(--text-main);
        border: 1px solid var(--border-subtle);
        padding: 12px 36px;
        border-radius: 24px;
        font-size: 0.92rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }
    .btn-load-more:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #FFF;
        transform: translateY(-2px);
    }

    /* 板块 4：本周热播飙升榜 */
    .trend-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 14px;
        transition: var(--transition);
    }
    .trend-card:hover {
        background: var(--bg-elevated);
        border-color: rgba(229, 9, 20, 0.4);
        transform: translateX(4px);
    }
    .trend-rank {
        font-size: 1.6rem;
        font-weight: 900;
        font-style: italic;
        width: 34px;
        text-align: center;
        color: var(--text-muted);
    }
    .trend-rank.top-1 {
        color: #E50914;
        text-shadow: 0 0 12px rgba(229, 9, 20, 0.5);
    }
    .trend-rank.top-2 {
        color: #FFB800;
        text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
    }
    .trend-rank.top-3 {
        color: #00D2FF;
        text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
    }
    .trend-thumb {
        width: 72px;
        height: 96px;
        border-radius: 6px;
        overflow: hidden;
        flex-shrink: 0;
    }
    .trend-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .trend-body {
        flex-grow: 1;
        min-width: 0;
    }
    .trend-name {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .trend-desc {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-bottom: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .trend-stats {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 0.78rem;
    }
    .trend-surge {
        color: #00E676;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }

    /* 板块 5：独家主题精选片单合集 */
    .curated-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .curated-card:hover {
        transform: translateY(-5px);
        border-color: var(--border-glow);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    }
    .curated-banner {
        position: relative;
        height: 180px;
        overflow: hidden;
    }
    .curated-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .curated-card:hover .curated-banner img {
        transform: scale(1.08);
    }
    .curated-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(11, 14, 20, 0.2) 0%, rgba(21, 26, 35, 0.95) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 16px;
    }
    .curated-badge {
        align-self: flex-start;
        background: var(--primary);
        color: #FFF;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 4px;
        margin-bottom: 6px;
    }
    .curated-title {
        color: var(--text-main);
        font-size: 1.15rem;
        font-weight: 800;
        line-height: 1.3;
    }
    .curated-content {
        padding: 18px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .curated-desc {
        font-size: 0.88rem;
        color: var(--text-body);
        line-height: 1.6;
        margin-bottom: 14px;
    }
    .curated-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.8rem;
        color: var(--text-muted);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 12px;
    }
    .curated-btn {
        color: var(--accent);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    /* 板块 6：观影指南与深度简评 */
    .guide-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 24px;
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        transition: var(--transition);
    }
    .guide-card:hover {
        background: var(--bg-elevated);
        border-color: rgba(229, 9, 20, 0.3);
    }
    .guide-thumb {
        width: 140px;
        height: 105px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        flex-shrink: 0;
    }
    .guide-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .guide-body {
        flex-grow: 1;
    }
    .guide-tag {
        color: var(--accent-sub);
        font-size: 0.78rem;
        font-weight: 700;
        margin-bottom: 6px;
        display: inline-block;
    }
    .guide-heading {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 8px;
        line-height: 1.4;
    }
    .guide-excerpt {
        font-size: 0.86rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .guide-meta {
        font-size: 0.78rem;
        color: var(--text-muted);
        display: flex;
        gap: 16px;
    }

    /* 板块 7：多端观影极速跳转与收藏引导 */
    .sync-banner {
        background: linear-gradient(135deg, #1C2333 0%, #11151D 100%);
        border: 1px solid rgba(229, 9, 20, 0.25);
        border-radius: var(--radius-lg);
        padding: 34px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }
    .sync-info {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    .sync-icon {
        width: 60px;
        height: 60px;
        background: rgba(229, 9, 20, 0.15);
        border: 1px solid var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: var(--primary);
        flex-shrink: 0;
    }
    .sync-title {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--text-main);
        margin-bottom: 6px;
    }
    .sync-desc {
        font-size: 0.92rem;
        color: var(--text-muted);
        max-width: 580px;
    }
    .sync-actions {
        display: flex;
        gap: 14px;
        flex-shrink: 0;
    }
    .btn-action-main {
        background: var(--primary);
        color: #FFFFFF;
        padding: 10px 22px;
        border-radius: 20px;
        font-size: 0.88rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: none;
        cursor: pointer;
        transition: var(--transition);
    }
    .btn-action-main:hover {
        background: var(--primary-hover);
        color: #FFFFFF;
        transform: translateY(-2px);
    }
    .btn-action-outline {
        background: transparent;
        color: var(--text-main);
        border: 1px solid var(--border-subtle);
        padding: 10px 22px;
        border-radius: 20px;
        font-size: 0.88rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: var(--transition);
    }
    .btn-action-outline:hover {
        border-color: var(--text-main);
        background: rgba(255, 255, 255, 0.05);
    }

    /* 页脚统一样式 */
    .site-footer {
        background: #07090D;
        border-top: 1px solid var(--border-subtle);
        padding: 60px 0 30px;
        margin-top: 40px;
    }
    .footer-brand-title {
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--text-main);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }
    .text-primary {
        color: var(--primary);
    }
    .footer-desc {
        font-size: 0.88rem;
        color: var(--text-muted);
        line-height: 1.7;
    }
    .footer-col-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 16px;
    }
    .footer-links {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-links li {
        margin-bottom: 10px;
    }
    .footer-links a {
        font-size: 0.86rem;
        color: var(--text-muted);
        transition: var(--transition);
    }
    .footer-links a:hover {
        color: var(--primary);
        padding-left: 4px;
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 24px;
        margin-top: 40px;
        text-align: center;
        font-size: 0.8rem;
        color: var(--text-muted);
        line-height: 1.8;
    }

    /* 响应式断点控制 */
    @media screen and (max-width: 1024px) {
        .drama-grid-5 {
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .stats-dashboard {
            margin-top: 20px;
        }
    }
    @media screen and (max-width: 768px) {
        .nav-menu, .search-bar {
            display: none;
        }
        .category-hero-h1 {
            font-size: 1.75rem;
        }
        .drama-grid-5 {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .sync-banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            padding: 24px;
        }
        .sync-actions {
            width: 100%;
            flex-direction: column;
        }
        .btn-action-main, .btn-action-outline {
            justify-content: center;
            width: 100%;
        }
        .guide-card {
            flex-direction: column;
        }
        .guide-thumb {
            width: 100%;
            height: 140px;
        }
    }

/* roulang page: category3 */
:root {
      --bg-main: #0B0E14;
      --bg-card: #151A23;
      --bg-elevated: #1F2633;
      --primary: #E50914;
      --primary-hover: #F40612;
      --accent: #FFB800;
      --accent-sub: #00D2FF;
      --text-main: #F8FAFC;
      --text-body: #CBD5E1;
      --text-muted: #64748B;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(229, 9, 20, 0.35);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-body);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.7;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover, a:focus {
      color: var(--primary);
      text-decoration: none;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* 统一紧凑顶部联动导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      height: 68px;
      background: rgba(11, 14, 20, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-subtle);
      display: flex;
      align-items: center;
    }
    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.02em;
    }
    .brand-logo i {
      color: var(--primary);
      font-size: 1.6rem;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
      margin: 0 0 0 36px;
    }
    .nav-menu a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-body);
      position: relative;
      padding: 6px 0;
    }
    .nav-menu a.active, .nav-menu a:hover {
      color: var(--text-main);
    }
    .nav-menu a.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .search-bar {
      position: relative;
      width: 220px;
    }
    .search-bar input {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      color: var(--text-main);
      font-size: 0.85rem;
      padding: 6px 14px 6px 36px;
      margin: 0;
      height: 36px;
      transition: var(--transition);
    }
    .search-bar input:focus {
      border-color: var(--primary);
      background: var(--bg-elevated);
      outline: none;
      box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
    }
    .search-bar i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .btn-vip {
      background: linear-gradient(135deg, var(--primary), #B20710);
      color: #FFF;
      padding: 7px 18px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(229, 9, 20, 0.35);
      transition: var(--transition);
    }
    .btn-vip:hover {
      background: linear-gradient(135deg, var(--primary-hover), var(--primary));
      color: #FFF;
      transform: translateY(-1px);
    }

    /* 板块通用间距与标题 */
    .page-section {
      padding: 60px 0;
      position: relative;
    }
    .page-section-alt {
      background: #0E121A;
    }
    .section-header {
      margin-bottom: 32px;
    }
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(229, 9, 20, 0.12);
      color: var(--primary);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
      border: 1px solid rgba(229, 9, 20, 0.25);
    }
    .section-title {
      color: var(--text-main);
      font-size: 1.85rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      margin-bottom: 10px;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      max-width: 680px;
    }

    /* 板块 1：分类主控台 + Before/After 对比首屏 */
    .category-console-hero {
      position: relative;
      padding: 50px 0 70px;
      background: radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.18), transparent 55%),
                  linear-gradient(180deg, rgba(11, 14, 20, 0.96) 0%, rgba(11, 14, 20, 1) 100%),
                  url('/assets/images/a3115c3495d2f7a7.jpg') center/cover no-repeat;
      border-bottom: 1px solid var(--border-subtle);
    }
    .console-h1 {
      font-size: 2.35rem;
      font-weight: 900;
      color: var(--text-main);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .console-summary {
      color: var(--text-body);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .hero-stat-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 30px;
    }
    .stat-pill {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 12px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    .stat-pill i {
      font-size: 1.5rem;
      color: var(--accent-sub);
    }
    .stat-val {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-main);
      display: block;
      line-height: 1.1;
    }
    .stat-lbl {
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    .btn-hero-play {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--primary);
      color: #FFF;
      padding: 13px 30px;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 700;
      box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
      transition: var(--transition);
    }
    .btn-hero-play:hover {
      background: var(--primary-hover);
      color: #FFF;
      transform: translateY(-2px);
    }

    /* Before/After 并置对比视觉容器 */
    .compare-showcase-box {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 18px;
      box-shadow: var(--shadow-card);
      position: relative;
    }
    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .compare-side {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 16/10;
      background: #000;
      border: 1px solid rgba(255,255,255,0.05);
    }
    .compare-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .compare-side.legacy img {
      filter: blur(1.5px) contrast(85%) saturate(75%);
    }
    .compare-side.modern img {
      filter: contrast(110%) saturate(115%);
      box-shadow: inset 0 0 40px rgba(0, 210, 255, 0.2);
    }
    .compare-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      z-index: 2;
    }
    .badge-legacy {
      background: rgba(40, 44, 52, 0.9);
      color: #94A3B8;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .badge-modern {
      background: rgba(229, 9, 20, 0.95);
      color: #FFF;
      box-shadow: 0 0 10px rgba(229, 9, 20, 0.6);
    }
    .compare-spec-list {
      margin-top: 12px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      font-size: 0.8rem;
    }
    .spec-item {
      padding: 6px 10px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-muted);
    }
    .spec-item.glow {
      background: rgba(0, 210, 255, 0.08);
      color: var(--accent-sub);
      font-weight: 600;
      border: 1px solid rgba(0, 210, 255, 0.2);
    }

    /* 板块 2：多维影视筛选器 */
    .filter-panel-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 24px 30px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.3);
    }
    .filter-row {
      display: flex;
      align-items: baseline;
      padding: 9px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 85px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-muted);
      flex-shrink: 0;
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 12px;
    }
    .filter-chip {
      display: inline-block;
      padding: 4px 14px;
      border-radius: 18px;
      font-size: 0.82rem;
      color: var(--text-body);
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-chip:hover {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.06);
    }
    .filter-chip.active {
      background: var(--primary);
      color: #FFF;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(229, 9, 20, 0.4);
    }

    /* 板块 3：核心片库海报流主体 (5列响应式网格) */
    .anime-poster-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 22px;
    }
    .anime-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .anime-card:hover {
      transform: translateY(-6px);
      border-color: rgba(229, 9, 20, 0.45);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(229, 9, 20, 0.2);
    }
    .anime-thumb-box {
      position: relative;
      aspect-ratio: 2/3;
      overflow: hidden;
      background: #0f131a;
    }
    .anime-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .anime-card:hover .anime-thumb-box img {
      transform: scale(1.07);
    }
    .badge-quality-tag {
      position: absolute;
      top: 8px;
      left: 8px;
      background: rgba(11, 14, 20, 0.85);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--accent-sub);
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
      z-index: 2;
    }
    .badge-episode-tag {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(229, 9, 20, 0.9);
      color: #FFF;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      z-index: 2;
    }
    .anime-card-content {
      padding: 14px 12px 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .anime-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 6px;
    }
    .anime-card:hover .anime-title {
      color: var(--primary);
    }
    .anime-meta-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: auto;
    }
    .anime-score {
      color: var(--accent);
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 3px;
    }
    .load-more-wrap {
      text-align: center;
      margin-top: 45px;
    }
    .btn-more-anime {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-card);
      color: var(--text-main);
      border: 1px solid var(--border-subtle);
      padding: 12px 36px;
      border-radius: 25px;
      font-size: 0.92rem;
      font-weight: 600;
      transition: var(--transition);
    }
    .btn-more-anime:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #FFF;
      box-shadow: 0 4px 16px rgba(229, 9, 20, 0.4);
    }

    /* 板块 4：本周热播飙升榜 (左右分栏) */
    .trend-board-wrap {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 30px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 30px;
    }
    .trend-column-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--border-subtle);
      padding-bottom: 12px;
    }
    .trend-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 12px 14px;
      border-radius: var(--radius-md);
      transition: var(--transition);
      background: rgba(255, 255, 255, 0.02);
      margin-bottom: 12px;
    }
    .trend-item:hover {
      background: var(--bg-elevated);
      transform: translateX(4px);
    }
    .trend-rank-badge {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--bg-main);
      color: var(--text-muted);
      font-weight: 800;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .rank-top-1 {
      background: linear-gradient(135deg, #FFB800, #E65100);
      color: #FFF;
      box-shadow: 0 0 12px rgba(255, 184, 0, 0.5);
    }
    .rank-top-2 {
      background: linear-gradient(135deg, #94A3B8, #475569);
      color: #FFF;
    }
    .rank-top-3 {
      background: linear-gradient(135deg, #B45309, #78350F);
      color: #FFF;
    }
    .trend-poster-mini {
      width: 48px;
      height: 64px;
      border-radius: 6px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .trend-poster-mini img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .trend-info {
      flex-grow: 1;
      overflow: hidden;
    }
    .trend-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }
    .trend-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .trend-surge {
      text-align: right;
flex-shrink: 0;
    }
    .surge-num {
      color: var(--primary);
      font-weight: 800;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 3px;
    }
    .surge-tag {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    /* 板块 5：独家主题精选片单合集 (3列宽画幅专题卡) */
    .special-topic-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .special-topic-card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }
    .special-topic-card:hover {
      transform: translateY(-6px);
      border-color: rgba(229, 9, 20, 0.4);
      box-shadow: var(--shadow-card);
    }
    .topic-banner {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }
    .topic-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .special-topic-card:hover .topic-banner img {
      transform: scale(1.08);
    }
    .topic-badge-count {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(11, 14, 20, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #FFF;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
    }
    .topic-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .topic-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 10px;
    }
    .topic-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 18px;
    }
    .topic-action {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 14px;
      font-size: 0.82rem;
      color: var(--text-body);
    }
    .topic-action span {
      color: var(--primary);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* 板块 6：观影指南与深度简评 (2列图文卡) */
    .anime-guide-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .guide-article-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 24px;
      display: flex;
      gap: 20px;
      align-items: center;
      transition: var(--transition);
    }
    .guide-article-card:hover {
      background: var(--bg-elevated);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-3px);
    }
    .guide-cover-wrap {
      width: 140px;
      height: 175px;
      border-radius: var(--radius-md);
      overflow: hidden;
      flex-shrink: 0;
    }
    .guide-cover-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .guide-article-content {
      flex-grow: 1;
    }
    .guide-meta-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--accent-sub);
      background: rgba(0, 210, 255, 0.08);
      padding: 2px 8px;
      border-radius: 4px;
      margin-bottom: 8px;
    }
    .guide-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .guide-excerpt {
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 12px;
    }
    .guide-footer-info {
      font-size: 0.78rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 16px;
    }

    /* 板块 7：极速跳转与追番收藏引导条 */
    .channel-cta-bar {
      background: linear-gradient(135deg, #1A2230 0%, #111620 100%);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 30px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }
    .channel-cta-text h3 {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 6px;
    }
    .channel-cta-text p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin: 0;
    }
    .channel-cta-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }
    .btn-notify-sub {
      background: var(--primary);
      color: #FFF;
      border: none;
      padding: 10px 24px;
      border-radius: 25px;
      font-weight: 700;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 14px rgba(229, 9, 20, 0.4);
    }
    .btn-notify-sub:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }
    .btn-bookmark-link {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-main);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-bookmark-link:hover {
      background: rgba(255, 255, 255, 0.15);
      color: #FFF;
    }

    /* 统一页脚样式 */
    .site-footer {
      background: #07090D;
      border-top: 1px solid var(--border-subtle);
      padding: 60px 0 30px;
      color: var(--text-muted);
      font-size: 0.88rem;
    }
    .footer-brand-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .text-primary {
      color: var(--primary);
    }
    .footer-desc {
      line-height: 1.8;
      font-size: 0.85rem;
      margin-bottom: 20px;
    }
    .footer-col-title {
      color: var(--text-main);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: 0.02em;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .footer-links a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin-top: 40px;
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-align: center;
      font-size: 0.8rem;
    }

    /* 响应式断点适配 */
    @media (max-width: 1024px) {
      .anime-poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .special-topic-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      .search-bar {
        width: 150px;
      }
      .anime-poster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
      .trend-board-wrap {
        grid-template-columns: 1fr;
      }
      .special-topic-grid {
        grid-template-columns: 1fr;
      }
      .anime-guide-grid {
        grid-template-columns: 1fr;
      }
      .channel-cta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
      }
      .channel-cta-actions {
        width: 100%;
        justify-content: flex-start;
      }
      .compare-grid {
        grid-template-columns: 1fr;
      }
      .console-h1 {
        font-size: 1.85rem;
      }
    }
    @media (max-width: 520px) {
      .search-bar {
        display: none;
      }
      .guide-article-card {
        flex-direction: column;
        align-items: flex-start;
      }
      .guide-cover-wrap {
        width: 100%;
        height: 180px;
      }
    }

/* roulang page: category4 */
:root {
            --bg-main: #0B0E14;
            --bg-card: #151A23;
            --bg-elevated: #1F2633;
            --primary: #E50914;
            --primary-hover: #F40612;
            --accent: #FFB800;
            --accent-sub: #00D2FF;
            --text-main: #F8FAFC;
            --text-body: #CBD5E1;
            --text-muted: #64748B;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(229, 9, 20, 0.35);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        * {
            box-sizing: border-box;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-body);
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.7;
            font-size: 15px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            margin: 0;
            padding: 0;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover, a:focus {
            color: var(--primary);
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 68px;
            background: rgba(11, 14, 20, 0.88);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.02em;
        }
        .brand-logo i {
            color: var(--primary);
            font-size: 1.6rem;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
            margin: 0 0 0 36px;
            padding: 0;
        }
        .nav-menu a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-body);
            position: relative;
            padding: 6px 0;
        }
        .nav-menu a.active, .nav-menu a:hover {
            color: var(--text-main);
        }
        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .search-bar {
            position: relative;
            width: 220px;
        }
        .search-bar input {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            color: var(--text-main);
            font-size: 0.85rem;
            padding: 6px 14px 6px 36px;
            margin: 0;
            height: 36px;
            transition: var(--transition);
        }
        .search-bar input:focus {
            border-color: var(--primary);
            background: var(--bg-elevated);
            outline: none;
            box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
        }
        .search-bar i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .btn-vip {
            background: linear-gradient(135deg, var(--primary), #B20710);
            color: #FFF;
            padding: 7px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(229, 9, 20, 0.35);
            transition: var(--transition);
        }
        .btn-vip:hover {
            background: linear-gradient(135deg, var(--primary-hover), var(--primary));
            color: #FFF;
            transform: translateY(-1px);
        }
        .section-header {
            margin-bottom: 30px;
        }
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(229, 9, 20, 0.12);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
            border: 1px solid rgba(229, 9, 20, 0.25);
        }
        .section-title {
            color: var(--text-main);
            font-size: 1.85rem;
            font-weight: 800;
            letter-spacing: -0.01em;
            margin-bottom: 10px;
        }
        .section-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .category-banner {
            position: relative;
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.75) 0%, rgba(11, 14, 20, 0.95) 100%), url('/assets/images/bd295c8d92bf7c99.jpg') center/cover no-repeat;
            padding: 50px 0 40px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .banner-h1 {
            color: var(--text-main);
            font-size: 2.3rem;
            font-weight: 800;
            margin-bottom: 14px;
            line-height: 1.25;
        }
        .banner-h1 span {
            color: var(--primary);
        }
        .banner-lead {
            color: var(--text-body);
            font-size: 1.05rem;
            max-width: 680px;
            margin-bottom: 20px;
        }
        .stat-badge-group {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .stat-badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stat-badge i {
            color: var(--accent);
            font-size: 1.1rem;
        }
        .stat-badge strong {
            color: var(--text-main);
            font-size: 1.1rem;
        }
        .stat-badge span {
            color: var(--text-muted);
            font-size: 0.8rem;
        }
        .dashboard-kpi-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 24px;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .dashboard-kpi-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-sub);
        }
        .kpi-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .kpi-row:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .kpi-label {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .kpi-val {
            color: var(--text-main);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .filter-panel {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-subtle);
            padding: 24px 0;
        }
        .filter-row {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 0.88rem;
        }
        .filter-row:last-child {
            margin-bottom: 0;
        }
        .filter-title {
            color: var(--text-muted);
            width: 75px;
            flex-shrink: 0;
            padding-top: 4px;
            font-weight: 600;
        }
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .filter-tags button {
            background: transparent;
            border: 1px solid transparent;
            color: var(--text-body);
            padding: 3px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .filter-tags button:hover {
            color: var(--text-main);
            background: var(--bg-elevated);
        }
        .filter-tags button.active {
            background: var(--primary);
            color: #FFF;
            font-weight: 600;
        }
        .video-grid-section {
            padding: 50px 0 60px;
        }
        .poster-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
            margin-bottom: 24px;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .poster-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-glow);
            box-shadow: 0 12px 30px rgba(0,0,0,0.7);
        }
        .poster-thumb {
            position: relative;
            width: 100%;
            aspect-ratio: 2/3;
            overflow: hidden;
            background: #000;
        }
        .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);
        }
        .badge-resolution {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(6px);
            color: var(--accent-sub);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid rgba(0, 210, 255, 0.3);
            z-index: 2;
        }
        .badge-episodes {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(11, 14, 20, 0.85);
            backdrop-filter: blur(6px);
            color: #FFF;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 4px;
            z-index: 2;
        }
        .poster-info {
            padding: 14px 14px 16px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .poster-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 6px;
        }
        .poster-rating {
            color: var(--accent);
            font-weight: 700;
        }
        .poster-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .poster-tags {
            font-size: 0.78rem;
            color: var(--text-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .load-more-container {
            text-align: center;
            margin-top: 30px;
        }
        .btn-more-catalog {
            background: var(--bg-card);
            color: var(--text-main);
            border: 1px solid var(--border-subtle);
            padding: 12px 36px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .btn-more-catalog:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }
        .trending-section {
            background: #0E121A;
            padding: 65px 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .rank-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 14px 18px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: var(--transition);
        }
        .rank-card:hover {
            transform: translateX(6px);
            border-color: rgba(255, 255, 255, 0.16);
            background: var(--bg-elevated);
        }
        .rank-index {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--text-muted);
            width: 32px;
            text-align: center;
            flex-shrink: 0;
        }
        .rank-index.top-1 {
            color: var(--primary);
            text-shadow: 0 0 12px rgba(229, 9, 20, 0.6);
        }
        .rank-index.top-2 {
            color: var(--accent);
        }
        .rank-index.top-3 {
            color: var(--accent-sub);
        }
        .rank-thumb {
            width: 60px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .rank-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .rank-content {
            flex-grow: 1;
            min-width: 0;
        }
        .rank-title {
            color: var(--text-main);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rank-desc {
            color: var(--text-muted);
            font-size: 0.8rem;
            margin-bottom: 4px;
        }
        .rank-surge {
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .curated-section {
            padding: 65px 0;
        }
        .curated-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }
        .curated-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card);
        }
        .curated-img-wrap {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        .curated-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .curated-card:hover .curated-img-wrap img {
            transform: scale(1.05);
        }
        .curated-pill {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(11, 14, 20, 0.8);
            backdrop-filter: blur(4px);
            color: var(--accent);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            border: 1px solid rgba(255, 184, 0, 0.3);
        }
        .curated-body {
            padding: 22px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .curated-title {
            color: var(--text-main);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .curated-desc {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .curated-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            padding-top: 14px;
            font-size: 0.82rem;
            color: var(--text-muted);
        }
        .guide-section {
            background: #0E121A;
            padding: 65px 0;
            border-top: 1px solid var(--border-subtle);
        }
        .guide-box {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px;
            display: flex;
            gap: 22px;
            align-items: flex-start;
            height: 100%;
            transition: var(--transition);
        }
        .guide-box:hover {
            border-color: rgba(255, 255, 255, 0.16);
            transform: translateY(-4px);
        }
        .guide-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: rgba(229, 9, 20, 0.12);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
            border: 1px solid rgba(229, 9, 20, 0.25);
        }
        .guide-title {
            color: var(--text-main);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .guide-text {
            color: var(--text-body);
            font-size: 0.9rem;
            line-height: 1.65;
            margin-bottom: 0;
        }
        .action-strip-section {
            background: linear-gradient(90deg, #151A23 0%, #1F2633 100%);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            padding: 32px 0;
        }
        .strip-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .strip-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .strip-info i {
            font-size: 2rem;
            color: var(--accent);
        }
        .strip-title {
            color: var(--text-main);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .strip-subtitle {
            color: var(--text-muted);
            font-size: 0.88rem;
            margin: 0;
        }
        .strip-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .btn-fav {
            background: var(--primary);
            color: #FFF;
            padding: 10px 24px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-fav:hover {
            background: var(--primary-hover);
            color: #FFF;
            transform: translateY(-2px);
        }
        .btn-remind {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-main);
            border: 1px solid var(--border-subtle);
            padding: 10px 22px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-remind:hover {
            background: rgba(255, 255, 255, 0.15);
            color: var(--text-main);
        }
        .site-footer {
            background: #07090D;
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 25px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-brand-title {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-desc {
            font-size: 0.88rem;
            line-height: 1.75;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        .footer-col-title {
            color: var(--text-main);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 18px;
            position: relative;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 0.88rem;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.82rem;
            color: #4B5563;
        }
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 16px;
                margin-left: 20px;
            }
            .search-bar {
                width: 170px;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                height: auto;
                padding: 12px 0;
            }
            .nav-wrapper {
                flex-direction: column;
                gap: 14px;
                align-items: flex-start;
            }
            .nav-menu {
                margin: 0;
                width: 100%;
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 6px;
            }
            .nav-actions {
                width: 100%;
                justify-content: space-between;
            }
            .search-bar {
                flex-grow: 1;
            }
            .banner-h1 {
                font-size: 1.75rem;
            }
            .dashboard-kpi-card {
                margin-top: 24px;
            }
            .guide-box {
                flex-direction: column;
                gap: 14px;
            }
            .strip-wrapper {
                flex-direction: column;
                align-items: flex-start;
            }
            .strip-actions {
                width: 100%;
                justify-content: flex-start;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }
