/* roulang page: index */
:root {
            --primary: #1F3A33;
            --primary-dark: #152824;
            --primary-light: #2C5148;
            --primary-pale: #E8F0ED;
            --accent: #F07B3F;
            --accent-dark: #D85E1F;
            --accent-pale: #FFF3EB;
            --danger: #D93829;
            --bg: #F7F5F0;
            --bg-alt: #F0EEE8;
            --text: #1F3A33;
            --text-light: #F7F5F0;
            --text-muted: #6B7A74;
            --border: #E5E0D8;
            --border-dark: #C9C2B8;
            --gold: #C9A84C;
            --gold-dark: #A88A3A;
            --gold-pale: #F5EED8;
            --shadow: 0 4px 16px rgba(31, 58, 51, 0.08);
            --shadow-hover: 0 8px 28px rgba(31, 58, 51, 0.14);
            --radius: 14px;
            --radius-sm: 10px;
            --radius-lg: 18px;
            --section-gap: 72px;
            --transition: all 0.25s ease;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'HarmonyOS Sans SC', 'Source Han Sans SC', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background-color: var(--bg);
            font-feature-settings: 'tnum' on;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.35;
            color: var(--text);
            margin-bottom: 0.5em;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: 36px;
        }
        h2 {
            font-size: 26px;
        }
        h3 {
            font-size: 20px;
        }
        p {
            margin-bottom: 1em;
            color: var(--text-muted);
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-dark);
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
        }
        button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        section {
            padding-top: var(--section-gap);
            padding-bottom: var(--section-gap);
        }

        section.alt-bg {
            background-color: var(--bg-alt);
        }

        section.dark-bg {
            background-color: var(--primary);
            color: var(--text-light);
        }
        section.dark-bg h2,
        section.dark-bg h3,
        section.dark-bg .section-subtitle {
            color: var(--text-light);
        }
        section.dark-bg p {
            color: rgba(247, 245, 240, 0.8);
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 720px;
        }

        .section-tag {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-dark);
            background: var(--accent-pale);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .section-header {
            margin-bottom: 40px;
        }
        .section-header h2 {
            margin-bottom: 12px;
        }

        /* ========== Header / Nav ========== */
        .site-header {
            background: var(--primary-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .site-header .navbar {
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-weight: 700;
            font-size: 19px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .site-logo:hover {
            color: var(--gold);
        }
        .site-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--gold);
            color: var(--primary-dark);
            border-radius: 8px;
            font-size: 18px;
            flex-shrink: 0;
        }
        .navbar-nav .nav-link {
            color: rgba(247, 245, 240, 0.85);
            font-size: 14.5px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.06);
        }
        .navbar-nav .nav-link.active {
            color: var(--gold);
            background: rgba(201, 168, 76, 0.12);
        }
        .nav-right-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-right-group .btn-nav {
            font-size: 14px;
            padding: 6px 14px;
            border-radius: 8px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            background: transparent;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-right-group .btn-nav:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .nav-right-group .btn-nav.primary {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .nav-right-group .btn-nav.primary:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
        }
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.4);
            color: var(--text-light);
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.3);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(247,245,240,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        @media (max-width: 991.98px) {
            .nav-right-group {
                flex-wrap: wrap;
                margin-top: 8px;
            }
            .navbar-nav {
                padding-bottom: 12px;
            }
            .navbar-nav .nav-link {
                padding: 10px 12px;
                font-size: 15px;
            }
        }

        /* ========== Hero ========== */
        .hero-section {
            position: relative;
            background: var(--primary-dark);
            color: var(--text-light);
            padding-top: 60px;
            padding-bottom: 60px;
            overflow: hidden;
            min-height: 560px;
            display: flex;
            align-items: center;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/4a9a4cb970b88f96.webp') center/cover no-repeat;
            opacity: 0.32;
            z-index: 1;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13, 13, 13, 0.88) 0%, rgba(21, 40, 36, 0.82) 55%, rgba(13, 13, 13, 0.9) 100%);
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            width: 100%;
        }
        .hero-badge-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }
        .hero-level-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 168, 76, 0.18);
            border: 1px solid rgba(201, 168, 76, 0.5);
            color: var(--gold);
            padding: 6px 16px;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.8px;
        }
        .hero-level-badge .level-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
        }
        .hero-section h1 {
            color: var(--text-light);
            font-size: 36px;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        .hero-section h1 .gold-text {
            color: var(--gold);
        }
        .hero-desc {
            color: rgba(247, 245, 240, 0.85);
            font-size: 17px;
            line-height: 1.8;
            max-width: 560px;
            margin-bottom: 28px;
        }
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }
        .btn-hero-primary {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .btn-hero-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 123, 63, 0.4);
            color: #fff;
        }
        .btn-hero-secondary {
            background: transparent;
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            font-size: 16px;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
            color: var(--gold);
        }
        .hero-meta-row {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(247, 245, 240, 0.7);
            font-size: 14px;
        }
        .hero-meta-item i {
            color: var(--gold);
        }

        .hero-right-panel {
            background: rgba(13, 13, 13, 0.75);
            border: 1px solid rgba(201, 168, 76, 0.4);
            border-radius: var(--radius-lg);
            padding: 24px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .hero-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .hero-panel-header .panel-title {
            color: var(--gold);
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 1px;
        }
        .hero-panel-header .panel-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #4CAF50;
        }
        .hero-panel-header .panel-status .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4CAF50;
            animation: pulse 1.8s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.4); }
        }
        .hero-match-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-sm);
            padding: 16px;
            margin-bottom: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .hero-match-card .match-league {
            font-size: 12px;
            color: rgba(247, 245, 240, 0.6);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .hero-match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--text-light);
            font-weight: 600;
            font-size: 15px;
        }
        .hero-match-card .match-score {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 20px;
            font-weight: 700;
            color: var(--gold);
            font-variant-numeric: tabular-nums;
        }
        .hero-level-progress {
            margin-top: 12px;
        }
        .hero-level-progress .progress-label {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: rgba(247, 245, 240, 0.6);
            margin-bottom: 6px;
        }
        .hero-level-progress .progress {
            height: 6px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 3px;
        }
        .hero-level-progress .progress-bar {
            background: var(--gold);
            border-radius: 3px;
            width: 68%;
        }

        @media (max-width: 991.98px) {
            .hero-section {
                min-height: auto;
                padding-top: 48px;
                padding-bottom: 48px;
            }
            .hero-section h1 {
                font-size: 30px;
            }
            .hero-right-panel {
                margin-top: 28px;
            }
        }
        @media (max-width: 575.98px) {
            .hero-section h1 {
                font-size: 24px;
            }
            .hero-desc {
                font-size: 15px;
            }
            .hero-cta-group .btn-hero-primary,
            .hero-cta-group .btn-hero-secondary {
                width: 100%;
                text-align: center;
            }
            .hero-meta-row {
                gap: 12px;
            }
        }

        /* ========== Ticker Bar ========== */
        .ticker-section {
            background: var(--primary);
            padding-top: 16px;
            padding-bottom: 16px;
            border-top: 3px solid var(--accent);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .ticker-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
            overflow: hidden;
            position: relative;
        }
        .ticker-label {
            color: var(--gold);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            white-space: nowrap;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .ticker-label i {
            font-size: 14px;
        }
        .ticker-track {
            display: flex;
            gap: 28px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            white-space: nowrap;
            flex: 1;
        }
        .ticker-track::-webkit-scrollbar {
            display: none;
        }
        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(247, 245, 240, 0.85);
            font-size: 14px;
            flex-shrink: 0;
        }
        .ticker-item .ticker-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }
        .ticker-badge.live {
            background: var(--accent);
            color: #fff;
        }
        .ticker-badge.finished {
            background: #4a6a5f;
            color: var(--text-light);
        }
        .ticker-badge.upcoming {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: rgba(247, 245, 240, 0.8);
        }
        .ticker-item .ticker-score {
            font-weight: 700;
            font-size: 15px;
            font-variant-numeric: tabular-nums;
            color: var(--text-light);
        }

        @media (max-width: 575.98px) {
            .ticker-wrapper {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .ticker-track {
                width: 100%;
            }
        }

        /* ========== Cards ========== */
        .card-custom {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            overflow: hidden;
            height: 100%;
        }
        .card-custom:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-dark);
        }
        .card-custom .card-body-custom {
            padding: 22px;
        }
        .card-custom .card-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--primary-pale);
            color: var(--primary);
            border-radius: 12px;
            font-size: 20px;
            margin-bottom: 14px;
        }
        .card-custom h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .card-custom p {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .card-cover-img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            display: block;
        }

        .badge-status {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 6px;
            letter-spacing: 0.5px;
        }
        .badge-status.live {
            background: var(--accent);
            color: #fff;
        }
        .badge-status.finished {
            background: #D8E2DE;
            color: var(--primary);
        }
        .badge-status.upcoming {
            background: #fff;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .badge-status.hot {
            background: var(--danger);
            color: #fff;
        }

        /* ========== Feature Cards ========== */
        .feature-card {
            text-align: left;
            padding: 26px;
        }
        .feature-card .card-icon {
            background: var(--accent-pale);
            color: var(--accent-dark);
        }

        /* ========== Match Schedule Cards ========== */
        .match-schedule-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 18px 20px;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .match-schedule-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-dark);
        }
        .match-schedule-card .match-league {
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .match-schedule-card .match-teams {
            font-weight: 700;
            font-size: 16.5px;
            color: var(--text);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .match-schedule-card .match-time {
            font-size: 14px;
            color: var(--accent-dark);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .match-schedule-card .match-schedule-score {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            font-variant-numeric: tabular-nums;
        }

        /* ========== Scene Demo ========== */
        .scene-section {
            background: #fff;
        }
        .scene-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .scene-image img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }
        .scene-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-top: 20px;
        }
        .scene-list-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        .scene-list-item .scene-num {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }
        .scene-list-item h4 {
            font-size: 16.5px;
            margin-bottom: 4px;
            color: var(--text);
        }
        .scene-list-item p {
            font-size: 14.5px;
            margin-bottom: 0;
            color: var(--text-muted);
            line-height: 1.65;
        }

        /* ========== Data Stat ========== */
        .data-stat-block {
            background: var(--primary);
            border-radius: var(--radius-lg);
            padding: 36px;
            color: var(--text-light);
        }
        .data-stat-block .stat-value {
            font-size: 40px;
            font-weight: 700;
            color: var(--gold);
            font-variant-numeric: tabular-nums;
            line-height: 1.2;
        }
        .data-stat-block .stat-label {
            font-size: 14px;
            color: rgba(247, 245, 240, 0.7);
            margin-top: 4px;
        }
        .data-stat-block .stat-icon {
            font-size: 28px;
            color: var(--accent);
            margin-bottom: 10px;
        }

        /* ========== Social Proof ========== */
        .social-proof-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        .social-proof-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .social-proof-card .user-avatar {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: var(--primary-pale);
            color: var(--primary);
            border-radius: 50%;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 12px;
        }
        .social-proof-card .stars {
            color: #F5A623;
            margin-bottom: 8px;
            font-size: 15px;
        }
        .social-proof-card .user-quote {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 8px;
        }
        .social-proof-card .user-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
        }
        .social-proof-card .user-role {
            font-size: 12.5px;
            color: var(--text-muted);
        }

        /* ========== Compare Table ========== */
        .compare-table-wrapper {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #fff;
        }
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
        }
        .compare-table th,
        .compare-table td {
            padding: 14px 20px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        .compare-table thead th {
            background: var(--primary);
            color: var(--text-light);
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.5px;
        }
        .compare-table thead th:nth-child(2) {
            background: var(--accent);
            color: #fff;
        }
        .compare-table tbody tr:last-child td {
            border-bottom: none;
        }
        .compare-table tbody td:first-child {
            font-weight: 600;
            color: var(--text);
            background: var(--bg-alt);
        }
        .compare-table tbody td:nth-child(2) {
            background: #FFF9F5;
        }
        .compare-table .highlight-col {
            color: var(--accent-dark);
            font-weight: 600;
        }

        @media (max-width: 767.98px) {
            .compare-table-wrapper {
                overflow-x: auto;
            }
            .compare-table {
                min-width: 480px;
            }
        }

        /* ========== Article Card ========== */
        .article-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .article-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .article-card .article-img {
            aspect-ratio: 16/9;
            object-fit: cover;
            width: 100%;
        }
        .article-card .article-body {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }
        .article-card .article-tag {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-dark);
            letter-spacing: 0.5px;
        }
        .article-card h3 {
            font-size: 17px;
            margin-bottom: 4px;
            line-height: 1.5;
        }
        .article-card .article-summary {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 0;
            flex: 1;
        }
        .article-card .article-date {
            font-size: 12.5px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ========== Expert Card ========== */
        .expert-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 26px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        .expert-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .expert-card .expert-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }
        .expert-card .expert-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary-pale);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }
        .expert-card .expert-name {
            font-weight: 600;
            font-size: 16px;
            color: var(--text);
        }
        .expert-card .expert-title {
            font-size: 13px;
            color: var(--text-muted);
        }
        .expert-card .expert-summary {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 14px;
        }
        .expert-card .expert-data-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .expert-card .data-badge {
            font-size: 12.5px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 16px;
            background: var(--accent-pale);
            color: var(--accent-dark);
            letter-spacing: 0.3px;
        }

        /* ========== Membership Section ========== */
        .membership-section {
            background: var(--primary-dark);
            color: var(--text-light);
        }
        .membership-section h2,
        .membership-section .section-subtitle {
            color: var(--text-light);
        }
        .membership-section p {
            color: rgba(247, 245, 240, 0.8);
        }
        .membership-level-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(201, 168, 76, 0.35);
            border-radius: var(--radius);
            padding: 24px;
            transition: var(--transition);
            height: 100%;
            text-align: center;
        }
        .membership-level-card:hover {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .membership-level-card .level-icon {
            font-size: 36px;
            margin-bottom: 12px;
            color: var(--gold);
        }
        .membership-level-card h3 {
            color: var(--gold);
            font-size: 18px;
            margin-bottom: 8px;
        }
        .membership-level-card p {
            font-size: 14px;
            color: rgba(247, 245, 240, 0.7);
            line-height: 1.6;
            margin-bottom: 0;
        }
        .membership-level-card .level-features {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
            text-align: left;
        }
        .membership-level-card .level-features li {
            font-size: 13.5px;
            color: rgba(247, 245, 240, 0.75);
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .membership-level-card .level-features li i {
            color: var(--gold);
            font-size: 13px;
        }

        /* ========== Brand Story ========== */
        .brand-story-section {
            background: #fff;
        }
        .brand-story-text {
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-muted);
            max-width: 900px;
        }
        .brand-story-text strong {
            color: var(--text);
        }

        /* ========== FAQ ========== */
        .faq-section {
            background: var(--bg-alt);
        }
        .accordion-custom .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow);
        }
        .accordion-custom .accordion-button {
            background: var(--primary);
            color: var(--text-light);
            font-weight: 600;
            font-size: 16.5px;
            padding: 16px 22px;
            border-radius: 0;
            letter-spacing: 0.2px;
            transition: var(--transition);
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            background: var(--primary-dark);
            color: var(--gold);
            box-shadow: none;
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        .accordion-custom .accordion-button::after {
            background-image: none;
            content: '+';
            font-weight: 400;
            font-size: 22px;
            line-height: 1;
            color: var(--text-light);
            transform: none;
            width: auto;
            height: auto;
        }
        .accordion-custom .accordion-button:not(.collapsed)::after {
            content: '−';
            color: var(--gold);
            transform: none;
        }
        .accordion-custom .accordion-body {
            padding: 18px 22px;
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            background: #fff;
        }

        /* ========== Guarantee Bar ========== */
        .guarantee-section {
            background: var(--primary);
            color: var(--text-light);
        }
        .guarantee-section h2 {
            color: var(--text-light);
        }
        .guarantee-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-sm);
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .guarantee-item:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }
        .guarantee-item i {
            font-size: 22px;
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 2px;
        }
        .guarantee-item h4 {
            font-size: 15.5px;
            color: var(--text-light);
            margin-bottom: 2px;
        }
        .guarantee-item p {
            font-size: 13.5px;
            color: rgba(247, 245, 240, 0.7);
            margin-bottom: 0;
            line-height: 1.5;
        }

        /* ========== Subscribe Section ========== */
        .subscribe-section {
            background: var(--bg-alt);
            padding-top: 40px;
            padding-bottom: 40px;
        }
        .subscribe-box {
            background: var(--primary);
            border-radius: var(--radius-lg);
            padding: 32px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .subscribe-box .subscribe-text h3 {
            color: var(--text-light);
            font-size: 20px;
            margin-bottom: 4px;
        }
        .subscribe-box .subscribe-text p {
            color: rgba(247, 245, 240, 0.7);
            font-size: 14px;
            margin-bottom: 0;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            min-width: 300px;
            flex: 1;
            max-width: 420px;
        }
        .subscribe-form input {
            flex: 1;
            min-width: 200px;
            padding: 10px 16px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 15px;
            transition: var(--transition);
        }
        .subscribe-form input::placeholder {
            color: rgba(247, 245, 240, 0.5);
        }
        .subscribe-form input:focus {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.15);
            outline: none;
        }
        .subscribe-form .btn-subscribe {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .subscribe-form .btn-subscribe:hover {
            background: var(--accent-dark);
        }

        /* ========== Footer ========== */
        .site-footer {
            background: var(--primary-dark);
            color: rgba(247, 245, 240, 0.7);
            padding-top: 48px;
            padding-bottom: 120px;
            font-size: 14px;
        }
        .site-footer .footer-brand {
            color: var(--text-light);
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .site-footer .footer-brand i {
            color: var(--gold);
        }
        .site-footer .footer-desc {
            font-size: 14px;
            color: rgba(247, 245, 240, 0.55);
            line-height: 1.7;
            max-width: 360px;
        }
        .site-footer h5 {
            color: var(--text-light);
            font-size: 15px;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-links li {
            margin-bottom: 8px;
        }
        .site-footer .footer-links a {
            color: rgba(247, 245, 240, 0.6);
            font-size: 14px;
            transition: var(--transition);
        }
        .site-footer .footer-links a:hover {
            color: var(--gold);
        }
        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 32px;
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: rgba(247, 245, 240, 0.5);
        }
        .site-footer .footer-bottom a {
            color: rgba(247, 245, 240, 0.6);
        }
        .site-footer .footer-bottom a:hover {
            color: var(--gold);
        }
        .site-footer .footer-bottom .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        @media (max-width: 767.98px) {
            .site-footer {
                padding-bottom: 100px;
            }
            .site-footer .footer-bottom .footer-bottom-links {
                gap: 12px;
                font-size: 12px;
            }
        }

        /* ========== Fixed Bottom CTA ========== */
        .fixed-bottom-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: var(--primary-dark);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
            padding: 10px 0;
            border-top: 2px solid var(--gold);
        }
        .fixed-bottom-cta .cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .fixed-bottom-cta .cta-text {
            color: var(--text-light);
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.3px;
        }
        .fixed-bottom-cta .cta-text small {
            display: block;
            font-weight: 400;
            font-size: 12.5px;
            color: rgba(247, 245, 240, 0.6);
        }
        .fixed-bottom-cta .cta-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .fixed-bottom-cta .btn-cta-primary {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .fixed-bottom-cta .btn-cta-primary:hover {
            background: var(--accent-dark);
            color: #fff;
        }
        .fixed-bottom-cta .btn-cta-secondary {
            background: transparent;
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.4);
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 14px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .fixed-bottom-cta .btn-cta-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        @media (max-width: 767.98px) {
            .fixed-bottom-cta {
                padding: 8px 0;
            }
            .fixed-bottom-cta .cta-text {
                font-size: 13.5px;
            }
            .fixed-bottom-cta .cta-text small {
                font-size: 11px;
            }
            .fixed-bottom-cta .btn-cta-primary {
                padding: 7px 14px;
                font-size: 13px;
            }
            .fixed-bottom-cta .btn-cta-secondary {
                padding: 7px 12px;
                font-size: 13px;
            }
        }
        @media (max-width: 520px) {
            .fixed-bottom-cta .cta-inner {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                gap: 8px;
            }
            .fixed-bottom-cta .cta-actions {
                justify-content: center;
            }
            .fixed-bottom-cta .cta-actions .btn-cta-secondary {
                display: none;
            }
        }

        /* ========== Topic Cloud ========== */
        .topic-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .topic-cloud .topic-tag {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 24px;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .topic-cloud .topic-tag:hover {
            background: var(--accent-pale);
            border-color: var(--accent);
            color: var(--accent-dark);
            transform: translateY(-1px);
        }

        /* ========== Utility ========== */
        .text-accent {
            color: var(--accent);
        }
        .text-gold {
            color: var(--gold);
        }
        .fw-semibold {
            font-weight: 600;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .gap-3 {
            gap: 16px;
        }

        @media (max-width: 767.98px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
            section {
                padding-top: 48px;
                padding-bottom: 48px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 18px;
            }
            .section-subtitle {
                font-size: 15px;
            }
        }
        @media (max-width: 575.98px) {
            section {
                padding-top: 36px;
                padding-bottom: 36px;
            }
            h1 {
                font-size: 24px;
            }
            h2 {
                font-size: 20px;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #1F3A33;
            --primary-dark: #152824;
            --primary-light: #2C5148;
            --primary-pale: #E8F0ED;
            --accent: #F07B3F;
            --accent-dark: #D85E1F;
            --accent-pale: #FFF3EB;
            --danger: #D93829;
            --bg: #F7F5F0;
            --bg-alt: #F0EEE8;
            --text: #1F3A33;
            --text-light: #F7F5F0;
            --text-muted: #6B7A74;
            --border: #E5E0D8;
            --border-dark: #C9C2B8;
            --gold: #C9A84C;
            --gold-dark: #A88A3A;
            --gold-pale: #F5EED8;
            --shadow: 0 4px 16px rgba(31, 58, 51, 0.08);
            --shadow-hover: 0 8px 28px rgba(31, 58, 51, 0.14);
            --radius: 14px;
            --radius-sm: 10px;
            --radius-lg: 18px;
            --section-gap: 72px;
            --transition: all 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'HarmonyOS Sans SC', 'Source Han Sans SC', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background-color: var(--bg);
            font-feature-settings: 'tnum' on;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-dark);
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
        }
        button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        section {
            padding-top: var(--section-gap);
            padding-bottom: var(--section-gap);
        }
        section.alt-bg {
            background-color: var(--bg-alt);
        }
        section.dark-bg {
            background-color: var(--primary);
            color: var(--text-light);
        }
        section.dark-bg h2,
        section.dark-bg h3,
        section.dark-bg .section-subtitle {
            color: var(--text-light);
        }
        section.dark-bg p {
            color: rgba(247, 245, 240, 0.8);
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--text);
            line-height: 1.4;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 32px;
        }
        h2 {
            font-size: 26px;
        }
        h3 {
            font-size: 20px;
        }
        h4 {
            font-size: 18px;
        }
        .section-subtitle {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 720px;
        }
        .section-tag {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-dark);
            background: var(--accent-pale);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-header h2 {
            margin-bottom: 12px;
        }
        .text-muted-2 {
            color: var(--text-muted);
        }
        .fw-semibold {
            font-weight: 600;
        }
        .fw-bold {
            font-weight: 700;
        }
        /* ========== Header / Nav ========== */
        .site-header {
            background: var(--primary-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .site-header .navbar {
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-weight: 700;
            font-size: 19px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .site-logo:hover {
            color: var(--gold);
        }
        .site-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--gold);
            color: var(--primary-dark);
            border-radius: 8px;
            font-size: 18px;
            flex-shrink: 0;
        }
        .navbar-nav .nav-link {
            color: rgba(247, 245, 240, 0.85);
            font-size: 14.5px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.06);
        }
        .navbar-nav .nav-link.active {
            color: var(--gold);
            background: rgba(201, 168, 76, 0.12);
        }
        .nav-right-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-right-group .btn-nav {
            font-size: 14px;
            padding: 6px 14px;
            border-radius: 8px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            background: transparent;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-right-group .btn-nav:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .nav-right-group .btn-nav.primary {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .nav-right-group .btn-nav.primary:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
        }
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.4);
            color: var(--text-light);
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28247,245,240,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        /* ========== 分类页 H1 区 ========== */
        .category-hero {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 56px 0 48px;
            border-bottom: 4px solid var(--gold);
            position: relative;
            overflow: hidden;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            right: -80px;
            top: -80px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .category-hero h1 {
            color: var(--text-light);
            font-size: 34px;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .category-hero .category-lead {
            font-size: 17px;
            color: rgba(247, 245, 240, 0.82);
            max-width: 760px;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
            line-height: 1.75;
        }
        /* ========== 分类入口 ========== */
        .chip-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .chip-nav .chip-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            background: #fff;
            border: 1.5px solid var(--border);
            color: var(--primary);
            transition: var(--transition);
            white-space: nowrap;
        }
        .chip-nav .chip-link:hover {
            border-color: var(--accent);
            background: var(--accent-pale);
            color: var(--accent-dark);
            transform: translateY(-1px);
        }
        .chip-nav .chip-link.current {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--text-light);
            cursor: default;
            transform: none;
        }
        .chip-nav .chip-label {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-muted);
            margin-right: 4px;
        }
        /* ========== 比分卡片（分类页列表主体） ========== */
        .score-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 20px 22px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .score-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--border-dark);
            transform: translateY(-2px);
        }
        .score-card .score-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 14px;
            gap: 10px;
            flex-wrap: wrap;
        }
        .score-card .league-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .score-card .match-time {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .score-card .matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 14px;
        }
        .score-card .team {
            flex: 1;
            text-align: center;
            font-weight: 700;
            font-size: 16px;
            color: var(--text);
            line-height: 1.4;
        }
        .score-card .score-number {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            font-feature-settings: 'tnum' on;
            letter-spacing: 1px;
            min-width: 90px;
            text-align: center;
            background: var(--primary-pale);
            border-radius: 10px;
            padding: 6px 10px;
        }
        .score-card .score-number.live-score {
            color: var(--accent-dark);
            background: var(--accent-pale);
        }
        .score-card .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 16px;
            white-space: nowrap;
        }
        .status-badge.finished {
            background: #E8F0ED;
            color: #2C5148;
        }
        .status-badge.live {
            background: var(--accent);
            color: #fff;
        }
        .status-badge.upcoming {
            background: #fff;
            color: var(--primary);
            border: 1.5px solid var(--primary);
        }
        .score-card .card-link {
            margin-top: auto;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-dark);
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }
        .score-card .card-link:hover {
            gap: 8px;
            color: var(--accent-dark);
        }
        .score-card .score-note {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 8px;
        }
        .score-card .score-progress {
            height: 6px;
            background: var(--bg-alt);
            border-radius: 3px;
            overflow: hidden;
            margin-top: 10px;
        }
        .score-card .score-progress .bar {
            height: 100%;
            background: var(--accent);
            border-radius: 3px;
            transition: width 0.3s ease;
        }
        /* ========== 积分榜摘要 ========== */
        .standings-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
        }
        .standings-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .standings-card .standings-header {
            background: var(--primary);
            color: var(--text-light);
            padding: 14px 20px;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .standings-card .standings-body {
            padding: 8px 0;
        }
        .standings-row {
            display: flex;
            align-items: center;
            padding: 9px 20px;
            border-bottom: 1px solid #F0EEE8;
            font-size: 14.5px;
            transition: background 0.2s;
        }
        .standings-row:last-child {
            border-bottom: none;
        }
        .standings-row:hover {
            background: var(--primary-pale);
        }
        .standings-row .rank {
            width: 32px;
            font-weight: 700;
            color: var(--text-muted);
            text-align: center;
        }
        .standings-row .rank.top3 {
            color: var(--gold-dark);
        }
        .standings-row .team-name {
            flex: 1;
            font-weight: 600;
            color: var(--text);
        }
        .standings-row .team-record {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 13.5px;
            text-align: right;
            min-width: 80px;
        }
        .standings-card .standings-foot {
            padding: 10px 20px;
            background: var(--bg-alt);
            font-size: 13px;
            color: var(--text-muted);
        }
        /* ========== 快讯列表 ========== */
        .quick-news-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 18px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .quick-news-item:hover {
            border-color: var(--border-dark);
            box-shadow: var(--shadow);
        }
        .quick-news-item .news-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary-pale);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        .quick-news-item .news-content {
            flex: 1;
        }
        .quick-news-item .news-title {
            font-weight: 600;
            font-size: 15px;
            color: var(--text);
            margin-bottom: 4px;
        }
        .quick-news-item .news-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .quick-news-item .news-score {
            font-weight: 700;
            font-size: 16px;
            color: var(--primary);
            white-space: nowrap;
            font-feature-settings: 'tnum' on;
        }
        /* ========== 专家解读 ========== */
        .expert-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .expert-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .expert-card .expert-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .expert-card .expert-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }
        .expert-card:hover .expert-img img {
            transform: scale(1.04);
        }
        .expert-card .expert-body {
            padding: 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .expert-card .expert-tag {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-dark);
            background: var(--accent-pale);
            display: inline-block;
            padding: 3px 10px;
            border-radius: 14px;
            margin-bottom: 10px;
            align-self: flex-start;
        }
        .expert-card .expert-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--text);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .expert-card .expert-summary {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 12px;
            flex: 1;
        }
        .expert-card .expert-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .expert-card .data-badge {
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 14px;
            background: var(--primary-pale);
            color: var(--primary);
            white-space: nowrap;
        }
        /* ========== 订阅 CTA ========== */
        .subscribe-bar {
            background: var(--primary);
            border-radius: var(--radius-lg);
            padding: 32px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-hover);
        }
        .subscribe-bar .subscribe-text {
            color: var(--text-light);
            flex: 1;
            min-width: 240px;
        }
        .subscribe-bar .subscribe-text h3 {
            color: var(--text-light);
            margin-bottom: 6px;
            font-size: 20px;
        }
        .subscribe-bar .subscribe-text p {
            color: rgba(247, 245, 240, 0.75);
            margin-bottom: 0;
            font-size: 15px;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .subscribe-form input {
            padding: 10px 16px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 15px;
            min-width: 220px;
            transition: var(--transition);
            outline: none;
        }
        .subscribe-form input::placeholder {
            color: rgba(247, 245, 240, 0.5);
        }
        .subscribe-form input:focus {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.2);
            outline: none;
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 10px 22px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            white-space: nowrap;
            cursor: pointer;
        }
        .btn-accent:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: translateY(-1px);
        }
        .btn-accent:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        .btn-outline-light-custom {
            background: transparent;
            color: var(--text-light);
            border: 2px solid rgba(247, 245, 240, 0.6);
            padding: 8px 18px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            white-space: nowrap;
            cursor: pointer;
        }
        .btn-outline-light-custom:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(255, 255, 255, 0.06);
        }
        /* ========== FAQ ========== */
        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item:hover {
            border-color: var(--border-dark);
        }
        .faq-header {
            padding: 16px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            background: var(--primary);
            color: var(--text-light);
            font-weight: 600;
            font-size: 16px;
            border: none;
            width: 100%;
            text-align: left;
            transition: var(--transition);
            border-radius: var(--radius-sm);
        }
        .faq-header:hover {
            background: var(--primary-light);
        }
        .faq-header .faq-icon {
            flex-shrink: 0;
            font-size: 20px;
            transition: transform 0.3s ease;
            color: var(--gold);
        }
        .faq-item.open .faq-header .faq-icon {
            transform: rotate(45deg);
        }
        .faq-body {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            color: var(--text);
            font-size: 15px;
            line-height: 1.75;
        }
        .faq-item.open .faq-body {
            padding: 16px 20px;
            max-height: 300px;
        }
        .faq-body p {
            margin-bottom: 0;
            color: var(--text-muted);
        }
        /* ========== 页尾说明条 ========== */
        .notice-strip {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            font-size: 14.5px;
            color: var(--text-muted);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            line-height: 1.7;
        }
        .notice-strip i {
            color: var(--accent-dark);
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        .notice-strip strong {
            color: var(--text);
            font-weight: 600;
        }
        /* ========== Footer ========== */
        .site-footer {
            background: var(--primary-dark);
            color: rgba(247, 245, 240, 0.8);
            padding-top: 60px;
            padding-bottom: 24px;
        }
        .site-footer .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }
        .site-footer .footer-brand i {
            color: var(--gold);
        }
        .site-footer .footer-desc {
            font-size: 14px;
            line-height: 1.75;
            color: rgba(247, 245, 240, 0.65);
            max-width: 320px;
        }
        .site-footer h5 {
            color: var(--gold);
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-links li {
            margin-bottom: 8px;
        }
        .site-footer .footer-links a {
            color: rgba(247, 245, 240, 0.7);
            font-size: 14px;
            transition: var(--transition);
        }
        .site-footer .footer-links a:hover {
            color: var(--gold);
            padding-left: 4px;
        }
        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: rgba(247, 245, 240, 0.55);
        }
        .site-footer .footer-bottom-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .site-footer .footer-bottom-links a {
            color: rgba(247, 245, 240, 0.55);
            font-size: 13px;
            transition: var(--transition);
        }
        .site-footer .footer-bottom-links a:hover {
            color: var(--gold);
        }
        /* ========== 响应式 ========== */
        @media (max-width: 1199.98px) {
            .container-custom {
                padding-left: 20px;
                padding-right: 20px;
            }
        }
        @media (max-width: 991.98px) {
            :root {
                --section-gap: 56px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 23px;
            }
            .category-hero h1 {
                font-size: 28px;
            }
            .score-card .matchup {
                flex-direction: column;
                gap: 8px;
            }
            .score-card .score-number {
                min-width: auto;
                padding: 8px 16px;
            }
            .subscribe-bar {
                padding: 24px 26px;
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            .subscribe-form {
                justify-content: center;
            }
            .nav-right-group {
                flex-wrap: wrap;
                justify-content: flex-end;
            }
        }
        @media (max-width: 767.98px) {
            :root {
                --section-gap: 44px;
            }
            h1 {
                font-size: 24px;
            }
            h2 {
                font-size: 21px;
            }
            .category-hero {
                padding: 36px 0 32px;
            }
            .category-hero h1 {
                font-size: 24px;
            }
            .category-hero .category-lead {
                font-size: 15px;
            }
            .chip-nav .chip-label {
                display: block;
                width: 100%;
            }
            .score-card {
                padding: 16px 18px;
            }
            .score-card .score-number {
                font-size: 22px;
                padding: 6px 12px;
            }
            .score-card .team {
                font-size: 14px;
            }
            .expert-card .expert-img {
                height: 160px;
            }
            .subscribe-form input {
                min-width: 100%;
            }
            .subscribe-form .btn-accent {
                width: 100%;
            }
            .quick-news-item {
                flex-direction: column;
                gap: 10px;
            }
            .notice-strip {
                flex-direction: column;
                gap: 8px;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .nav-right-group {
                width: 100%;
                justify-content: flex-start;
                margin-top: 10px;
                padding-top: 10px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            .navbar-collapse {
                padding-top: 10px;
            }
        }
        @media (max-width: 575.98px) {
            :root {
                --section-gap: 36px;
            }
            .container-custom {
                padding-left: 14px;
                padding-right: 14px;
            }
            h1 {
                font-size: 22px;
            }
            h2 {
                font-size: 19px;
            }
            h3 {
                font-size: 17px;
            }
            .category-hero h1 {
                font-size: 22px;
            }
            .score-card .matchup {
                flex-direction: column;
            }
            .score-card .score-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .subscribe-bar {
                padding: 20px 18px;
            }
            .standings-row {
                padding: 8px 14px;
                font-size: 13px;
            }
            .standings-row .team-record {
                font-size: 12px;
                min-width: 60px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #1F3A33;
            --primary-dark: #152824;
            --primary-light: #2C5148;
            --primary-pale: #E8F0ED;
            --accent: #F07B3F;
            --accent-dark: #D85E1F;
            --accent-pale: #FFF3EB;
            --danger: #D93829;
            --bg: #F7F5F0;
            --bg-alt: #F0EEE8;
            --text: #1F3A33;
            --text-light: #F7F5F0;
            --text-muted: #6B7A74;
            --border: #E5E0D8;
            --border-dark: #C9C2B8;
            --gold: #C9A84C;
            --gold-dark: #A88A3A;
            --gold-pale: #F5EED8;
            --shadow: 0 4px 16px rgba(31, 58, 51, 0.08);
            --shadow-hover: 0 8px 28px rgba(31, 58, 51, 0.14);
            --radius: 14px;
            --radius-sm: 10px;
            --radius-lg: 18px;
            --section-gap: 64px;
            --transition: all 0.25s ease;
        }
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'HarmonyOS Sans SC', 'Source Han Sans SC', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            font-size: 15.5px;
            line-height: 1.75;
            color: var(--text);
            background-color: var(--bg);
            font-feature-settings: 'tnum' on;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-dark);
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
        }
        button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        section {
            padding-top: var(--section-gap);
            padding-bottom: var(--section-gap);
        }
        section.alt-bg {
            background-color: var(--bg-alt);
        }
        section.dark-bg {
            background-color: var(--primary);
            color: var(--text-light);
        }
        section.dark-bg h2, section.dark-bg h3, section.dark-bg .section-subtitle {
            color: var(--text-light);
        }
        section.dark-bg p {
            color: rgba(247, 245, 240, 0.82);
        }
        .section-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 720px;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-dark);
            background: var(--accent-pale);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-header {
            margin-bottom: 36px;
        }
        .section-header h2 {
            margin-bottom: 10px;
            font-size: 25px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.3px;
        }
        .section-header .section-subtitle {
            font-size: 15.5px;
            color: var(--text-muted);
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary);
            line-height: 1.4;
        }
        h1 {
            font-size: 30px;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 24px;
            letter-spacing: 0.3px;
        }
        h3 {
            font-size: 18px;
            letter-spacing: 0.2px;
        }
        p {
            margin-bottom: 12px;
        }
        ul, ol {
            margin-bottom: 12px;
        }
        /* Header/Nav */
        .site-header {
            background: var(--primary-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .site-header .navbar {
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-weight: 700;
            font-size: 19px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .site-logo:hover {
            color: var(--gold);
        }
        .site-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--gold);
            color: var(--primary-dark);
            border-radius: 8px;
            font-size: 17px;
            flex-shrink: 0;
        }
        .navbar-nav .nav-link {
            color: rgba(247, 245, 240, 0.85);
            font-size: 14.5px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.06);
        }
        .navbar-nav .nav-link.active {
            color: var(--gold);
            background: rgba(201, 168, 76, 0.12);
        }
        .nav-right-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-right-group .btn-nav {
            font-size: 13.5px;
            padding: 6px 14px;
            border-radius: 8px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            background: transparent;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-right-group .btn-nav:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .nav-right-group .btn-nav.primary {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .nav-right-group .btn-nav.primary:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
        }
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.4);
            color: var(--text-light);
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        /* H1 Classifier Bar */
        .classifier-hero {
            background: var(--primary);
            padding: 52px 0 48px;
            border-bottom: 3px solid var(--gold);
            position: relative;
            overflow: hidden;
        }
        .classifier-hero::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
            pointer-events: none;
        }
        .classifier-hero h1 {
            color: var(--text-light);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .classifier-hero .classifier-sub {
            color: rgba(247, 245, 240, 0.82);
            font-size: 16px;
            line-height: 1.7;
            max-width: 680px;
            position: relative;
            z-index: 1;
        }
        /* Category Entrance Pills */
        .category-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }
        .category-pills a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 18px;
            background: transparent;
            border: 1px solid var(--border-dark);
            color: var(--primary);
            border-radius: 24px;
            font-size: 13.5px;
            font-weight: 500;
            transition: var(--transition);
        }
        .category-pills a:hover {
            background: var(--accent-pale);
            border-color: var(--accent);
            color: var(--accent-dark);
        }
        .category-pills a.active-pill {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--text-light);
        }
        /* Football Score Cards */
        .score-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }
        .score-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 18px 20px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .score-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-2px);
        }
        .score-card .match-league {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }
        .score-card .match-league .league-badge {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
        }
        .score-card .match-time {
            font-size: 13px;
            color: var(--text-muted);
            font-feature-settings: 'tnum' on;
        }
        .score-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .score-card .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1;
        }
        .score-card .team-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            text-align: center;
            line-height: 1.3;
        }
        .score-card .score-display {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary);
            font-feature-settings: 'tnum' on;
            letter-spacing: 2px;
            min-width: 48px;
            text-align: center;
        }
        .score-card .score-display.live {
            color: var(--accent);
        }
        .score-card .match-status {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }
        .status-badge {
            font-size: 12px;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            letter-spacing: 0.3px;
        }
        .status-badge.finished {
            background: #E3EAE6;
            color: #4A6358;
        }
        .status-badge.live {
            background: var(--accent);
            color: #fff;
        }
        .status-badge.scheduled {
            background: #fff;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .status-badge.postponed {
            background: #F5EED8;
            color: #8A6D1C;
        }
        .card-link-more {
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-dark);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .card-link-more:hover {
            color: var(--primary);
        }
        /* League Standings Table */
        .standings-wrapper {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 24px 20px;
            overflow-x: auto;
        }
        .standings-table {
            width: 100%;
            min-width: 560px;
            border-collapse: collapse;
            font-size: 14px;
        }
        .standings-table th {
            background: var(--primary);
            color: var(--text-light);
            font-weight: 600;
            padding: 10px 12px;
            text-align: center;
            border: none;
            font-size: 13px;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .standings-table td {
            padding: 10px 12px;
            text-align: center;
            border-bottom: 1px solid var(--border);
            color: var(--text);
            font-feature-settings: 'tnum' on;
            white-space: nowrap;
        }
        .standings-table tr:last-child td {
            border-bottom: none;
        }
        .standings-table tbody tr:hover {
            background: var(--primary-pale);
        }
        .standings-table .team-cell {
            text-align: left;
            font-weight: 600;
            color: var(--primary);
            white-space: nowrap;
        }
        .standings-table .pos-1 {
            color: var(--gold-dark);
            font-weight: 700;
        }
        .standings-table .pos-2 {
            color: #7A8A84;
            font-weight: 700;
        }
        .standings-table .pos-3 {
            color: #A06B3C;
            font-weight: 700;
        }
        .standings-table .pts {
            font-weight: 700;
            color: var(--primary);
        }
        .standings-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .standings-header-row h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 0;
        }
        .standings-header-row .league-selector {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .standings-header-row .league-tab {
            font-size: 12.5px;
            padding: 4px 12px;
            border-radius: 16px;
            border: 1px solid var(--border);
            color: var(--text-muted);
            background: #fff;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }
        .standings-header-row .league-tab.active {
            background: var(--primary);
            color: var(--text-light);
            border-color: var(--primary);
        }
        .standings-header-row .league-tab:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        /* Quick News List */
        .quick-news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .quick-news-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            transition: var(--transition);
        }
        .quick-news-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow);
        }
        .quick-news-item .news-time {
            font-size: 13px;
            color: var(--text-muted);
            font-feature-settings: 'tnum' on;
            min-width: 64px;
            font-weight: 500;
        }
        .quick-news-item .news-text {
            font-size: 14.5px;
            color: var(--text);
            line-height: 1.6;
        }
        .quick-news-item .news-badge {
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 600;
            flex-shrink: 0;
        }
        .quick-news-item .news-badge.result {
            background: #E3EAE6;
            color: #4A6358;
        }
        .quick-news-item .news-badge.goal {
            background: var(--accent-pale);
            color: var(--accent-dark);
        }
        .quick-news-item .news-badge.card {
            background: #F5EED8;
            color: #8A6D1C;
        }
        /* Expert Cards */
        .expert-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .expert-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 22px 20px;
            transition: var(--transition);
        }
        .expert-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .expert-card .expert-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .expert-card .expert-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--primary-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .expert-card .expert-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--primary);
        }
        .expert-card .expert-title {
            font-size: 12.5px;
            color: var(--text-muted);
        }
        .expert-card .expert-summary {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text);
            margin-bottom: 12px;
        }
        .expert-card .data-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .data-badge {
            font-size: 11.5px;
            padding: 3px 10px;
            border-radius: 14px;
            background: var(--primary-pale);
            color: var(--primary);
            font-weight: 600;
            font-feature-settings: 'tnum' on;
        }
        /* Subscribe CTA */
        .subscribe-cta {
            background: var(--primary);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .subscribe-cta .cta-text h3 {
            color: var(--text-light);
            font-size: 19px;
            margin-bottom: 6px;
        }
        .subscribe-cta .cta-text p {
            color: rgba(247, 245, 240, 0.78);
            font-size: 14px;
            margin-bottom: 0;
        }
        .subscribe-cta .cta-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        .subscribe-cta .cta-input {
            padding: 9px 16px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 14px;
            min-width: 220px;
            transition: var(--transition);
        }
        .subscribe-cta .cta-input::placeholder {
            color: rgba(247, 245, 240, 0.55);
        }
        .subscribe-cta .cta-input:focus {
            outline: 2px solid var(--gold);
            background: rgba(255, 255, 255, 0.15);
        }
        .subscribe-cta .btn-subscribe {
            padding: 9px 24px;
            border-radius: 8px;
            background: var(--accent);
            color: #fff;
            border: none;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
            cursor: pointer;
            white-space: nowrap;
        }
        .subscribe-cta .btn-subscribe:hover {
            background: var(--accent-dark);
        }
        /* FAQ Accordion */
        .faq-accordion .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 10px;
            background: #fff;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .faq-accordion .accordion-header button {
            background: var(--primary);
            color: var(--text-light);
            font-size: 15.5px;
            font-weight: 600;
            padding: 16px 20px;
            border: none;
            border-radius: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            text-align: left;
            letter-spacing: 0.3px;
        }
        .faq-accordion .accordion-header button:focus {
            outline: none;
            box-shadow: none;
        }
        .faq-accordion .accordion-header button .faq-icon {
            font-size: 18px;
            font-weight: 700;
            transition: var(--transition);
            flex-shrink: 0;
        }
        .faq-accordion .accordion-header button.collapsed .faq-icon {
            transform: rotate(0deg);
        }
        .faq-accordion .accordion-header button:not(.collapsed) .faq-icon {
            transform: rotate(45deg);
        }
        .faq-accordion .accordion-body {
            padding: 16px 20px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text);
            background: #fff;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: var(--text-light);
            box-shadow: none;
        }
        .faq-accordion .accordion-button::after {
            display: none;
        }
        /* Footer */
        .site-footer {
            background: var(--primary-dark);
            color: rgba(247, 245, 240, 0.82);
            padding: 48px 0 24px;
        }
        .site-footer .footer-brand {
            font-size: 19px;
            font-weight: 700;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }
        .site-footer .footer-brand i {
            color: var(--gold);
        }
        .site-footer .footer-desc {
            font-size: 13.5px;
            line-height: 1.75;
            color: rgba(247, 245, 240, 0.65);
        }
        .site-footer h5 {
            color: var(--text-light);
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-links li {
            margin-bottom: 8px;
        }
        .site-footer .footer-links a {
            color: rgba(247, 245, 240, 0.68);
            font-size: 13.5px;
            transition: var(--transition);
        }
        .site-footer .footer-links a:hover {
            color: var(--gold);
        }
        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 32px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 8px 16px;
            font-size: 12.5px;
            color: rgba(247, 245, 240, 0.5);
        }
        .site-footer .footer-bottom a {
            color: rgba(247, 245, 240, 0.55);
            font-size: 12.5px;
        }
        .site-footer .footer-bottom a:hover {
            color: var(--gold);
        }
        .site-footer .footer-bottom-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        /* Page Footer Note */
        .page-footer-note {
            background: var(--bg-alt);
            border-top: 1px solid var(--border);
            padding: 20px 0;
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        /* Responsive */
        @media (max-width: 992px) {
            :root {
                --section-gap: 48px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            .classifier-hero {
                padding: 36px 0 32px;
            }
            .classifier-hero h1 {
                font-size: 26px;
            }
            .score-card-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            .expert-card-grid {
                grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            }
        }
        @media (max-width: 768px) {
            :root {
                --section-gap: 40px;
            }
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
            .nav-right-group {
                flex-wrap: wrap;
                justify-content: flex-end;
                gap: 4px;
            }
            .nav-right-group .btn-nav {
                font-size: 12px;
                padding: 4px 10px;
            }
            .score-card-grid {
                grid-template-columns: 1fr;
            }
            .expert-card-grid {
                grid-template-columns: 1fr;
            }
            .classifier-hero h1 {
                font-size: 24px;
            }
            .subscribe-cta {
                flex-direction: column;
                align-items: flex-start;
            }
            .subscribe-cta .cta-form {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .subscribe-cta .cta-input {
                min-width: 100%;
            }
            .standings-wrapper {
                padding: 16px 12px;
            }
            .section-header h2 {
                font-size: 21px;
            }
            .quick-news-item {
                flex-wrap: wrap;
                gap: 6px;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 22px;
            }
            h2 {
                font-size: 19px;
            }
            .classifier-hero h1 {
                font-size: 21px;
            }
            .classifier-hero .classifier-sub {
                font-size: 14px;
            }
            .category-pills a {
                font-size: 12px;
                padding: 5px 12px;
            }
            .score-card .score-display {
                font-size: 22px;
            }
            .score-card .team-name {
                font-size: 13px;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #1F3A33;
            --primary-dark: #152824;
            --primary-light: #2C5148;
            --primary-pale: #E8F0ED;
            --accent: #F07B3F;
            --accent-dark: #D85E1F;
            --accent-pale: #FFF3EB;
            --danger: #D93829;
            --bg: #F7F5F0;
            --bg-alt: #F0EEE8;
            --text: #1F3A33;
            --text-light: #F7F5F0;
            --text-muted: #6B7A74;
            --border: #E5E0D8;
            --border-dark: #C9C2B8;
            --gold: #C9A84C;
            --gold-dark: #A88A3A;
            --gold-pale: #F5EED8;
            --shadow: 0 4px 16px rgba(31, 58, 51, 0.08);
            --shadow-hover: 0 8px 28px rgba(31, 58, 51, 0.14);
            --radius: 14px;
            --radius-sm: 10px;
            --radius-lg: 18px;
            --section-gap: 72px;
            --transition: all 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'HarmonyOS Sans SC', 'Source Han Sans SC', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background-color: var(--bg);
            font-feature-settings: 'tnum' on;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-dark);
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
        }
        button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        section {
            padding-top: var(--section-gap);
            padding-bottom: var(--section-gap);
        }
        section.alt-bg {
            background-color: var(--bg-alt);
        }
        section.dark-bg {
            background-color: var(--primary);
            color: var(--text-light);
        }
        section.dark-bg h2,
        section.dark-bg h3,
        section.dark-bg .section-subtitle {
            color: var(--text-light);
        }
        section.dark-bg p {
            color: rgba(247, 245, 240, 0.8);
        }
        .section-subtitle {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 720px;
        }
        .section-tag {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-dark);
            background: var(--accent-pale);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-header h2 {
            margin-bottom: 12px;
        }
        /* ========== Header / Nav ========== */
        .site-header {
            background: var(--primary-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .site-header .navbar {
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-weight: 700;
            font-size: 19px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .site-logo:hover {
            color: var(--gold);
        }
        .site-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--gold);
            color: var(--primary-dark);
            border-radius: 8px;
            font-size: 18px;
            flex-shrink: 0;
        }
        .navbar-nav .nav-link {
            color: rgba(247, 245, 240, 0.85);
            font-size: 14.5px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.06);
        }
        .navbar-nav .nav-link.active {
            color: var(--gold);
            background: rgba(201, 168, 76, 0.12);
        }
        .nav-right-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-right-group .btn-nav {
            font-size: 14px;
            padding: 6px 14px;
            border-radius: 8px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            background: transparent;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-right-group .btn-nav:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .nav-right-group .btn-nav.primary {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .nav-right-group .btn-nav.primary:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
        }
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.4);
            color: var(--text-light);
        }
        /* ========== Category Page Hero (H1区) ========== */
        .cat-hero {
            background: var(--primary);
            padding: 48px 0 44px;
            border-bottom: 4px solid var(--gold);
            position: relative;
        }
        .cat-hero .cat-hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            opacity: 0.25;
        }
        .cat-hero .cat-hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .cat-hero .cat-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(31, 58, 51, 0.7) 0%, rgba(21, 40, 36, 0.9) 100%);
        }
        .cat-hero .cat-hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .cat-hero h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-light);
            margin: 0;
            letter-spacing: 0.5px;
        }
        .cat-hero .cat-hero-sub {
            font-size: 16px;
            color: rgba(247, 245, 240, 0.8);
            margin: 8px 0 0;
        }
        .cat-hero .cat-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 168, 76, 0.18);
            border: 1px solid rgba(201, 168, 76, 0.5);
            color: var(--gold);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 24px;
            white-space: nowrap;
        }
        /* ========== Category Entrance ========== */
        .cat-entrance {
            background: var(--bg-alt);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }
        .cat-entrance .entrance-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            margin-right: 12px;
            white-space: nowrap;
        }
        .cat-entrance .entrance-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .cat-entrance .entrance-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--primary);
            font-size: 14px;
            font-weight: 500;
            padding: 7px 16px;
            border-radius: 24px;
            transition: var(--transition);
        }
        .cat-entrance .entrance-pill:hover {
            border-color: var(--primary);
            background: var(--primary-pale);
            color: var(--primary);
        }
        .cat-entrance .entrance-pill.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--text-light);
        }
        /* ========== Data Card List ========== */
        .data-card-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .data-card {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 18px 22px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            gap: 16px;
        }
        .data-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
            transform: translateY(-2px);
        }
        .data-card .card-main {
            flex: 1 1 280px;
            min-width: 240px;
        }
        .data-card .card-main .card-league {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            display: block;
            margin-bottom: 4px;
        }
        .data-card .card-main .card-teams {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .data-card .card-main .card-time {
            font-size: 13.5px;
            color: var(--text-muted);
        }
        .data-card .card-index {
            flex: 0 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .index-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 5px 12px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--primary);
        }
        .index-chip .idx-label {
            font-weight: 400;
            color: var(--text-muted);
            font-size: 12.5px;
        }
        .index-chip .idx-value {
            font-variant-numeric: tabular-nums;
            color: var(--accent-dark);
        }
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 16px;
            white-space: nowrap;
        }
        .status-badge.live {
            background: var(--accent);
            color: #fff;
        }
        .status-badge.finished {
            background: var(--primary-pale);
            color: var(--primary-light);
        }
        .status-badge.upcoming {
            background: #fff;
            color: var(--primary);
            border: 1px solid var(--primary-light);
        }
        .card-more-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-dark);
            align-self: center;
            white-space: nowrap;
        }
        .card-more-link:hover {
            color: var(--primary);
        }
        /* ========== Data Summary ========== */
        .data-summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        .data-summary-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px 24px;
            box-shadow: var(--shadow);
        }
        .data-summary-item .ds-icon {
            font-size: 22px;
            color: var(--accent-dark);
            margin-bottom: 10px;
        }
        .data-summary-item .ds-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }
        .data-summary-item .ds-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
        }
        /* ========== Quick List ========== */
        .quick-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .quick-list li {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 14px 4px;
            border-bottom: 1px solid var(--border);
            gap: 10px;
        }
        .quick-list li:last-child {
            border-bottom: none;
        }
        .quick-list .ql-info {
            flex: 1 1 240px;
        }
        .quick-list .ql-title {
            font-weight: 600;
            color: var(--primary);
            font-size: 15.5px;
        }
        .quick-list .ql-meta {
            font-size: 13px;
            color: var(--text-muted);
        }
        .quick-list .ql-data {
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            color: var(--accent-dark);
            font-size: 16px;
            white-space: nowrap;
        }
        /* ========== Expert Cards ========== */
        .expert-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 22px;
        }
        .expert-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .expert-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }
        .expert-card .expert-avatar {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .expert-avatar .avatar-circle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--primary-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .expert-avatar .expert-name {
            font-weight: 600;
            color: var(--primary);
            font-size: 15.5px;
        }
        .expert-avatar .expert-tag {
            font-size: 12.5px;
            color: var(--text-muted);
        }
        .expert-card .expert-text {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 14px;
        }
        .expert-card .expert-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .expert-badges .badge-item {
            background: var(--accent-pale);
            color: var(--accent-dark);
            font-size: 12px;
            font-weight: 600;
            border-radius: 14px;
            padding: 3px 12px;
        }
        /* ========== Subscribe CTA ========== */
        .subscribe-cta {
            background: var(--primary);
            color: var(--text-light);
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .subscribe-cta .cta-left h3 {
            color: var(--text-light);
            font-size: 24px;
            margin-bottom: 8px;
        }
        .subscribe-cta .cta-left p {
            color: rgba(247, 245, 240, 0.78);
            margin: 0;
        }
        .subscribe-cta .cta-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .subscribe-cta .cta-form input[type="email"],
        .subscribe-cta .cta-form input[type="text"] {
            background: #fff;
            border: 1px solid var(--primary-light);
            border-radius: 8px;
            padding: 10px 16px;
            font-size: 14.5px;
            min-width: 240px;
            color: var(--primary);
        }
        .subscribe-cta .cta-form input::placeholder {
            color: var(--text-muted);
        }
        .subscribe-cta .cta-form button {
            background: var(--accent);
            border: none;
            border-radius: 8px;
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            transition: var(--transition);
        }
        .subscribe-cta .cta-form button:hover {
            background: var(--accent-dark);
        }
        /* ========== FAQ ========== */
        .faq-wrapper .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            overflow: hidden;
            background: #fff;
        }
        .faq-wrapper .accordion-item:last-child {
            margin-bottom: 0;
        }
        .faq-wrapper .accordion-button {
            background: var(--primary);
            color: var(--text-light);
            font-size: 17px;
            font-weight: 600;
            padding: 16px 22px;
            border-radius: 0 !important;
            box-shadow: none;
        }
        .faq-wrapper .accordion-button:not(.collapsed) {
            background: var(--primary-light);
            color: var(--text-light);
        }
        .faq-wrapper .accordion-button::after {
            content: '+';
            background-image: none;
            font-size: 22px;
            font-weight: 400;
            color: var(--gold);
            line-height: 1;
            margin-left: 10px;
            transition: transform 0.2s ease;
        }
        .faq-wrapper .accordion-button:not(.collapsed)::after {
            content: '−';
            background-image: none;
        }
        .faq-wrapper .accordion-body {
            background: #fff;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.75;
            padding: 16px 22px 20px;
        }
        /* ========== Page Footer Note ========== */
        .page-footer-note {
            background: var(--bg-alt);
            border-top: 1px solid var(--border);
            padding: 32px 0;
            text-align: center;
        }
        .page-footer-note p {
            margin: 0;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        /* ========== Footer ========== */
        .site-footer {
            background: var(--primary-dark);
            color: rgba(247, 245, 240, 0.8);
            padding: 60px 0 0;
            font-size: 14.5px;
        }
        .site-footer .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 14px;
        }
        .site-footer .footer-brand i {
            color: var(--gold);
        }
        .site-footer .footer-desc {
            color: rgba(247, 245, 240, 0.7);
            font-size: 14px;
            line-height: 1.75;
            max-width: 320px;
        }
        .site-footer h5 {
            color: var(--gold);
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-links li {
            margin-bottom: 8px;
        }
        .site-footer .footer-links a {
            color: rgba(247, 245, 240, 0.75);
            font-size: 14px;
            transition: var(--transition);
        }
        .site-footer .footer-links a:hover {
            color: var(--gold);
        }
        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 48px;
            padding: 24px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: rgba(247, 245, 240, 0.6);
        }
        .site-footer .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .site-footer .footer-bottom-links a {
            color: rgba(247, 245, 240, 0.7);
            font-size: 13px;
        }
        .site-footer .footer-bottom-links a:hover {
            color: var(--gold);
        }
        /* ========== Responsive ========== */
        @media (max-width: 992px) {
            .nav-right-group {
                flex-wrap: wrap;
                justify-content: flex-start;
                margin-top: 8px;
            }
            .cat-hero h1 {
                font-size: 26px;
            }
            .subscribe-cta {
                flex-direction: column;
                align-items: flex-start;
            }
            .subscribe-cta .cta-form {
                width: 100%;
            }
            .subscribe-cta .cta-form input[type="email"],
            .subscribe-cta .cta-form input[type="text"] {
                flex: 1;
                min-width: 180px;
            }
        }
        @media (max-width: 768px) {
            :root {
                --section-gap: 48px;
            }
            .cat-hero {
                padding: 36px 0 32px;
            }
            .cat-hero h1 {
                font-size: 22px;
            }
            .cat-hero .cat-hero-sub {
                font-size: 14px;
            }
            .cat-hero .cat-hero-badge {
                font-size: 12.5px;
                padding: 6px 14px;
            }
            .data-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px;
            }
            .data-card .card-index {
                width: 100%;
            }
            .card-more-link {
                align-self: flex-start;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
        @media (max-width: 576px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
            .cat-hero h1 {
                font-size: 20px;
            }
            .section-header h2 {
                font-size: 20px;
            }
            .subscribe-cta {
                padding: 24px 20px;
            }
            .subscribe-cta .cta-form input[type="email"],
            .subscribe-cta .cta-form input[type="text"] {
                min-width: 100%;
            }
            .data-summary-grid {
                grid-template-columns: 1fr;
            }
            .expert-card-grid {
                grid-template-columns: 1fr;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #1F3A33;
            --primary-dark: #152824;
            --primary-light: #2C5148;
            --primary-pale: #E8F0ED;
            --accent: #F07B3F;
            --accent-dark: #D85E1F;
            --accent-pale: #FFF3EB;
            --danger: #D93829;
            --bg: #F7F5F0;
            --bg-alt: #F0EEE8;
            --text: #1F3A33;
            --text-light: #F7F5F0;
            --text-muted: #6B7A74;
            --border: #E5E0D8;
            --border-dark: #C9C2B8;
            --gold: #C9A84C;
            --gold-dark: #A88A3A;
            --gold-pale: #F5EED8;
            --shadow: 0 4px 16px rgba(31, 58, 51, 0.08);
            --shadow-hover: 0 8px 28px rgba(31, 58, 51, 0.14);
            --radius: 14px;
            --radius-sm: 10px;
            --radius-lg: 18px;
            --section-gap: 64px;
            --transition: all 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'HarmonyOS Sans SC', 'Source Han Sans SC', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background-color: var(--bg);
            font-feature-settings: 'tnum' on;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-dark);
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        section {
            padding-top: var(--section-gap);
            padding-bottom: var(--section-gap);
        }
        section.alt-bg {
            background-color: var(--bg-alt);
        }
        section.dark-bg {
            background-color: var(--primary);
            color: var(--text-light);
        }
        section.dark-bg h2,
        section.dark-bg h3,
        section.dark-bg .section-subtitle {
            color: var(--text-light);
        }
        section.dark-bg p {
            color: rgba(247, 245, 240, 0.8);
        }
        .section-subtitle {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 720px;
        }
        .section-tag {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-dark);
            background: var(--accent-pale);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-header {
            margin-bottom: 36px;
        }
        .section-header h2 {
            margin-bottom: 10px;
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        /* Header */
        .site-header {
            background: var(--primary-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .site-header .navbar {
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-weight: 700;
            font-size: 19px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .site-logo:hover {
            color: var(--gold);
        }
        .site-logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--gold);
            color: var(--primary-dark);
            border-radius: 8px;
            font-size: 18px;
            flex-shrink: 0;
        }
        .navbar-nav .nav-link {
            color: rgba(247, 245, 240, 0.85);
            font-size: 14.5px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.06);
        }
        .navbar-nav .nav-link.active {
            color: var(--gold);
            background: rgba(201, 168, 76, 0.12);
        }
        .nav-right-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-right-group .btn-nav {
            font-size: 14px;
            padding: 6px 14px;
            border-radius: 8px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            background: transparent;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-right-group .btn-nav:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .nav-right-group .btn-nav.primary {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .nav-right-group .btn-nav.primary:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
        }
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.4);
            color: var(--text-light);
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        /* H1 区域 */
        .category-hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
            padding: 52px 0 44px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(201, 168, 76, 0.08);
            pointer-events: none;
        }
        .category-hero h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .category-hero p {
            font-size: 16.5px;
            color: rgba(247, 245, 240, 0.75);
            max-width: 780px;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
            line-height: 1.8;
        }
        /* 分类入口 */
        .category-entry {
            background: var(--bg);
            padding: 28px 0;
        }
        .category-entry .entry-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }
        .entry-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .entry-pills .pill-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 20px;
            border-radius: 24px;
            font-size: 14.5px;
            font-weight: 500;
            border: 1px solid var(--border-dark);
            background: #fff;
            color: var(--text);
            transition: var(--transition);
        }
        .entry-pills .pill-link:hover {
            border-color: var(--accent);
            background: var(--accent-pale);
            color: var(--accent-dark);
        }
        .entry-pills .pill-link i {
            font-size: 14px;
            color: var(--gold-dark);
        }
        /* 列表卡片 */
        .match-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            transition: var(--transition);
            box-shadow: var(--shadow);
            margin-bottom: 14px;
        }
        .match-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: #d0c9be;
        }
        .match-card .match-info {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 1;
            min-width: 0;
        }
        .match-card .game-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--primary-pale);
            color: var(--primary);
            font-size: 20px;
            flex-shrink: 0;
        }
        .match-card .match-detail {
            min-width: 0;
        }
        .match-card .match-detail .match-name {
            font-weight: 600;
            font-size: 15.5px;
            color: var(--text);
            margin-bottom: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .match-card .match-detail .match-time {
            font-size: 13.5px;
            color: var(--text-muted);
        }
        .match-card .match-score {
            text-align: right;
            flex-shrink: 0;
        }
        .match-card .match-score .score-num {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            font-feature-settings: 'tnum' on;
            letter-spacing: 1px;
        }
        .match-card .match-score .score-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .status-badge {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.3px;
            flex-shrink: 0;
            white-space: nowrap;
        }
        .status-badge.live {
            background: var(--accent);
            color: #fff;
        }
        .status-badge.finished {
            background: #E8F0ED;
            color: var(--primary);
        }
        .status-badge.upcoming {
            background: #fff;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        /* 积分榜摘要 */
        .standings-table {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .standings-table table {
            margin-bottom: 0;
            width: 100%;
            border-collapse: collapse;
        }
        .standings-table th {
            background: var(--primary);
            color: var(--text-light);
            font-weight: 600;
            font-size: 14.5px;
            padding: 14px 18px;
            text-align: left;
            white-space: nowrap;
        }
        .standings-table td {
            padding: 13px 18px;
            font-size: 14.5px;
            border-bottom: 1px solid var(--border);
            color: var(--text);
        }
        .standings-table tr:last-child td {
            border-bottom: none;
        }
        .standings-table tr:hover td {
            background: #FAFAF8;
        }
        .standings-table .rank-col {
            font-weight: 700;
            color: var(--primary);
            width: 60px;
            font-feature-settings: 'tnum' on;
        }
        .standings-table .team-col {
            font-weight: 500;
        }
        .standings-table .num-col {
            font-feature-settings: 'tnum' on;
            text-align: center;
        }
        .table-responsive-custom {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        /* 快讯列表 */
        .news-flash-list {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 18px 24px;
            box-shadow: var(--shadow);
        }
        .news-flash-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            flex-wrap: wrap;
        }
        .news-flash-item:last-child {
            border-bottom: none;
        }
        .news-flash-item .flash-icon {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-pale);
            color: var(--accent-dark);
            font-size: 13px;
        }
        .news-flash-item .flash-text {
            flex: 1;
            min-width: 200px;
            font-size: 14.5px;
            color: var(--text);
        }
        .news-flash-item .flash-time {
            font-size: 13px;
            color: var(--text-muted);
            flex-shrink: 0;
            font-feature-settings: 'tnum' on;
        }
        /* 专家解读 */
        .expert-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        .expert-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .expert-card .expert-img {
            border-radius: var(--radius-sm);
            overflow: hidden;
            margin-bottom: 16px;
            aspect-ratio: 16/9;
        }
        .expert-card .expert-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .expert-card .expert-name {
            font-weight: 600;
            font-size: 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }
        .expert-card .expert-name i {
            color: var(--gold-dark);
            font-size: 14px;
        }
        .expert-card .expert-summary {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 12px;
        }
        .expert-card .data-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 6px;
            background: var(--primary-pale);
            color: var(--primary);
            font-size: 12.5px;
            font-weight: 600;
            margin-right: 6px;
            margin-bottom: 4px;
        }
        /* 订阅CTA */
        .subscribe-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: var(--radius-lg);
            padding: 44px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            flex-wrap: wrap;
        }
        .subscribe-cta .cta-text h2 {
            color: var(--text-light);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .subscribe-cta .cta-text p {
            color: rgba(247, 245, 240, 0.75);
            font-size: 15.5px;
            margin-bottom: 0;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            flex: 1;
            min-width: 280px;
            max-width: 480px;
        }
        .subscribe-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 14.5px;
            transition: var(--transition);
        }
        .subscribe-form input::placeholder {
            color: rgba(247, 245, 240, 0.45);
        }
        .subscribe-form input:focus {
            border-color: var(--gold);
            outline: none;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.25);
        }
        .subscribe-form .btn-subscribe {
            padding: 12px 26px;
            border-radius: 8px;
            border: none;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .subscribe-form .btn-subscribe:hover {
            background: var(--accent-dark);
            transform: translateY(-1px);
        }
        /* FAQ */
        .accordion-custom .accordion-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(31, 58, 51, 0.04);
        }
        .accordion-custom .accordion-button {
            background: var(--primary);
            color: var(--text-light);
            font-weight: 600;
            font-size: 16px;
            padding: 16px 22px;
            border-radius: 0;
            box-shadow: none;
            position: relative;
        }
        .accordion-custom .accordion-button::after {
            content: '+';
            position: absolute;
            right: 22px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 22px;
            font-weight: 400;
            color: var(--gold);
            background: none;
            width: auto;
            height: auto;
        }
        .accordion-custom .accordion-button:not(.collapsed)::after {
            content: '−';
            color: var(--gold);
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: none;
            outline: 2px solid var(--gold);
            outline-offset: -2px;
        }
        .accordion-custom .accordion-body {
            padding: 18px 22px;
            font-size: 15px;
            color: var(--text);
            line-height: 1.8;
        }
        /* 页尾说明条 */
        .page-notice-bar {
            background: var(--bg-alt);
            border-top: 1px solid var(--border);
            padding: 28px 0;
        }
        .page-notice-bar .notice-content {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .page-notice-bar .notice-content i {
            color: var(--gold-dark);
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        /* Footer */
        .site-footer {
            background: var(--primary-dark);
            color: rgba(247, 245, 240, 0.7);
            padding-top: 56px;
            padding-bottom: 28px;
        }
        .site-footer .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .site-footer .footer-brand i {
            color: var(--gold);
            font-size: 22px;
        }
        .footer-desc {
            font-size: 14.5px;
            line-height: 1.8;
            color: rgba(247, 245, 240, 0.65);
            max-width: 340px;
        }
        .site-footer h5 {
            color: var(--text-light);
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: rgba(247, 245, 240, 0.6);
            font-size: 14px;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--gold);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 24px;
            text-align: center;
            font-size: 13.5px;
            color: rgba(247, 245, 240, 0.45);
            line-height: 2;
        }
        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }
        .footer-bottom-links a {
            color: rgba(247, 245, 240, 0.55);
            font-size: 13.5px;
        }
        .footer-bottom-links a:hover {
            color: var(--gold);
        }
        /* 查看更多按钮 */
        .btn-view-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border-radius: 8px;
            border: 1px solid var(--primary);
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
        }
        .btn-view-more:hover {
            background: var(--primary);
            color: var(--text-light);
            transform: translateY(-1px);
        }
        .btn-accent {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: 10px;
            border: none;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
        }
        .btn-accent:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(240, 123, 63, 0.35);
            color: #fff;
        }
        /* 响应式 */
        @media (max-width: 992px) {
            .section-header h2 {
                font-size: 23px;
            }
            .category-hero h1 {
                font-size: 27px;
            }
            .subscribe-cta {
                padding: 36px 28px;
                flex-direction: column;
                text-align: center;
            }
            .subscribe-form {
                max-width: 100%;
            }
            .match-card {
                flex-wrap: wrap;
                align-items: flex-start;
            }
            .match-card .match-score {
                margin-left: auto;
                padding-top: 4px;
            }
            .status-badge {
                margin-left: auto;
            }
        }
        @media (max-width: 768px) {
            :root {
                --section-gap: 44px;
            }
            .category-hero {
                padding: 36px 0 32px;
            }
            .category-hero h1 {
                font-size: 23px;
            }
            .category-hero p {
                font-size: 15px;
            }
            .entry-pills .pill-link {
                padding: 7px 16px;
                font-size: 13.5px;
            }
            .match-card {
                padding: 14px 16px;
            }
            .match-card .game-icon {
                width: 38px;
                height: 38px;
                font-size: 17px;
            }
            .match-card .match-score .score-num {
                font-size: 20px;
            }
            .standings-table th,
            .standings-table td {
                padding: 10px 14px;
                font-size: 13.5px;
            }
            .expert-card {
                padding: 18px;
                margin-bottom: 14px;
            }
            .subscribe-cta {
                padding: 28px 20px;
            }
            .subscribe-cta .cta-text h2 {
                font-size: 20px;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-form .btn-subscribe {
                width: 100%;
            }
            .accordion-custom .accordion-button {
                font-size: 15px;
                padding: 14px 18px;
            }
            .accordion-custom .accordion-button::after {
                right: 18px;
                font-size: 20px;
            }
            .accordion-custom .accordion-body {
                padding: 14px 18px;
                font-size: 14.5px;
            }
            .footer-bottom {
                font-size: 12.5px;
            }
            .footer-bottom-links {
                gap: 12px;
            }
        }
        @media (max-width: 576px) {
            .category-hero h1 {
                font-size: 20px;
            }
            .category-hero {
                padding: 28px 0 26px;
            }
            .match-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .match-card .match-score {
                margin-left: 0;
                text-align: left;
                display: flex;
                align-items: center;
                gap: 14px;
            }
            .match-card .status-badge {
                margin-left: 0;
            }
            .news-flash-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .news-flash-item .flash-time {
                margin-left: 0;
            }
            .expert-card .expert-img {
                aspect-ratio: 4/3;
            }
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
