/* roulang page: index */
:root {
            --color-primary: #0a0f24;
            --color-primary-light: #141a38;
            --color-accent: #e63946;
            --color-accent-hover: #c62832;
            --color-gold: #f0b90b;
            --color-gold-light: #f9d54c;
            --color-bg: #f0f2f7;
            --color-surface: #ffffff;
            --color-surface-alt: #f8f9fb;
            --color-text: #1a1d2e;
            --color-text-secondary: #5a5f72;
            --color-text-muted: #8b8fa3;
            --color-border: #e2e5ee;
            --color-border-light: #eef0f5;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --shadow-sm: 0 1px 3px rgba(10,15,36,0.06);
            --shadow-md: 0 4px 16px rgba(10,15,36,0.10);
            --shadow-lg: 0 8px 30px rgba(10,15,36,0.14);
            --shadow-xl: 0 14px 48px rgba(10,15,36,0.18);
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-slow: 0.40s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --max-width: 1260px;
            --nav-height-desktop: 140px;
            --nav-height-mobile: 120px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
        }
        button:focus-visible, a:focus-visible, input:focus-visible {
            outline: 2px solid var(--color-accent);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* ========== HEADER ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border-light);
            transition: box-shadow var(--transition-base);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-lg);
        }
        .header-row-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 20px;
        }
        .header-logo {
            font-family: var(--font-heading);
            font-size: 1.55rem;
            font-weight: 800;
            color: var(--color-primary);
            letter-spacing: -0.3px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color var(--transition-fast);
        }
        .header-logo:hover {
            color: var(--color-accent);
        }
        .header-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--color-accent);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 900;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .header-search-wrap {
            display: flex;
            align-items: center;
            background: var(--color-bg);
            border-radius: 50px;
            padding: 6px 6px 6px 18px;
            border: 2px solid transparent;
            transition: all var(--transition-base);
            flex: 1;
            max-width: 420px;
        }
        .header-search-wrap:focus-within {
            border-color: var(--color-accent);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(230,57,70,0.08);
        }
        .header-search-wrap input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.95rem;
            color: var(--color-text);
            flex: 1;
            min-width: 0;
        }
        .header-search-wrap input::placeholder {
            color: var(--color-text-muted);
        }
        .header-search-wrap button {
            background: var(--color-accent);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 9px 20px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            white-space: nowrap;
            transition: background var(--transition-fast);
        }
        .header-search-wrap button:hover {
            background: var(--color-accent-hover);
        }
        .header-cta-btn {
            background: var(--color-accent);
            color: #fff !important;
            border: none;
            border-radius: 50px;
            padding: 11px 26px;
            font-weight: 700;
            font-size: 0.93rem;
            cursor: pointer;
            white-space: nowrap;
            transition: all var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .header-cta-btn:hover {
            background: var(--color-accent-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .header-row-nav {
            border-top: 1px solid var(--color-border-light);
            padding: 6px 0;
        }
        .channel-pills {
            display: flex;
            gap: 6px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 2px 0;
        }
        .channel-pills::-webkit-scrollbar {
            display: none;
        }
        .channel-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 9px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            background: transparent;
            border: 1.5px solid transparent;
            white-space: nowrap;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .channel-pill:hover {
            color: var(--color-accent);
            background: rgba(230,57,70,0.04);
        }
        .channel-pill.active {
            background: var(--color-accent);
            color: #fff;
            border-color: var(--color-accent);
            box-shadow: 0 3px 12px rgba(230,57,70,0.25);
        }
        .channel-pill .pill-badge {
            background: rgba(255,255,255,0.25);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
        }
        .channel-pill.active .pill-badge {
            background: rgba(255,255,255,0.30);
        }

        /* Mobile nav toggle */
        .mobile-nav-toggler {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--color-text);
            cursor: pointer;
            padding: 8px;
        }
        @media (max-width: 991px) {
            .header-search-wrap {
                display: none;
            }
            .header-cta-btn {
                display: none;
            }
            .mobile-nav-toggler {
                display: block;
            }
            .header-row-nav {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .channel-pills {
                gap: 4px;
            }
            .channel-pill {
                padding: 7px 14px;
                font-size: 0.82rem;
            }
        }
        @media (max-width: 520px) {
            .header-logo {
                font-size: 1.2rem;
            }
            .header-logo .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
            .channel-pill {
                padding: 6px 11px;
                font-size: 0.78rem;
            }
        }

        /* ========== CONTAINER ========== */
        .container-site {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-site {
                padding: 0 16px;
            }
        }

        /* ========== SECTION SPACING ========== */
        .section-py {
            padding: 60px 0;
        }
        .section-py-lg {
            padding: 80px 0;
        }
        .section-py-sm {
            padding: 40px 0;
        }
        @media (max-width: 768px) {
            .section-py {
                padding: 40px 0;
            }
            .section-py-lg {
                padding: 50px 0;
            }
        }

        /* ========== SECTION HEADING ========== */
        .section-heading {
            text-align: center;
            margin-bottom: 44px;
        }
        .section-heading .section-label {
            display: inline-block;
            background: rgba(230,57,70,0.08);
            color: var(--color-accent);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.82rem;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .section-heading h2 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 2.1rem;
            color: var(--color-primary);
            margin: 0 0 8px;
            letter-spacing: -0.4px;
        }
        .section-heading p {
            color: var(--color-text-secondary);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .section-heading h2 {
                font-size: 1.6rem;
            }
            .section-heading p {
                font-size: 0.95rem;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            padding: 80px 0 90px;
            background: linear-gradient(160deg, #0a0f24 0%, #141a38 40%, #1a2044 100%);
            overflow: hidden;
            color: #fff;
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            z-index: 0;
        }
        .hero-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.25;
            z-index: 0;
            pointer-events: none;
        }
        .hero-glow.top-right {
            top: -200px;
            right: -150px;
            background: var(--color-accent);
        }
        .hero-glow.bottom-left {
            bottom: -200px;
            left: -150px;
            background: var(--color-gold);
        }
        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 760px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.12);
            color: var(--color-gold-light);
            padding: 7px 18px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.6px;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.15);
        }
        .hero-content h1 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 3.2rem;
            line-height: 1.2;
            margin: 0 0 18px;
            letter-spacing: -0.6px;
        }
        .hero-content h1 .highlight {
            color: var(--color-gold);
        }
        .hero-content .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.75);
            margin-bottom: 32px;
            line-height: 1.7;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn-hero-primary {
            background: var(--color-accent);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 14px 34px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-hero-primary:hover {
            background: var(--color-accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(230,57,70,0.35);
            color: #fff;
        }
        .btn-hero-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.35);
            border-radius: 50px;
            padding: 14px 34px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-hero-outline:hover {
            border-color: #fff;
            background: rgba(255,255,255,0.08);
            color: #fff;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-top: 28px;
        }
        .hero-tag {
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.8);
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all var(--transition-fast);
        }
        .hero-tag:hover {
            background: rgba(255,255,255,0.18);
            color: #fff;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 50px 0 60px;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content .hero-subtitle {
                font-size: 1rem;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 520px) {
            .hero-content h1 {
                font-size: 1.6rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        /* ========== CATEGORY CARDS ========== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .category-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--color-surface);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            cursor: pointer;
            display: block;
            color: inherit;
            text-decoration: none;
        }
        .category-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            color: inherit;
        }
        .category-card .card-img-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        .category-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .category-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }
        .category-card .card-img-overlay-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,15,36,0.7) 0%, rgba(10,15,36,0.1) 60%, transparent 100%);
        }
        .category-card .card-body-custom {
            padding: 20px 22px 22px;
            position: relative;
        }
        .category-card .card-icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            margin-top: -40px;
            position: relative;
            z-index: 2;
            box-shadow: var(--shadow-md);
        }
        .category-card .card-icon-circle.red {
            background: var(--color-accent);
        }
        .category-card .card-icon-circle.blue {
            background: #3b82f6;
        }
        .category-card .card-icon-circle.green {
            background: #10b981;
        }
        .category-card h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            margin: 10px 0 6px;
            color: var(--color-primary);
        }
        .category-card p {
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.5;
        }
        @media (max-width: 768px) {
            .category-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .category-card .card-img-wrap {
                height: 170px;
            }
        }

        /* ========== NEWS LIST (CMS) ========== */
        .news-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .news-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: row;
        }
        .news-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        .news-card .news-img {
            width: 200px;
            min-height: 160px;
            flex-shrink: 0;
            object-fit: cover;
            border-radius: var(--radius-lg) 0 0 var(--radius-lg);
            transition: transform var(--transition-slow);
        }
        .news-card:hover .news-img {
            transform: scale(1.03);
        }
        .news-card .news-body {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-card .news-category-tag {
            display: inline-block;
            background: rgba(230,57,70,0.08);
            color: var(--color-accent);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 8px;
            width: fit-content;
        }
        .news-card h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            margin: 0 0 6px;
            color: var(--color-primary);
            line-height: 1.4;
        }
        .news-card .news-meta {
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }
        .news-empty {
            text-align: center;
            padding: 40px;
            color: var(--color-text-muted);
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .news-list {
                grid-template-columns: 1fr;
            }
            .news-card {
                flex-direction: column;
            }
            .news-card .news-img {
                width: 100%;
                height: 180px;
                border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            }
        }

        /* ========== HOT MATCHES ========== */
        .matches-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .match-card {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
        }
        .match-card:hover {
            border-color: var(--color-accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .match-card .match-league {
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }
        .match-card .match-teams {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.05rem;
            color: var(--color-primary);
            margin-bottom: 8px;
        }
        .match-card .match-score {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--color-accent);
            margin-bottom: 6px;
        }
        .match-card .match-time {
            font-size: 0.78rem;
            color: var(--color-text-muted);
        }
        .match-card .match-status {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-top: 6px;
        }
        .match-status.live {
            background: #fef2f2;
            color: #dc2626;
            animation: pulse-live 2s infinite;
        }
        .match-status.upcoming {
            background: #f0f9ff;
            color: #0284c7;
        }
        @keyframes pulse-live {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.55; }
        }
        @media (max-width: 992px) {
            .matches-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .matches-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== STATS BAR ========== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            border: 1px solid var(--color-border-light);
        }
        .stat-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .stat-card .stat-number {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--color-accent);
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-card .stat-label {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .stat-card .stat-number {
                font-size: 1.8rem;
            }
        }

        /* ========== FEATURES ========== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .feature-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 30px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .feature-card .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.5rem;
            color: #fff;
        }
        .feature-card .feature-icon.f-red {
            background: var(--color-accent);
        }
        .feature-card .feature-icon.f-blue {
            background: #3b82f6;
        }
        .feature-card .feature-icon.f-purple {
            background: #8b5cf6;
        }
        .feature-card h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0 0 8px;
            color: var(--color-primary);
        }
        .feature-card p {
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== FAQ ========== */
        .faq-wrap {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-base);
        }
        .faq-item:hover {
            border-color: var(--color-border);
        }
        .faq-question {
            padding: 18px 22px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--color-accent);
        }
        .faq-question .faq-arrow {
            transition: transform var(--transition-base);
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--color-accent);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 22px 18px;
            color: var(--color-text-secondary);
            font-size: 0.93rem;
            line-height: 1.7;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(150deg, #0a0f24 0%, #141a38 50%, #1a1f40 100%);
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 640px;
            margin: 0 auto;
        }
        .cta-content h2 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 2rem;
            margin-bottom: 12px;
        }
        .cta-content p {
            color: rgba(255,255,255,0.7);
            font-size: 1.05rem;
            margin-bottom: 28px;
        }
        .btn-cta-lg {
            background: var(--color-gold);
            color: var(--color-primary);
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 800;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-cta-lg:hover {
            background: var(--color-gold-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(240,185,11,0.35);
            color: var(--color-primary);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-primary);
            color: rgba(255,255,255,0.7);
            padding: 40px 0 24px;
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-brand-name {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            color: rgba(255,255,255,0.5);
            font-size: 0.85rem;
            line-height: 1.6;
        }
        .footer-col h5 {
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: rgba(255,255,255,0.55);
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== UTILS ========== */
        .text-accent {
            color: var(--color-accent);
        }
        .text-gold {
            color: var(--color-gold);
        }
        .bg-surface {
            background: var(--color-surface);
        }
        .bg-alt {
            background: var(--color-surface-alt);
        }

/* roulang page: category1 */
:root {
            --color-primary: #e63946;
            --color-primary-dark: #c1121f;
            --color-primary-light: #ff6b6b;
            --color-accent: #f77f00;
            --color-accent-glow: #ff9f1c;
            --color-bg: #f8f9fa;
            --color-bg-alt: #ffffff;
            --color-bg-dark: #1a1a2e;
            --color-bg-darker: #0f0f1a;
            --color-text: #1a1a2e;
            --color-text-light: #6c757d;
            --color-text-muted: #adb5bd;
            --color-text-on-dark: #e9ecef;
            --color-border: #dee2e6;
            --color-border-light: #e9ecef;
            --color-success: #2ecc71;
            --color-warning: #f39c12;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.14);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.18);
            --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.25);
            --transition-fast: 0.18s ease;
            --transition-normal: 0.28s ease;
            --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --container-max: 1240px;
            --container-narrow: 960px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            text-decoration: none;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        .container-site {
            max-width: var(--container-max);
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .container-narrow {
            max-width: var(--container-narrow);
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== HEADER ========== */
        .site-header {
            background: var(--color-bg-alt);
            border-bottom: 1px solid var(--color-border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
            transition: box-shadow var(--transition-normal);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 16px;
            flex-wrap: wrap;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .header-logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
            box-shadow: 0 3px 12px rgba(230, 57, 70, 0.3);
            flex-shrink: 0;
        }

        .header-logo-text {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--color-text);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .header-logo-text span {
            color: var(--color-primary);
        }

        .header-search-wrap {
            flex: 1;
            max-width: 420px;
            min-width: 200px;
            position: relative;
        }

        .header-search-input {
            width: 100%;
            padding: 10px 44px 10px 18px;
            border: 2px solid var(--color-border-light);
            border-radius: 50px;
            font-size: 0.95rem;
            background: var(--color-bg);
            transition: all var(--transition-normal);
            outline: none;
            color: var(--color-text);
        }

        .header-search-input:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.08);
            background: #fff;
        }

        .header-search-input::placeholder {
            color: var(--color-text-muted);
        }

        .header-search-btn {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--color-primary);
            border: none;
            color: #fff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
            font-size: 0.9rem;
        }

        .header-search-btn:hover {
            background: var(--color-primary-dark);
            box-shadow: var(--shadow-glow);
        }

        .header-cta-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-header-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--color-primary);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.93rem;
            cursor: pointer;
            transition: all var(--transition-normal);
            white-space: nowrap;
            box-shadow: 0 3px 14px rgba(230, 57, 70, 0.28);
        }

        .btn-header-cta:hover {
            background: var(--color-primary-dark);
            box-shadow: 0 6px 22px rgba(230, 57, 70, 0.4);
            transform: translateY(-1px);
            color: #fff;
        }

        /* Channel Pills Navigation */
        .channel-nav-row {
            border-top: 1px solid var(--color-border-light);
            padding: 6px 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .channel-nav-row::-webkit-scrollbar {
            display: none;
        }

        .channel-pills {
            display: flex;
            gap: 6px;
            flex-wrap: nowrap;
            align-items: center;
            padding: 2px 0;
        }

        .channel-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            cursor: pointer;
            transition: all var(--transition-fast);
            color: var(--color-text-light);
            background: transparent;
            border: 1.5px solid transparent;
            position: relative;
            text-decoration: none;
        }

        .channel-pill:hover {
            color: var(--color-text);
            background: rgba(0, 0, 0, 0.03);
        }

        .channel-pill.active {
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            border-color: var(--color-primary);
            box-shadow: 0 3px 12px rgba(230, 57, 70, 0.3);
        }

        .channel-pill .pill-badge {
            font-size: 0.68rem;
            background: var(--color-accent);
            color: #fff;
            padding: 2px 7px;
            border-radius: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
            animation: pulse-badge 1.8s ease-in-out infinite;
            line-height: 1.3;
        }

        @keyframes pulse-badge {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.12);
            }
        }

        /* Mobile nav toggle */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--color-text);
            cursor: pointer;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }

        .mobile-nav-toggle:hover {
            background: rgba(0, 0, 0, 0.04);
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 40%, #16213e 100%);
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 60px 0 70px;
            overflow: hidden;
            min-height: 320px;
            display: flex;
            align-items: center;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 15, 26, 0.75) 0%, rgba(26, 26, 46, 0.85) 60%, rgba(15, 15, 26, 0.92) 100%);
            z-index: 1;
        }

        .page-banner::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: float-glow 6s ease-in-out infinite;
        }

        @keyframes float-glow {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(-20px, -15px) scale(1.08);
            }
            66% {
                transform: translate(15px, 10px) scale(0.94);
            }
        }

        .page-banner-content {
            position: relative;
            z-index: 2;
        }

        .page-banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(230, 57, 70, 0.2);
            border: 1px solid rgba(230, 57, 70, 0.4);
            color: #ff8c94;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .page-banner-badge .live-dot {
            width: 8px;
            height: 8px;
            background: #ff4444;
            border-radius: 50%;
            animation: live-pulse 1.2s ease-in-out infinite;
        }

        @keyframes live-pulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
            }
        }

        .page-banner h1 {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
            line-height: 1.25;
        }

        .page-banner h1 em {
            font-style: normal;
            color: var(--color-primary-light);
        }

        .page-banner-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .banner-stats-row {
            display: flex;
            gap: 28px;
            margin-top: 22px;
            flex-wrap: wrap;
        }

        .banner-stat-item {
            color: #fff;
            text-align: center;
        }

        .banner-stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-primary-light);
            line-height: 1.1;
        }

        .banner-stat-label {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 2px;
        }

        /* ========== SECTION STYLES ========== */
        .section-block {
            padding: 60px 0;
        }

        .section-block.bg-alt {
            background: var(--color-bg-alt);
        }

        .section-block.bg-dark {
            background: var(--color-bg-dark);
            color: var(--color-text-on-dark);
        }

        .section-header {
            margin-bottom: 36px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--color-primary);
            margin-bottom: 8px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            color: inherit;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
            line-height: 1.3;
        }

        .section-title.light {
            color: #fff;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--color-text-light);
            max-width: 600px;
        }

        .section-subtitle.light {
            color: rgba(255, 255, 255, 0.65);
        }

        /* ========== LIVE MATCH CARDS ========== */
        .live-match-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }

        .live-match-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-normal);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .live-match-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--color-primary);
        }

        .live-match-card-thumb {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: #1a1a2e;
        }

        .live-match-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }

        .live-match-card:hover .live-match-card-thumb img {
            transform: scale(1.06);
        }

        .live-status-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: #ff4444;
            color: #fff;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            z-index: 2;
            animation: live-pulse-badge 1.5s ease-in-out infinite;
        }

        @keyframes live-pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.6);
            }
            50% {
                box-shadow: 0 0 0 14px rgba(255, 68, 68, 0);
            }
        }

        .live-status-badge.upcoming {
            background: var(--color-accent);
            animation: none;
        }

        .live-status-badge.replay {
            background: #5a67d8;
            animation: none;
        }

        .live-match-card-body {
            padding: 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .live-match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 10px;
        }

        .live-match-team {
            font-weight: 700;
            font-size: 1.05rem;
            text-align: center;
            flex: 1;
        }

        .live-match-score {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-primary);
            min-width: 50px;
            text-align: center;
            letter-spacing: -1px;
        }

        .live-match-score.pending {
            color: var(--color-text-muted);
            font-size: 1rem;
        }

        .live-match-info {
            font-size: 0.82rem;
            color: var(--color-text-light);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .live-match-meta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-top: auto;
            padding-top: 10px;
            border-top: 1px solid var(--color-border-light);
        }

        .btn-watch-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 22px;
            background: var(--color-primary);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-normal);
            margin-top: 12px;
            align-self: flex-start;
            text-decoration: none;
        }

        .btn-watch-live:hover {
            background: var(--color-primary-dark);
            box-shadow: var(--shadow-glow);
            color: #fff;
            transform: translateY(-1px);
        }

        /* ========== SCHEDULE LIST ========== */
        .schedule-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .schedule-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: #fff;
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            flex-wrap: wrap;
        }

        .schedule-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-primary);
        }

        .schedule-time {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--color-primary);
            min-width: 70px;
            text-align: center;
            background: rgba(230, 57, 70, 0.06);
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            white-space: nowrap;
        }

        .schedule-matchup {
            flex: 1;
            font-weight: 600;
            font-size: 0.95rem;
            min-width: 140px;
        }

        .schedule-league {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            background: var(--color-bg);
            padding: 4px 10px;
            border-radius: 20px;
            white-space: nowrap;
        }

        .schedule-action {
            white-space: nowrap;
        }

        .btn-schedule-remind {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 7px 16px;
            border: 1.5px solid var(--color-primary);
            color: var(--color-primary);
            background: transparent;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            text-decoration: none;
        }

        .btn-schedule-remind:hover {
            background: var(--color-primary);
            color: #fff;
        }

        /* ========== CATEGORY GRID ========== */
        .category-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 16px;
        }

        .category-icon-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 24px 16px;
            text-align: center;
            border: 1.5px solid var(--color-border-light);
            transition: all var(--transition-normal);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-sm);
        }

        .category-icon-card:hover {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            color: inherit;
        }

        .category-icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #fff;
            flex-shrink: 0;
        }

        .category-icon-circle.red {
            background: linear-gradient(135deg, #e63946, #c1121f);
        }
        .category-icon-circle.blue {
            background: linear-gradient(135deg, #457b9d, #1d3557);
        }
        .category-icon-circle.green {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }
        .category-icon-circle.orange {
            background: linear-gradient(135deg, #f77f00, #e76f00);
        }
        .category-icon-circle.purple {
            background: linear-gradient(135deg, #7b2ff7, #5a189a);
        }
        .category-icon-circle.teal {
            background: linear-gradient(135deg, #0d9488, #0f766e);
        }

        .category-icon-name {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ========== HIGHLIGHT SECTION ========== */
        .highlight-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .highlight-featured {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            min-height: 360px;
            background: #1a1a2e;
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow-md);
            cursor: pointer;
            transition: all var(--transition-normal);
        }

        .highlight-featured:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-2px);
        }

        .highlight-featured img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }

        .highlight-featured:hover img {
            transform: scale(1.05);
        }

        .highlight-featured-overlay {
            position: relative;
            z-index: 2;
            padding: 28px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
            width: 100%;
            color: #fff;
        }

        .highlight-featured-overlay h4 {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .highlight-featured-overlay p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 0;
        }

        .highlight-side-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .highlight-side-item {
            display: flex;
            gap: 14px;
            align-items: center;
            background: #fff;
            border-radius: var(--radius-md);
            padding: 12px 14px;
            border: 1px solid var(--color-border-light);
            cursor: pointer;
            transition: all var(--transition-fast);
            text-decoration: none;
            color: inherit;
        }

        .highlight-side-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-primary);
            color: inherit;
        }

        .highlight-side-thumb {
            width: 80px;
            height: 56px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: #1a1a2e;
        }

        .highlight-side-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .highlight-side-info h6 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .highlight-side-info span {
            font-size: 0.78rem;
            color: var(--color-text-light);
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
        }

        .cta-section h3 {
            position: relative;
            z-index: 1;
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 8px;
        }

        .cta-section p {
            position: relative;
            z-index: 1;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .btn-cta-large {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: #fff;
            color: var(--color-primary);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition-normal);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
            text-decoration: none;
        }

        .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
            color: var(--color-primary-dark);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-bg-darker);
            color: var(--color-text-on-dark);
            padding: 48px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-brand-name {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .footer-desc {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.6;
            max-width: 320px;
        }

        .footer-col h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 7px;
        }

        .footer-col ul li a {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition-fast);
            text-decoration: none;
        }

        .footer-col ul li a:hover {
            color: var(--color-primary-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 16px;
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .highlight-grid {
                grid-template-columns: 1fr;
            }
            .live-match-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .page-banner h1 {
                font-size: 2.1rem;
            }
        }

        @media (max-width: 768px) {
            .header-top-row {
                flex-wrap: wrap;
                gap: 10px;
            }
            .header-search-wrap {
                order: 3;
                max-width: 100%;
                flex-basis: 100%;
                min-width: 100%;
            }
            .header-cta-wrap {
                order: 2;
            }
            .header-logo {
                order: 1;
            }
            .mobile-nav-toggle {
                display: block;
                order: 2;
            }
            .channel-nav-row {
                padding: 4px 0;
            }
            .channel-pills {
                gap: 4px;
            }
            .channel-pill {
                padding: 7px 13px;
                font-size: 0.8rem;
            }
            .page-banner {
                padding: 40px 0 50px;
                min-height: 240px;
            }
            .page-banner h1 {
                font-size: 1.7rem;
            }
            .page-banner-desc {
                font-size: 0.95rem;
            }
            .banner-stats-row {
                gap: 16px;
            }
            .banner-stat-num {
                font-size: 1.5rem;
            }
            .section-block {
                padding: 40px 0;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .live-match-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            .live-match-card-thumb {
                height: 170px;
            }
            .category-card-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            .category-icon-card {
                padding: 16px 10px;
            }
            .category-icon-circle {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }
            .category-icon-name {
                font-size: 0.78rem;
            }
            .highlight-side-thumb {
                width: 64px;
                height: 44px;
            }
            .highlight-featured {
                min-height: 240px;
            }
            .cta-section {
                padding: 32px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
            .schedule-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 14px 16px;
            }
            .schedule-time {
                min-width: auto;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }
            .footer-desc {
                max-width: 100%;
                margin: 0 auto;
            }
        }

        @media (max-width: 520px) {
            .container-site {
                padding-left: 14px;
                padding-right: 14px;
            }
            .container-narrow {
                padding-left: 14px;
                padding-right: 14px;
            }
            .header-logo-text {
                font-size: 1.1rem;
            }
            .header-logo-icon {
                width: 34px;
                height: 34px;
                font-size: 16px;
            }
            .btn-header-cta {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
            .page-banner h1 {
                font-size: 1.4rem;
            }
            .page-banner-desc {
                font-size: 0.85rem;
            }
            .banner-stats-row {
                gap: 10px;
            }
            .banner-stat-num {
                font-size: 1.25rem;
            }
            .banner-stat-label {
                font-size: 0.7rem;
            }
            .channel-pill {
                padding: 6px 10px;
                font-size: 0.75rem;
                gap: 3px;
            }
            .live-match-card-thumb {
                height: 150px;
            }
            .live-match-teams {
                font-size: 0.9rem;
            }
            .live-match-score {
                font-size: 1.3rem;
            }
            .category-card-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .highlight-featured {
                min-height: 200px;
            }
            .highlight-featured-overlay {
                padding: 16px;
            }
            .highlight-featured-overlay h4 {
                font-size: 1rem;
            }
            .cta-section {
                padding: 24px 16px;
            }
            .cta-section h3 {
                font-size: 1.1rem;
            }
            .btn-cta-large {
                padding: 10px 22px;
                font-size: 0.88rem;
            }
            .live-match-card-body {
                padding: 12px;
            }
            .btn-watch-live {
                padding: 8px 16px;
                font-size: 0.82rem;
            }
        }

/* roulang page: article */
:root {
            --primary: #e63946;
            --primary-dark: #c1121f;
            --primary-light: #ff6b6b;
            --secondary: #1d3557;
            --secondary-light: #2a4a7f;
            --accent: #f4a261;
            --accent-warm: #e76f51;
            --bg: #f5f6f8;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --text: #1a1a2e;
            --text-strong: #0d0d1a;
            --text-muted: #6c757d;
            --text-light: #adb5bd;
            --border: #dee2e6;
            --border-light: #e9ecef;
            --radius-xs: 6px;
            --radius-sm: 10px;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --shadow-xl: 0 12px 40px rgba(0,0,0,0.16);
            --transition-fast: 0.18s ease;
            --transition: 0.25s ease;
            --transition-slow: 0.35s ease;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input {
            font-family: inherit;
        }
        ul, ol {
            padding-left: 0;
            list-style: none;
        }

        .container-site {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        @media (min-width: 1400px) {
            .container-site {
                max-width: 1280px;
            }
        }
        @media (max-width: 768px) {
            .container-site {
                padding: 0 16px;
            }
        }

        /* ========== Header / 双层导航 ========== */
        .site-header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-xs);
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 20px;
        }
        .brand-logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--secondary);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }
        .brand-logo-link:hover {
            color: var(--primary);
        }
        .brand-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.15rem;
            flex-shrink: 0;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .header-search {
            position: relative;
        }
        .header-search input {
            border: 2px solid var(--border);
            border-radius: 50px;
            padding: 9px 40px 9px 18px;
            font-size: 0.9rem;
            width: 220px;
            outline: none;
            transition: all var(--transition-fast);
            background: var(--bg);
        }
        .header-search input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(230,57,70,0.08);
            background: #fff;
            width: 260px;
        }
        .header-search button {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            border: none;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 0.85rem;
            transition: background var(--transition-fast);
        }
        .header-search button:hover {
            background: var(--primary-dark);
        }
        .btn-cta-sm {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 9px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            white-space: nowrap;
            transition: all var(--transition-fast);
        }
        .btn-cta-sm:hover {
            background: var(--primary-dark);
            color: #fff;
            box-shadow: var(--shadow);
            transform: translateY(-1px);
        }
        .header-channel-row {
            border-top: 1px solid var(--border-light);
            padding: 8px 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .header-channel-row::-webkit-scrollbar {
            display: none;
        }
        .channel-pills {
            display: flex;
            gap: 6px;
            flex-wrap: nowrap;
            white-space: nowrap;
            padding: 2px 0;
        }
        .channel-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-muted);
            background: transparent;
            transition: all var(--transition-fast);
            position: relative;
            cursor: pointer;
            flex-shrink: 0;
        }
        .channel-pill:hover {
            color: var(--text);
            background: var(--bg);
        }
        .channel-pill.active {
            color: #fff;
            background: var(--primary);
            box-shadow: 0 4px 14px rgba(230,57,70,0.35);
        }
        .channel-pill.active:hover {
            color: #fff;
            background: var(--primary-dark);
        }
        .pill-badge {
            font-size: 0.7rem;
            background: #fff;
            color: var(--primary);
            padding: 2px 7px;
            border-radius: 50px;
            font-weight: 700;
            line-height: 1;
            animation: pulse-badge 1.8s infinite;
        }
        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.12); }
        }

        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--text);
            cursor: pointer;
            padding: 4px 8px;
        }
        @media (max-width: 768px) {
            .header-search input {
                width: 150px;
            }
            .header-search input:focus {
                width: 180px;
            }
            .btn-cta-sm {
                padding: 8px 14px;
                font-size: 0.82rem;
            }
            .brand-logo-link {
                font-size: 1.15rem;
            }
            .brand-logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .channel-pill {
                padding: 8px 14px;
                font-size: 0.82rem;
                gap: 4px;
            }
        }
        @media (max-width: 520px) {
            .header-search {
                display: none;
            }
            .btn-cta-sm {
                font-size: 0.78rem;
                padding: 7px 12px;
            }
            .brand-logo-link {
                font-size: 1rem;
            }
            .brand-logo-icon {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
            .channel-pill {
                padding: 7px 12px;
                font-size: 0.78rem;
            }
        }

        /* ========== 面包屑 ========== */
        .breadcrumb-bar {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            padding: 11px 0;
        }
        .breadcrumb-inner {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.88rem;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .breadcrumb-inner a {
            color: var(--text-muted);
        }
        .breadcrumb-inner a:hover {
            color: var(--primary);
        }
        .breadcrumb-sep {
            color: var(--text-light);
            font-size: 0.7rem;
        }
        .breadcrumb-current {
            color: var(--text);
            font-weight: 600;
            max-width: 300px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* ========== 文章主体布局 ========== */
        .article-main {
            padding: 40px 0 60px;
        }
        .article-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 36px;
            align-items: start;
        }
        @media (max-width: 1024px) {
            .article-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }

        /* ========== 文章内容区 ========== */
        .article-primary {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }
        .article-cover-wrap {
            position: relative;
            overflow: hidden;
            background: #1a1a2e;
            max-height: 480px;
        }
        .article-cover-wrap img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .article-cover-wrap:hover img {
            transform: scale(1.02);
        }
        .article-cover-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
            pointer-events: none;
        }
        .article-body {
            padding: 32px 36px 40px;
        }
        @media (max-width: 768px) {
            .article-body {
                padding: 22px 18px 30px;
            }
            .article-cover-wrap {
                max-height: 280px;
            }
            .article-cover-wrap img {
                max-height: 280px;
            }
        }

        .article-meta-top {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }
        .article-cat-tag {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .article-hot-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: #fff3cd;
            color: #b45309;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 700;
            animation: glow-pulse 2s infinite;
        }
        @keyframes glow-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(244,162,97,0.4); }
            50% { box-shadow: 0 0 0 8px rgba(244,162,97,0); }
        }
        .article-date {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .article-views {
            color: var(--text-muted);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .article-title-h1 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-strong);
            line-height: 1.35;
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }
        @media (max-width: 768px) {
            .article-title-h1 {
                font-size: 1.45rem;
            }
        }
        @media (max-width: 520px) {
            .article-title-h1 {
                font-size: 1.25rem;
            }
        }

        .article-content {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--text);
        }
        .article-content p {
            margin-bottom: 1.2em;
        }
        .article-content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 1.8em 0 0.8em;
            color: var(--text-strong);
            border-left: 4px solid var(--primary);
            padding-left: 14px;
        }
        .article-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 1.5em 0 0.7em;
            color: var(--text-strong);
        }
        .article-content img {
            border-radius: var(--radius);
            margin: 1.2em 0;
            max-width: 100%;
        }
        .article-content blockquote {
            border-left: 4px solid var(--accent);
            background: #fefdf7;
            padding: 16px 20px;
            margin: 1.4em 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            color: #5c4a1f;
            font-style: italic;
        }
        .article-content ul, .article-content ol {
            padding-left: 1.5em;
            margin-bottom: 1.2em;
        }
        .article-content ul {
            list-style: disc;
        }
        .article-content ol {
            list-style: decimal;
        }
        .article-content li {
            margin-bottom: 0.5em;
        }
        .article-content a {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .article-content a:hover {
            color: var(--primary-dark);
        }
        @media (max-width: 768px) {
            .article-content {
                font-size: 0.98rem;
                line-height: 1.8;
            }
            .article-content h2 {
                font-size: 1.3rem;
            }
            .article-content h3 {
                font-size: 1.1rem;
            }
        }

        .article-divider {
            border: none;
            border-top: 2px dashed var(--border-light);
            margin: 32px 0;
        }

        /* 分享操作条 */
        .article-share-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .share-label {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--border);
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-fast);
            font-size: 1rem;
            color: var(--text-muted);
        }
        .share-btn:hover {
            border-color: var(--primary);
            color: #fff;
            background: var(--primary);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }

        /* ========== 侧边栏 ========== */
        .article-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: sticky;
            top: 100px;
        }
        @media (max-width: 1024px) {
            .article-sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 600px) {
            .article-sidebar {
                grid-template-columns: 1fr;
            }
        }
        .sidebar-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 22px 20px;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border-light);
        }
        .sidebar-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card h4 i {
            color: var(--primary);
        }
        .sidebar-post-item {
            display: flex;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .sidebar-post-item:last-child {
            border-bottom: none;
        }
        .sidebar-post-item:hover {
            background: #fafbfc;
            margin: 0 -8px;
            padding-left: 8px;
            padding-right: 8px;
            border-radius: var(--radius-xs);
        }
        .sidebar-post-thumb {
            width: 72px;
            height: 54px;
            border-radius: var(--radius-xs);
            object-fit: cover;
            flex-shrink: 0;
            background: #e9ecef;
        }
        .sidebar-post-info {
            flex: 1;
            min-width: 0;
        }
        .sidebar-post-title {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 4px;
        }
        .sidebar-post-title:hover {
            color: var(--primary);
        }
        .sidebar-post-date {
            font-size: 0.75rem;
            color: var(--text-light);
        }

        /* ========== 相关推荐区域 ========== */
        .related-section {
            padding: 40px 0 60px;
            background: var(--bg-white);
            border-top: 1px solid var(--border-light);
            margin-top: 20px;
        }
        .related-section .section-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-strong);
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-section .section-title i {
            color: var(--primary);
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media (max-width: 900px) {
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 560px) {
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        .related-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .related-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: transparent;
        }
        .related-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: #e9ecef;
        }
        .related-card-body {
            padding: 16px 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .related-card-cat {
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 8px;
        }
        .related-card-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-strong);
            line-height: 1.4;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .related-card-title:hover {
            color: var(--primary);
        }
        .related-card-date {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-top: 10px;
        }

        /* ========== CTA区域 ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary), #0f2340);
            color: #fff;
            padding: 50px 0;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .cta-section p {
            color: rgba(255,255,255,0.75);
            margin-bottom: 24px;
            font-size: 1rem;
        }
        .btn-cta-lg {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn-cta-lg:hover {
            background: #fff;
            color: var(--primary);
            box-shadow: 0 8px 30px rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .cta-section h2 {
                font-size: 1.4rem;
            }
            .cta-section p {
                font-size: 0.9rem;
            }
        }

        /* ========== 内容未找到状态 ========== */
        .not-found-state {
            text-align: center;
            padding: 80px 20px;
        }
        .not-found-icon {
            font-size: 4rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }
        .not-found-state h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 10px;
        }
        .not-found-state p {
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        .btn-back-home {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 11px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all var(--transition);
        }
        .btn-back-home:hover {
            background: var(--primary-dark);
            color: #fff;
            box-shadow: var(--shadow);
        }

        /* ========== 浮动操作条(移动端) ========== */
        .floating-actions {
            display: none;
        }
        @media (max-width: 768px) {
            .floating-actions {
                display: flex;
                position: fixed;
                bottom: 16px;
                left: 50%;
                transform: translateX(-50%);
                background: #fff;
                border-radius: 50px;
                box-shadow: var(--shadow-xl);
                padding: 8px 16px;
                gap: 6px;
                z-index: 999;
                border: 1px solid var(--border-light);
            }
            .floating-actions button {
                width: 38px;
                height: 38px;
                border-radius: 50%;
                border: none;
                background: var(--bg);
                color: var(--text);
                font-size: 0.95rem;
                cursor: pointer;
                transition: all var(--transition-fast);
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .floating-actions button:hover {
                background: var(--primary);
                color: #fff;
            }
            .floating-actions .float-btn-primary {
                background: var(--primary);
                color: #fff;
                font-weight: 700;
                width: auto;
                padding: 0 20px;
                border-radius: 50px;
                font-size: 0.85rem;
                gap: 6px;
            }
        }

        /* ========== Footer ========== */
        .site-footer {
            background: #0d1a2d;
            color: #c0c8d4;
            padding: 50px 0 24px;
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-brand-name {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            color: #8899aa;
            line-height: 1.6;
            font-size: 0.85rem;
        }
        .footer-col h5 {
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 7px;
        }
        .footer-col ul li a {
            color: #8899aa;
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            color: #667788;
            font-size: 0.8rem;
        }

/* roulang page: category2 */
/* ========== 设计变量 ========== */
        :root {
            --color-primary: #e63946;
            --color-primary-dark: #c1121f;
            --color-primary-light: #ff6b6b;
            --color-secondary: #1d3557;
            --color-secondary-light: #2a4a7f;
            --color-accent: #f4a261;
            --color-accent-warm: #e76f51;
            --color-bg: #f8f9fa;
            --color-bg-white: #ffffff;
            --color-bg-dark: #0d1b2a;
            --color-bg-darker: #070f18;
            --color-bg-card: #ffffff;
            --color-bg-muted: #f1f3f5;
            --color-text: #1a1a2e;
            --color-text-secondary: #4a5568;
            --color-text-muted: #718096;
            --color-text-light: #a0aec0;
            --color-text-on-dark: #e2e8f0;
            --color-border: #e2e8f0;
            --color-border-light: #edf2f7;
            --color-success: #38a169;
            --color-warning: #dd6b20;
            --color-info: #3182ce;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 50px;
            --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 36px rgba(0,0,0,0.10);
            --shadow-xl: 0 20px 50px rgba(0,0,0,0.14);
            --shadow-card-hover: 0 14px 38px rgba(0,0,0,0.12);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --max-width: 1240px;
            --header-height: 140px;
            --nav-main-height: 64px;
            --nav-channel-height: 52px;
        }

        /* ========== Reset & Base ========== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            overflow-x: hidden;
            min-height: 100vh;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        
        a:hover {
            color: var(--color-primary);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
        }
        
        ul, ol {
            list-style: none;
        }
        
        .container-site {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ========== Header / Navigation ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: var(--color-bg-white);
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition-base);
        }
        
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }
        
        .nav-main-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-main-height);
            padding: 0 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--color-secondary);
            white-space: nowrap;
            letter-spacing: -0.01em;
            transition: color var(--transition-fast);
        }
        
        .brand-logo:hover {
            color: var(--color-primary);
        }
        
        .brand-logo .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent-warm));
            color: #fff;
            border-radius: var(--radius-sm);
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        
        .btn-search {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 18px;
            background: var(--color-bg-muted);
            border: 1px solid var(--color-border-light);
            border-radius: var(--radius-full);
            color: var(--color-text-muted);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        
        .btn-search:hover {
            background: #fff;
            border-color: var(--color-primary);
            color: var(--color-primary);
            box-shadow: var(--shadow-xs);
        }
        
        .btn-search i {
            font-size: 0.85rem;
        }
        
        .btn-subscribe {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 20px;
            background: var(--color-primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        
        .btn-subscribe:hover {
            background: var(--color-primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(230, 57, 70, 0.35);
        }
        
        .btn-subscribe:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(230, 57, 70, 0.3);
        }
        
        /* 频道导航行 */
        .nav-channel-row {
            background: var(--color-bg-white);
            border-top: 1px solid var(--color-border-light);
            padding: 0 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        
        .nav-channel-row::-webkit-scrollbar {
            display: none;
        }
        
        .channel-pills {
            display: flex;
            align-items: center;
            gap: 6px;
            max-width: var(--max-width);
            margin: 0 auto;
            height: var(--nav-channel-height);
            padding: 4px 0;
            flex-wrap: nowrap;
            white-space: nowrap;
        }
        
        .channel-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            background: transparent;
            transition: all var(--transition-fast);
            cursor: pointer;
            white-space: nowrap;
            flex-shrink: 0;
            position: relative;
            letter-spacing: 0.01em;
            border: 1.5px solid transparent;
        }
        
        .channel-pill:hover {
            background: var(--color-bg-muted);
            color: var(--color-text);
            border-color: var(--color-border-light);
        }
        
        .channel-pill.active {
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            border-color: var(--color-primary);
            box-shadow: 0 3px 12px rgba(230, 57, 70, 0.3);
        }
        
        .channel-pill i {
            font-size: 0.85rem;
        }
        
        .pill-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 20px;
            background: #ff4757;
            color: #fff;
            line-height: 1;
            animation: badgePulse 2s ease-in-out infinite;
        }
        
        .channel-pill.active .pill-badge {
            background: rgba(255,255,255,0.35);
            color: #fff;
        }
        
        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.12); }
        }
        
        /* 移动端导航 */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--color-text);
            cursor: pointer;
            padding: 6px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }
        
        .mobile-menu-toggle:hover {
            background: var(--color-bg-muted);
        }
        
        /* ========== Page Banner ========== */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2d45 40%, #162539 100%);
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 280px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, 
                rgba(13, 27, 42, 0.72) 0%, 
                rgba(13, 27, 42, 0.8) 40%, 
                rgba(13, 27, 42, 0.88) 100%);
            z-index: 1;
        }
        
        .page-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent-warm), var(--color-primary-light));
            z-index: 2;
        }
        
        .banner-content {
            position: relative;
            z-index: 3;
            padding: 50px 0;
            width: 100%;
        }
        
        .banner-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 16px;
        }
        
        .banner-breadcrumb a {
            color: rgba(255,255,255,0.8);
            transition: color var(--transition-fast);
        }
        
        .banner-breadcrumb a:hover {
            color: #fff;
        }
        
        .banner-breadcrumb .separator {
            color: rgba(255,255,255,0.4);
            font-size: 0.7rem;
        }
        
        .banner-title {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 12px 0;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        
        .banner-desc {
            font-size: 1.08rem;
            color: rgba(255,255,255,0.78);
            max-width: 600px;
            line-height: 1.6;
            margin: 0;
        }
        
        .banner-stats {
            display: flex;
            gap: 28px;
            margin-top: 20px;
        }
        
        .banner-stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.85);
            font-size: 0.9rem;
        }
        
        .banner-stat-item i {
            color: var(--color-primary-light);
            font-size: 0.85rem;
        }
        
        .banner-stat-item strong {
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
        }
        
        /* ========== 分类标签行 ========== */
        .category-filter-bar {
            background: var(--color-bg-white);
            border-bottom: 1px solid var(--color-border-light);
            padding: 0 20px;
            position: sticky;
            top: var(--header-height);
            z-index: 1040;
            transition: box-shadow var(--transition-base);
        }
        
        .category-filter-bar.scrolled {
            box-shadow: var(--shadow-sm);
        }
        
        .filter-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 4px;
            height: 48px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        
        .filter-inner::-webkit-scrollbar {
            display: none;
        }
        
        .filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 16px;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            background: transparent;
            border: 1.5px solid transparent;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .filter-tag:hover {
            background: var(--color-bg-muted);
            color: var(--color-text);
            border-color: var(--color-border);
        }
        
        .filter-tag.active-filter {
            background: var(--color-secondary);
            color: #fff;
            font-weight: 600;
            border-color: var(--color-secondary);
        }
        
        .filter-count {
            font-size: 0.72rem;
            background: rgba(0,0,0,0.08);
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 600;
        }
        
        .filter-tag.active-filter .filter-count {
            background: rgba(255,255,255,0.25);
        }
        
        /* ========== Main Content ========== */
        .main-content {
            padding: 36px 0 60px;
        }
        
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 32px;
        }
        
        /* 头条资讯卡片 */
        .headline-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            min-height: 320px;
            cursor: pointer;
            border: 1px solid var(--color-border-light);
            position: relative;
        }
        
        .headline-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        
        .headline-card .card-image-wrap {
            position: relative;
            overflow: hidden;
            min-height: 320px;
        }
        
        .headline-card .card-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        
        .headline-card:hover .card-image-wrap img {
            transform: scale(1.04);
        }
        
        .headline-card .card-image-wrap .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.35));
        }
        
        .headline-card .card-tag-float {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 14px;
            background: var(--color-primary);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            border-radius: var(--radius-full);
            letter-spacing: 0.02em;
            box-shadow: 0 3px 10px rgba(230, 57, 70, 0.4);
        }
        
        .headline-card .card-body-wrap {
            padding: 28px 28px 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .headline-card .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-bottom: 12px;
        }
        
        .headline-card .card-cat {
            color: var(--color-primary);
            font-weight: 600;
        }
        
        .headline-card .card-title-link {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--color-text);
            line-height: 1.35;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color var(--transition-fast);
            letter-spacing: -0.01em;
        }
        
        .headline-card:hover .card-title-link {
            color: var(--color-primary);
        }
        
        .headline-card .card-summary {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 16px;
        }
        
        .headline-card .card-footer-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }
        
        .headline-card .card-footer-meta i {
            font-size: 0.75rem;
        }
        
        /* 资讯卡片网格 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 24px;
        }
        
        .news-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        
        .news-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--color-border);
        }
        
        .news-card .nc-image {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }
        
        .news-card .nc-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        
        .news-card:hover .nc-image img {
            transform: scale(1.05);
        }
        
        .news-card .nc-image .nc-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
            padding: 4px 11px;
            border-radius: var(--radius-full);
            font-size: 0.72rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.02em;
        }
        
        .tag-deep { background: #6c5ce7; }
        .tag-news { background: #0984e3; }
        .tag-hot { background: #e17055; }
        .tag-topic { background: #00b894; }
        .tag-exclusive { background: #fdcb6e; color: #1a1a2e !important; }
        
        .news-card .nc-body {
            padding: 16px 18px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-card .nc-category {
            font-size: 0.75rem;
            color: var(--color-primary);
            font-weight: 600;
            margin-bottom: 6px;
        }
        
        .news-card .nc-title {
            font-family: var(--font-heading);
            font-size: 1.02rem;
            font-weight: 700;
            color: var(--color-text);
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color var(--transition-fast);
            letter-spacing: -0.01em;
        }
        
        .news-card:hover .nc-title {
            color: var(--color-primary);
        }
        
        .news-card .nc-summary {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
            margin-bottom: 12px;
        }
        
        .news-card .nc-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.76rem;
            color: var(--color-text-light);
            padding-top: 10px;
            border-top: 1px solid var(--color-border-light);
        }
        
        /* 加载更多按钮 */
        .load-more-wrap {
            text-align: center;
            margin-top: 32px;
        }
        
        .btn-load-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 36px;
            background: var(--color-bg-white);
            color: var(--color-text);
            border: 2px solid var(--color-border);
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        
        .btn-load-more:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            background: #fff5f5;
            box-shadow: var(--shadow-sm);
        }
        
        .btn-load-more i {
            transition: transform var(--transition-base);
        }
        
        .btn-load-more:hover i {
            transform: translateY(2px);
        }
        
        /* ========== 侧边栏 ========== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .sidebar-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-md);
            padding: 22px;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--color-border-light);
        }
        
        .sidebar-card .sidebar-title {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--color-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: -0.01em;
        }
        
        .sidebar-card .sidebar-title i {
            color: var(--color-primary);
            font-size: 0.9rem;
        }
        
        /* 热门排行 */
        .hot-list {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .hot-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 11px 10px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            cursor: pointer;
            border: 1px solid transparent;
        }
        
        .hot-item:hover {
            background: var(--color-bg-muted);
            border-color: var(--color-border-light);
        }
        
        .hot-rank {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.82rem;
            flex-shrink: 0;
            color: #fff;
            background: var(--color-text-muted);
        }
        
        .hot-item:nth-child(1) .hot-rank { background: #e63946; }
        .hot-item:nth-child(2) .hot-rank { background: #e76f51; }
        .hot-item:nth-child(3) .hot-rank { background: #f4a261; }
        .hot-item:nth-child(4) .hot-rank { background: #6c5ce7; }
        .hot-item:nth-child(5) .hot-rank { background: #0984e3; }
        
        .hot-info {
            flex: 1;
            min-width: 0;
        }
        
        .hot-info .hot-title {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--color-text);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color var(--transition-fast);
        }
        
        .hot-item:hover .hot-title {
            color: var(--color-primary);
        }
        
        .hot-info .hot-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.74rem;
            color: var(--color-text-muted);
            margin-top: 4px;
        }
        
        .trend-up { color: #e63946; }
        .trend-hot { color: #e76f51; }
        .trend-stable { color: #718096; }
        .trend-new { color: #38a169; }
        
        /* 订阅卡片 */
        .subscribe-card {
            background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
            color: #fff;
            border: none;
            border-radius: var(--radius-lg);
        }
        
        .subscribe-card .sidebar-title {
            color: #fff;
            border-bottom-color: rgba(255,255,255,0.3);
        }
        
        .subscribe-card .sidebar-title i {
            color: var(--color-accent);
        }
        
        .subscribe-card p {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
            margin-bottom: 14px;
        }
        
        .subscribe-input-group {
            display: flex;
            gap: 0;
            border-radius: var(--radius-full);
            overflow: hidden;
            border: 2px solid rgba(255,255,255,0.25);
            transition: border-color var(--transition-fast);
        }
        
        .subscribe-input-group:focus-within {
            border-color: rgba(255,255,255,0.6);
        }
        
        .subscribe-input-group input {
            flex: 1;
            padding: 11px 16px;
            border: none;
            background: rgba(255,255,255,0.12);
            color: #fff;
            font-size: 0.88rem;
            outline: none;
            min-width: 0;
        }
        
        .subscribe-input-group input::placeholder {
            color: rgba(255,255,255,0.5);
        }
        
        .subscribe-input-group button {
            padding: 11px 18px;
            background: var(--color-accent-warm);
            color: #fff;
            border: none;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        
        .subscribe-input-group button:hover {
            background: #d45d3f;
        }
        
        /* ========== 深度专题区 ========== */
        .section-block {
            margin-top: 48px;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 22px;
        }
        
        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 1.45rem;
            font-weight: 700;
            color: var(--color-text);
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.01em;
            margin: 0;
        }
        
        .section-header h2::before {
            content: '';
            display: block;
            width: 4px;
            height: 26px;
            background: var(--color-primary);
            border-radius: 2px;
        }
        
        .section-header .section-more {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color var(--transition-fast);
            font-weight: 500;
        }
        
        .section-header .section-more:hover {
            color: var(--color-primary);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .feature-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            cursor: pointer;
            position: relative;
        }
        
        .feature-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        
        .feature-card .fc-image {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            position: relative;
        }
        
        .feature-card .fc-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        
        .feature-card:hover .fc-image img {
            transform: scale(1.06);
        }
        
        .feature-card .fc-image .fc-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            pointer-events: none;
        }
        
        .feature-card .fc-body {
            padding: 16px 18px 18px;
        }
        
        .feature-card .fc-label {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(230, 57, 70, 0.1);
            color: var(--color-primary);
            font-size: 0.72rem;
            font-weight: 700;
            border-radius: var(--radius-full);
            margin-bottom: 8px;
        }
        
        .feature-card .fc-title {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color var(--transition-fast);
            letter-spacing: -0.01em;
        }
        
        .feature-card:hover .fc-title {
            color: var(--color-primary);
        }
        
        /* ========== CTA区 ========== */
        .cta-section {
            margin-top: 56px;
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 40%, #fef5f5 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            border: 1px solid var(--color-border-light);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 180px;
            height: 180px;
            background: rgba(230, 57, 70, 0.04);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 130px;
            height: 130px;
            background: rgba(244, 162, 97, 0.06);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .cta-section h3 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
            letter-spacing: -0.01em;
        }
        
        .cta-section p {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .btn-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--color-primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            letter-spacing: 0.02em;
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
        }
        
        .btn-cta-primary:hover {
            background: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(230, 57, 70, 0.4);
            color: #fff;
        }
        
        .btn-cta-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: #fff;
            color: var(--color-text);
            border: 2px solid var(--color-border);
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            letter-spacing: 0.02em;
        }
        
        .btn-cta-outline:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            background: #fff5f5;
        }
        
        /* ========== Footer ========== */
        .site-footer {
            background: var(--color-bg-dark);
            color: var(--color-text-on-dark);
            padding: 52px 0 0;
            margin-top: 56px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 36px;
            padding-bottom: 36px;
        }
        
        .footer-brand-name {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        
        .footer-desc {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
        }
        
        .footer-col h5 {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.01em;
        }
        
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 9px;
        }
        
        .footer-col ul li a {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            transition: all var(--transition-fast);
        }
        
        .footer-col ul li a:hover {
            color: #fff;
            padding-left: 4px;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.82rem;
            color: rgba(255,255,255,0.45);
        }
        
        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .banner-title {
                font-size: 2rem;
            }
            
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .headline-card {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --header-height: 120px;
                --nav-main-height: 56px;
                --nav-channel-height: 44px;
            }
            
            .nav-actions .btn-search span {
                display: none;
            }
            
            .btn-search {
                padding: 9px 12px;
            }
            
            .btn-subscribe {
                padding: 8px 14px;
                font-size: 0.82rem;
            }
            
            .brand-logo {
                font-size: 1.15rem;
            }
            
            .brand-logo .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 0.95rem;
            }
            
            .channel-pill {
                padding: 6px 14px;
                font-size: 0.82rem;
            }
            
            .page-banner {
                min-height: 200px;
            }
            
            .banner-title {
                font-size: 1.6rem;
            }
            
            .banner-desc {
                font-size: 0.9rem;
            }
            
            .banner-stats {
                gap: 16px;
                flex-wrap: wrap;
            }
            
            .headline-card {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            
            .headline-card .card-image-wrap {
                aspect-ratio: 16 / 9;
                min-height: auto;
            }
            
            .headline-card .card-body-wrap {
                padding: 18px;
            }
            
            .headline-card .card-title-link {
                font-size: 1.15rem;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            
            .sidebar {
                grid-template-columns: 1fr;
            }
            
            .content-layout {
                gap: 20px;
            }
            
            .cta-section {
                padding: 32px 20px;
            }
            
            .cta-section h3 {
                font-size: 1.3rem;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            
            .section-header h2 {
                font-size: 1.2rem;
            }
            
            .category-filter-bar {
                top: var(--header-height);
            }
            
            .filter-tag {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 520px) {
            :root {
                --header-height: 108px;
                --nav-main-height: 50px;
                --nav-channel-height: 40px;
            }
            
            .container-site {
                padding: 0 14px;
            }
            
            .nav-main-row {
                padding: 0 14px;
            }
            
            .nav-channel-row {
                padding: 0 10px;
            }
            
            .channel-pill {
                padding: 5px 10px;
                font-size: 0.78rem;
                gap: 4px;
            }
            
            .btn-subscribe {
                padding: 7px 12px;
                font-size: 0.78rem;
            }
            
            .brand-logo {
                font-size: 1rem;
            }
            
            .brand-logo .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }
            
            .page-banner {
                min-height: 170px;
            }
            
            .banner-content {
                padding: 30px 0;
            }
            
            .banner-title {
                font-size: 1.35rem;
            }
            
            .banner-desc {
                font-size: 0.82rem;
            }
            
            .headline-card .card-title-link {
                font-size: 1rem;
            }
            
            .news-card .nc-title {
                font-size: 0.9rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-cta-primary,
            .btn-cta-outline {
                width: 100%;
                justify-content: center;
            }
            
            .banner-stats {
                gap: 10px;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .filter-inner {
                height: 40px;
            }
            
            .filter-tag {
                padding: 5px 10px;
                font-size: 0.76rem;
            }
        }
        
        /* ========== 动画 ========== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate-in {
            animation: fadeInUp 0.5s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.05s; }
        .delay-2 { animation-delay: 0.12s; }
        .delay-3 { animation-delay: 0.19s; }
        .delay-4 { animation-delay: 0.26s; }
        
        /* ========== 焦点可见性 ========== */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2.5px solid var(--color-primary);
            outline-offset: 3px;
            border-radius: 4px;
        }
        
        .channel-pill:focus-visible,
        .filter-tag:focus-visible {
            outline-offset: 2px;
            border-radius: var(--radius-full);
        }

/* roulang page: category3 */
/* ============ 设计变量 ============ */
        :root {
            --primary: #e63917;
            --primary-dark: #c22d0f;
            --primary-light: #ff5c3a;
            --secondary: #1a1f2e;
            --secondary-light: #252b3d;
            --accent: #f0a500;
            --accent-light: #ffc940;
            --bg-page: #f0f2f5;
            --bg-dark: #0d1117;
            --bg-card: #ffffff;
            --bg-elevated: #f8f9fb;
            --text-primary: #1a1f2e;
            --text-secondary: #4a5060;
            --text-muted: #7b8290;
            --text-inverse: #ffffff;
            --border-light: #e2e5ea;
            --border-medium: #d1d5db;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
            --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);
            --shadow-xl: 0 20px 48px rgba(0,0,0,0.14), 0 8px 16px rgba(0,0,0,0.06);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --radius-full: 50%;
            --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --nav-height-top: 60px;
            --nav-height-channel: 52px;
            --container-max: 1260px;
        }

        /* ============ 基础 Reset ============ */
        *, *::before, *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.65;
            color: var(--text-primary);
            background-color: var(--bg-page);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input {
            font-family: inherit;
        }
        ul, ol {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        h1, h2, h3, h4, h5, h6 {
            margin: 0;
            line-height: 1.25;
            font-weight: 700;
            color: var(--text-primary);
        }
        p {
            margin: 0;
        }

        /* ============ 容器 ============ */
        .container-site {
            width: 100%;
            max-width: var(--container-max);
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        @media (max-width: 768px) {
            .container-site {
                padding-left: 14px;
                padding-right: 14px;
            }
        }

        /* ============ Header / 顶部导航栏 ============ */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: var(--shadow-sm);
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height-top);
            gap: 16px;
        }
        .brand-logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--secondary);
            white-space: nowrap;
            flex-shrink: 0;
            transition: color var(--transition-fast);
        }
        .brand-logo-link:hover {
            color: var(--primary);
        }
        .brand-logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .header-search-wrap {
            flex: 1;
            max-width: 380px;
            position: relative;
        }
        .header-search-input {
            width: 100%;
            padding: 10px 44px 10px 18px;
            border: 2px solid var(--border-light);
            border-radius: 50px;
            font-size: 0.95rem;
            background: var(--bg-elevated);
            color: var(--text-primary);
            transition: all var(--transition-smooth);
            outline: none;
        }
        .header-search-input:focus {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(230,57,23,0.08);
        }
        .header-search-input::placeholder {
            color: var(--text-muted);
        }
        .header-search-btn {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            color: #fff;
            border: none;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header-search-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-50%) scale(1.05);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .btn-header-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 22px;
            background: var(--primary);
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-header-cta:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-md);
            color: #fff;
            transform: translateY(-1px);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            cursor: pointer;
            padding: 6px;
            line-height: 1;
        }

        /* ============ 频道 Pills 导航（第二行） ============ */
        .channel-nav {
            border-top: 1px solid var(--border-light);
            background: #fafbfc;
        }
        .channel-pills {
            display: flex;
            align-items: center;
            gap: 6px;
            height: var(--nav-height-channel);
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 4px;
        }
        .channel-pills::-webkit-scrollbar {
            display: none;
        }
        .channel-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-secondary);
            background: transparent;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            border: 2px solid transparent;
            cursor: pointer;
            flex-shrink: 0;
            position: relative;
        }
        .channel-pill:hover {
            color: var(--primary);
            background: rgba(230,57,23,0.04);
        }
        .channel-pill.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 2px 10px rgba(230,57,23,0.3);
        }
        .channel-pill.active:hover {
            background: var(--primary-dark);
            color: #fff;
        }
        .pill-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            background: #ff3b30;
            color: #fff;
            border-radius: 50px;
            padding: 2px 8px;
            line-height: 1;
            animation: pulseBadge 2s ease-in-out infinite;
        }
        @keyframes pulseBadge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.12); }
        }

        /* ============ 分类 Hero Banner ============ */
        .category-hero {
            position: relative;
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 70px 0 60px;
            min-height: 360px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13,17,23,0.82) 0%, rgba(26,31,46,0.7) 40%, rgba(230,57,23,0.35) 100%);
            z-index: 1;
        }
        .category-hero .container-site {
            position: relative;
            z-index: 2;
        }
        .hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.75);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .hero-breadcrumb a {
            color: rgba(255,255,255,0.85);
            transition: color var(--transition-fast);
        }
        .hero-breadcrumb a:hover {
            color: #fff;
        }
        .hero-breadcrumb .sep {
            color: rgba(255,255,255,0.5);
        }
        .hero-breadcrumb .current {
            color: #ffb8a8;
        }
        .category-hero-title {
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .category-hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 20px;
            max-width: 600px;
            line-height: 1.6;
        }
        .hero-stat-row {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-top: 8px;
        }
        .hero-stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
        }
        .hero-stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-light);
            line-height: 1;
        }
        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.3;
        }

        /* ============ 板块通用 ============ */
        .section-block {
            padding: 56px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--primary);
            background: rgba(230,57,23,0.08);
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .section-desc {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
        }

        /* ============ 数据亮点卡片 ============ */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: transparent;
        }
        .stat-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 0 0 4px 4px;
            transition: width var(--transition-smooth);
        }
        .stat-card:hover::after {
            width: 90px;
        }
        .stat-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 1.4rem;
        }
        .stat-icon-blue { background: #e8f0fe; color: #1a73e8; }
        .stat-icon-green { background: #e6f4ea; color: #137333; }
        .stat-icon-orange { background: #fef3e7; color: #e37400; }
        .stat-icon-purple { background: #f0e7fe; color: #7c3aed; }
        .stat-value {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--secondary);
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-value-unit {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-muted);
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ============ 积分榜排行 ============ */
        .ranking-section {
            background: #ffffff;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            border: 1px solid var(--border-light);
        }
        .ranking-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-light);
            background: var(--bg-elevated);
            flex-wrap: wrap;
            gap: 12px;
        }
        .ranking-header-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .ranking-tabs {
            display: flex;
            gap: 4px;
        }
        .ranking-tab {
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-secondary);
            background: transparent;
            border: 1.5px solid transparent;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .ranking-tab.active {
            background: var(--secondary);
            color: #fff;
            border-color: var(--secondary);
        }
        .ranking-tab:hover:not(.active) {
            border-color: var(--border-medium);
            background: #fff;
        }
        .ranking-table-wrap {
            overflow-x: auto;
        }
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        .ranking-table th {
            padding: 14px 16px;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            background: var(--bg-elevated);
            border-bottom: 2px solid var(--border-light);
            text-align: left;
            white-space: nowrap;
        }
        .ranking-table td {
            padding: 14px 16px;
            font-size: 0.92rem;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
            white-space: nowrap;
        }
        .ranking-table tbody tr {
            transition: background var(--transition-fast);
        }
        .ranking-table tbody tr:hover {
            background: rgba(230,57,23,0.03);
        }
        .rank-cell {
            font-weight: 800;
            font-size: 1.1rem;
            width: 50px;
            text-align: center;
        }
        .rank-top { color: var(--primary); }
        .rank-normal { color: var(--text-secondary); }
        .team-cell {
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .trend-up { color: #16a34a; }
        .trend-down { color: #dc2626; }
        .trend-stable { color: #6b7280; }
        .hot-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            background: #fef2f2;
            color: #dc2626;
            padding: 3px 10px;
            border-radius: 50px;
            margin-left: 8px;
        }
        .points-highlight {
            font-weight: 800;
            font-size: 1.05rem;
            color: var(--primary);
        }

        /* ============ 球员数据卡片（瀑布流风格） ============ */
        .player-masonry {
            columns: 3;
            column-gap: 20px;
        }
        .player-card {
            break-inside: avoid;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            margin-bottom: 20px;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .player-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .player-card-img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
        }
        .player-card-body {
            padding: 18px 18px 16px;
        }
        .player-card-tag {
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--primary);
            background: rgba(230,57,23,0.07);
            padding: 4px 10px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 8px;
        }
        .player-card-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 4px;
        }
        .player-card-team {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .player-stats-mini {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .player-stat-mini {
            text-align: center;
            flex: 1;
            min-width: 50px;
        }
        .player-stat-mini-val {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--secondary);
            line-height: 1;
        }
        .player-stat-mini-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ============ 数据更新时间线 ============ */
        .update-timeline {
            position: relative;
            padding-left: 32px;
        }
        .update-timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 4px;
            bottom: 4px;
            width: 3px;
            background: var(--border-medium);
            border-radius: 2px;
        }
        .update-item {
            position: relative;
            padding: 16px 0 16px 20px;
            border-bottom: 1px solid var(--border-light);
        }
        .update-item:last-child {
            border-bottom: none;
        }
        .update-item::before {
            content: '';
            position: absolute;
            left: -28px;
            top: 22px;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 0 0 3px var(--primary-light);
        }
        .update-time {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .update-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .update-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .update-type-badge {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 50px;
            margin-left: 8px;
            background: #e8f0fe;
            color: #1a73e8;
        }

        /* ============ 数据工具卡片 ============ */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .tool-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .tool-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--primary-light);
        }
        .tool-icon-circle {
            width: 60px;
            height: 60px;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.6rem;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            color: #fff;
            transition: transform var(--transition-smooth);
        }
        .tool-card:hover .tool-icon-circle {
            transform: scale(1.08);
        }
        .tool-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .tool-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin-bottom: 14px;
        }
        .btn-tool-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--primary);
            transition: gap var(--transition-fast);
        }
        .btn-tool-link:hover {
            gap: 10px;
            color: var(--primary-dark);
        }

        /* ============ CTA 板块 ============ */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: rgba(230,57,23,0.18);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 140px;
            height: 140px;
            background: rgba(240,165,0,0.15);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section .container-site {
            position: relative;
            z-index: 1;
        }
        .cta-title {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }
        .cta-desc {
            font-size: 1rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--primary);
            color: #fff;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: 0 6px 20px rgba(230,57,23,0.4);
        }
        .btn-cta-primary:hover {
            background: var(--primary-light);
            box-shadow: 0 10px 30px rgba(230,57,23,0.5);
            transform: translateY(-2px);
            color: #fff;
        }

        /* ============ Footer ============ */
        .site-footer {
            background: var(--secondary);
            color: rgba(255,255,255,0.75);
            padding: 48px 0 0;
            margin-top: 56px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-brand-name {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }
        .footer-desc {
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.6);
        }
        .footer-col h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: rgba(255,255,255,0.6);
            font-size: 0.88rem;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-light);
        }
        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.45);
        }

        /* ============ 响应式 ============ */
        @media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .player-masonry { columns: 2; }
            .tools-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .category-hero-title { font-size: 2.2rem; }
        }
        @media (max-width: 768px) {
            .header-top { height: auto; padding: 12px 0; flex-wrap: wrap; gap: 10px; }
            .header-search-wrap { max-width: 100%; order: 3; flex-basis: 100%; }
            .mobile-menu-toggle { display: block; }
            .header-actions { gap: 8px; }
            .btn-header-cta { padding: 8px 14px; font-size: 0.8rem; }
            .channel-pills { gap: 3px; }
            .channel-pill { padding: 6px 12px; font-size: 0.78rem; gap: 4px; }
            .category-hero { padding: 44px 0 36px; min-height: 260px; }
            .category-hero-title { font-size: 1.7rem; }
            .category-hero-subtitle { font-size: 0.95rem; }
            .hero-stat-row { gap: 14px; }
            .hero-stat-num { font-size: 1.5rem; }
            .section-block { padding: 36px 0; }
            .section-title { font-size: 1.5rem; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .stat-card { padding: 20px 14px; }
            .stat-value { font-size: 1.8rem; }
            .player-masonry { columns: 1; }
            .tools-grid { grid-template-columns: 1fr; }
            .cta-section { padding: 32px 20px; border-radius: var(--radius-lg); }
            .cta-title { font-size: 1.5rem; }
            .update-timeline { padding-left: 22px; }
            .update-item { padding: 12px 0 12px 14px; }
            .update-item::before { left: -24px; width: 10px; height: 10px; }
            .ranking-header { padding: 14px 16px; }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .ranking-table-wrap { font-size: 0.82rem; }
        }
        @media (max-width: 520px) {
            .container-site { padding-left: 10px; padding-right: 10px; }
            .brand-logo-link { font-size: 1.1rem; }
            .brand-logo-icon { width: 30px; height: 30px; font-size: 0.9rem; }
            .category-hero-title { font-size: 1.4rem; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
            .stat-card { padding: 14px 10px; border-radius: var(--radius-md); }
            .stat-value { font-size: 1.4rem; }
            .stat-icon-wrap { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 8px; }
            .hero-stat-row { gap: 8px; }
            .hero-stat-num { font-size: 1.2rem; }
            .hero-stat-label { font-size: 0.72rem; }
            .section-title { font-size: 1.3rem; }
            .channel-pill { padding: 5px 10px; font-size: 0.72rem; }
            .btn-cta-primary { padding: 10px 20px; font-size: 0.9rem; }
            .cta-title { font-size: 1.3rem; }
        }
