/* roulang page: index */
:root {
            --primary: #0F4FA8;
            --primary-dark: #0A3A7D;
            --primary-light: #E8F0FC;
            --accent-green: #00A862;
            --accent-green-light: #E6F7F0;
            --accent-orange: #E89B16;
            --accent-orange-light: #FDF3E0;
            --bg-page: #F6F8FC;
            --bg-card: #FFFFFF;
            --border: #E6EBF2;
            --text-primary: #1A1F36;
            --text-secondary: #5A6478;
            --text-muted: #8A93A6;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
            --font-num: 'Roboto', 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --radius-card: 14px;
            --radius-btn: 9px;
            --radius-tag: 6px;
            --shadow-card: 0 2px 8px rgba(15, 79, 168, 0.06);
            --shadow-card-hover: 0 8px 24px rgba(15, 79, 168, 0.12);
            --shadow-nav: 0 1px 4px rgba(15, 79, 168, 0.06);
            --space-section: 72px;
            --space-card-pad: 24px;
            --transition: 0.22s ease;
            --container-max: 1200px;
            --nav-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background: var(--bg-page);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        main {
            flex: 1;
        }

        img {
            max-width: 100%;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        ul,
        ol {
            list-style: none;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        input {
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 10px 14px;
            background: var(--bg-card);
            width: 100%;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(15, 79, 168, 0.1);
            outline: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== Header / Navigation ===== */
        .site-header {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-nav);
            position: sticky;
            top: 0;
            z-index: 100;
            height: var(--nav-height);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
            position: relative;
        }

        .nav-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .nav-group-left {
            justify-content: flex-end;
        }

        .nav-group-right {
            justify-content: flex-start;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-tag);
            transition: color var(--transition), background var(--transition);
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .nav-link.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 600;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 0.5px;
            line-height: 1.2;
            white-space: nowrap;
        }

        .nav-logo .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-tag);
            background: var(--primary-light);
            align-items: center;
            transition: background var(--transition);
        }

        .nav-toggle:hover {
            background: var(--primary-light);
        }

        .nav-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: transform var(--transition), opacity var(--transition);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 8px 24px rgba(15, 79, 168, 0.1);
            padding: 12px 20px 20px;
            flex-direction: column;
            gap: 4px;
            z-index: 99;
        }

        .mobile-menu .nav-link {
            display: block;
            padding: 12px 14px;
            font-size: 15px;
            border-radius: var(--radius-tag);
        }

        .mobile-menu .nav-link.active {
            font-weight: 600;
        }

        /* ===== Hero Section ===== */
        .hero-section {
            padding: 60px 0 48px;
            background: linear-gradient(175deg, #F6F8FC 0%, #EDF2FA 55%, #F6F8FC 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -160px;
            right: -120px;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(15, 79, 168, 0.07) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -120px;
            left: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 168, 98, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 20px;
            margin-bottom: 36px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            padding: 6px 16px;
            border-radius: 20px;
            letter-spacing: 1px;
        }

        .hero-eyebrow .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 168, 98, 0.4);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(0, 168, 98, 0);
            }
        }

        .hero-title {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            max-width: 700px;
            margin: 0 auto;
        }

        .hero-subtitle {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.8;
            color: var(--text-secondary);
            max-width: 720px;
            margin: 0 auto;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 22px;
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            white-space: nowrap;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(15, 79, 168, 0.25);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: none;
        }

        .btn-secondary {
            background: var(--primary-light);
            color: var(--primary);
            border: 1px solid rgba(15, 79, 168, 0.2);
        }
        .btn-secondary:hover {
            background: #D6E4F7;
            color: var(--primary-dark);
            transform: translateY(-1px);
        }

        .btn-accent {
            background: var(--accent-orange);
            color: #fff;
        }
        .btn-accent:hover {
            background: #D4890E;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(232, 155, 22, 0.3);
        }

        .hero-dashboard {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 12px;
        }

        .hero-dashboard .dashboard-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 20px;
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .hero-dashboard .dashboard-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .dashboard-card .card-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .dashboard-card .match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 600;
            margin-top: 4px;
        }

        .dashboard-card .score {
            font-family: var(--font-num);
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            background: var(--primary-light);
            padding: 2px 10px;
            border-radius: var(--radius-tag);
            letter-spacing: 1px;
        }

        .dashboard-card .score.live {
            color: var(--accent-green);
            background: var(--accent-green-light);
        }

        .dashboard-card .score.finished {
            color: var(--text-secondary);
            background: #F0F2F7;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 12px;
        }
        .status-badge.live {
            color: var(--accent-green);
            background: var(--accent-green-light);
        }
        .status-badge.finished {
            color: var(--text-muted);
            background: #F0F2F7;
        }
        .status-badge.upcoming {
            color: var(--accent-orange);
            background: var(--accent-orange-light);
        }

        /* ===== Common Section Styles ===== */
        .section {
            padding: var(--space-section) 0;
        }

        .section-alt {
            background: #FFFFFF;
        }

        .section-header {
            margin-bottom: 32px;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 720px;
        }

        .section-header-inline {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }

        .section-header-inline .section-title {
            margin-bottom: 0;
        }

        .text-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color var(--transition), text-decoration-color var(--transition);
        }
        .text-link:hover {
            color: var(--primary-dark);
            text-decoration-color: transparent;
        }

        /* ===== Indicator Board Section ===== */
        .indicator-board {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .indicator-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: var(--space-card-pad);
            transition: box-shadow var(--transition), transform var(--transition);
            text-align: center;
        }

        .indicator-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .indicator-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 20px;
        }
        .indicator-icon.blue {
            background: var(--primary-light);
            color: var(--primary);
        }
        .indicator-icon.green {
            background: var(--accent-green-light);
            color: var(--accent-green);
        }
        .indicator-icon.orange {
            background: var(--accent-orange-light);
            color: var(--accent-orange);
        }
        .indicator-icon.gray {
            background: #F0F2F7;
            color: var(--text-secondary);
        }

        .indicator-value {
            font-family: var(--font-num);
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.2;
            margin-bottom: 4px;
        }
        .indicator-value.green {
            color: var(--accent-green);
        }
        .indicator-value.orange {
            color: var(--accent-orange);
        }

        .indicator-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ===== Service Matrix ===== */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: var(--space-card-pad);
            transition: box-shadow var(--transition), transform var(--transition);
            position: relative;
        }

        .service-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .service-card .service-tag {
            position: absolute;
            top: 16px;
            right: 16px;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.5px;
        }
        .service-tag.实时 {
            background: var(--accent-green-light);
            color: var(--accent-green);
        }
        .service-tag.热门 {
            background: var(--accent-orange-light);
            color: var(--accent-orange);
        }
        .service-tag.重点 {
            background: var(--primary-light);
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.4;
            padding-right: 50px;
        }

        .service-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* ===== Result Comparison ===== */
        .comparison-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .comparison-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: var(--space-card-pad);
        }

        .comparison-card h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 10px 8px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .comparison-table th {
            font-weight: 600;
            color: var(--text-muted);
            font-size: 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .comparison-table td {
            color: var(--text-primary);
            font-weight: 500;
            font-family: var(--font-num);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .trend-up {
            color: var(--accent-green);
            font-weight: 600;
        }
        .trend-down {
            color: #D64545;
            font-weight: 600;
        }
        .trend-stable {
            color: var(--text-muted);
            font-weight: 600;
        }

        /* ===== Milestones ===== */
        .milestone-track {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .milestone-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 18px 16px;
            text-align: center;
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .milestone-item:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .milestone-number {
            font-family: var(--font-num);
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .milestone-date {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 6px;
            font-family: var(--font-num);
        }

        .milestone-text {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            line-height: 1.5;
        }

        /* ===== News List ===== */
        .news-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .news-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: box-shadow var(--transition), transform var(--transition);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .news-card .cover-img {
            aspect-ratio: 16/9;
            width: 100%;
            object-fit: cover;
            display: block;
        }

        .news-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-date {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 6px;
            font-family: var(--font-num);
        }

        .news-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.5;
            margin-bottom: 8px;
            flex: 1;
        }

        .news-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            padding: 2px 8px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            margin-bottom: 8px;
        }

        .news-tag.green {
            background: var(--accent-green-light);
            color: var(--accent-green);
        }
        .news-tag.orange {
            background: var(--accent-orange-light);
            color: var(--accent-orange);
        }

        .news-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ===== Platform Guarantee ===== */
        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .guarantee-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 20px 18px;
            text-align: center;
            transition: box-shadow var(--transition);
        }

        .guarantee-item:hover {
            box-shadow: var(--shadow-card-hover);
        }

        .guarantee-icon {
            font-size: 28px;
            margin-bottom: 10px;
            display: block;
        }

        .guarantee-item h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .guarantee-item p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== Quick Answers ===== */
        .quick-answer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .quick-answer-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 18px 20px;
            transition: box-shadow var(--transition);
        }

        .quick-answer-card:hover {
            box-shadow: var(--shadow-card-hover);
        }

        .quick-answer-card .qa-question {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .quick-answer-card .qa-question::before {
            content: 'Q';
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            background: var(--primary);
            border-radius: 4px;
            padding: 1px 6px;
            flex-shrink: 0;
        }

        .quick-answer-card .qa-answer {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            padding-left: 28px;
        }

        /* ===== FAQ Section ===== */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: box-shadow var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-card-hover);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 18px 22px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            background: transparent;
            transition: background var(--transition);
            text-align: left;
            width: 100%;
            user-select: none;
        }

        .faq-question:hover {
            background: var(--primary-light);
        }

        .faq-question .faq-arrow {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: transform var(--transition);
            font-size: 18px;
            line-height: 1;
        }

        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.32s ease, padding 0.32s ease;
            padding: 0 22px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }

        /* ===== Form Section ===== */
        .form-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 36px 32px;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .form-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .form-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .form-row {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: center;
        }

        .form-row input {
            max-width: 320px;
            flex: 1;
        }

        /* ===== Brand Introduction ===== */
        .brand-intro-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 36px 32px;
            max-width: 850px;
            margin: 0 auto;
        }

        .brand-intro-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .brand-intro-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 14px;
        }

        .brand-intro-card p:last-child {
            margin-bottom: 0;
        }

        /* ===== Tournament Topics ===== */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .topic-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .topic-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .topic-card .cover-img {
            aspect-ratio: 16/9;
            width: 100%;
            object-fit: cover;
        }

        .topic-body {
            padding: 16px 18px 18px;
        }

        .topic-body h3 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .topic-body p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .topic-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 10px;
            margin-bottom: 6px;
        }
        .topic-tag.league {
            background: var(--primary-light);
            color: var(--primary);
        }
        .topic-tag.cup {
            background: var(--accent-orange-light);
            color: var(--accent-orange);
        }

        /* ===== Team Data Focus ===== */
        .team-focus-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .team-focus-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 22px 20px;
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .team-focus-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .team-focus-card .team-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .team-stat-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border);
            padding: 6px 0;
        }

        .team-stat-row:last-child {
            border-bottom: none;
        }

        .team-stat-row .stat-value {
            font-family: var(--font-num);
            font-weight: 700;
            color: var(--text-primary);
        }

        .team-stat-row .stat-value.green {
            color: var(--accent-green);
        }

        /* ===== Standings & Scorer Table ===== */
        .standings-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .standings-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 22px 20px;
        }

        .standings-card h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }

        .standings-table th,
        .standings-table td {
            padding: 8px 6px;
            text-align: left;
            border-bottom: 1px solid var(--border);
            font-family: var(--font-num);
        }

        .standings-table th {
            font-weight: 600;
            color: var(--text-muted);
            font-size: 11px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .standings-table tr:last-child td {
            border-bottom: none;
        }

        .standings-table .team-name-cell {
            font-family: var(--font-sans);
            font-weight: 500;
            color: var(--text-primary);
        }

        /* ===== Head to Head ===== */
        .h2h-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .h2h-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 22px 20px;
        }

        .h2h-card h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .h2h-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }

        .h2h-table th,
        .h2h-table td {
            padding: 9px 6px;
            text-align: center;
            border-bottom: 1px solid var(--border);
            font-family: var(--font-num);
        }

        .h2h-table th {
            font-weight: 600;
            color: var(--text-muted);
            font-size: 11px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .h2h-table tr:last-child td {
            border-bottom: none;
        }

        .h2h-table .league-cell {
            font-family: var(--font-sans);
            font-weight: 500;
            color: var(--text-primary);
            text-align: left;
        }

        /* ===== Data Update Info ===== */
        .update-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .update-info-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 20px 18px;
            text-align: center;
        }

        .update-info-item .info-icon {
            font-size: 24px;
            display: block;
            margin-bottom: 8px;
        }

        .update-info-item h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .update-info-item p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== Bottom CTA ===== */
        .bottom-cta {
            background: linear-gradient(160deg, var(--primary) 0%, #0A3A7D 60%, #082D61 100%);
            border-radius: var(--radius-card);
            padding: 48px 36px;
            text-align: center;
            color: #fff;
        }

        .bottom-cta h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .bottom-cta p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto 22px;
        }

        .bottom-cta .form-row {
            max-width: 500px;
            margin: 0 auto;
        }
        .bottom-cta input {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.28);
            color: #fff;
        }
        .bottom-cta input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        .bottom-cta input:focus {
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
        }
        .bottom-cta .btn-primary {
            background: #fff;
            color: var(--primary);
        }
        .bottom-cta .btn-primary:hover {
            background: #F0F4FA;
            color: var(--primary-dark);
            box-shadow: 0 4px 14px rgba(255, 255, 255, 0.25);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #FFFFFF;
            border-top: 1px solid var(--border);
            padding: 48px 0 32px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
            margin-bottom: 28px;
        }

        .footer-brand .footer-logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .footer-brand .footer-logo .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: #fff;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-muted);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .footer-bottom a:hover {
            color: var(--primary);
        }

        /* ===== Responsive Styles ===== */
        @media (max-width: 1024px) {
            :root {
                --space-section: 56px;
            }

            .hero-dashboard {
                grid-template-columns: repeat(2, 1fr);
            }

            .indicator-board {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .news-list {
                grid-template-columns: repeat(2, 1fr);
            }

            .guarantee-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .topic-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-focus-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .milestone-track {
                grid-template-columns: repeat(3, 1fr);
            }

            .update-info-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
            }
            .footer-col:last-child {
                grid-column: span 3;
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-section: 44px;
                --nav-height: 56px;
                --space-card-pad: 16px;
            }

            .header-inner {
                justify-content: space-between;
            }

            .nav-group {
                display: none;
            }

            .nav-logo {
                font-size: 17px;
                gap: 6px;
            }
            .nav-logo .logo-badge {
                width: 28px;
                height: 28px;
                font-size: 13px;
                border-radius: 6px;
            }

            .nav-toggle {
                display: flex;
            }

            .mobile-menu.show {
                display: flex;
            }

            .hero-section {
                padding: 40px 0 32px;
            }

            .hero-title {
                font-size: 27px;
            }
            .hero-subtitle {
                font-size: 14px;
                line-height: 1.75;
            }

            .hero-dashboard {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .indicator-board {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .indicator-value {
                font-size: 22px;
            }

            .service-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .comparison-wrapper {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .milestone-track {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .news-list {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .guarantee-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .quick-answer-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .form-card {
                padding: 24px 18px;
            }
            .form-row {
                flex-direction: column;
                gap: 10px;
            }
            .form-row input {
                max-width: 100%;
            }

            .brand-intro-card {
                padding: 24px 18px;
            }
            .brand-intro-card h2 {
                font-size: 19px;
            }
            .brand-intro-card p {
                font-size: 14px;
            }

            .topic-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .team-focus-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .standings-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .h2h-wrapper {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .update-info-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .bottom-cta {
                padding: 32px 18px;
            }
            .bottom-cta h2 {
                font-size: 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-col:last-child {
                grid-column: span 1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 23px;
            }
            .hero-subtitle {
                font-size: 13px;
            }

            .indicator-board {
                grid-template-columns: 1fr;
            }

            .milestone-track {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 20px;
            }

            .btn {
                padding: 9px 16px;
                font-size: 13px;
            }

            .comparison-table,
            .standings-table,
            .h2h-table {
                font-size: 12px;
            }
            .comparison-table th,
            .comparison-table td,
            .standings-table th,
            .standings-table td,
            .h2h-table th,
            .h2h-table td {
                padding: 6px 4px;
            }

            .form-card h3 {
                font-size: 17px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #0F4FA8;
            --primary-dark: #0A3A7D;
            --primary-light: #E8F0FC;
            --accent-green: #00A862;
            --accent-green-light: #E6F7F0;
            --accent-orange: #E89B16;
            --accent-orange-light: #FDF3E0;
            --bg-page: #F6F8FC;
            --bg-card: #FFFFFF;
            --border: #E6EBF2;
            --text-primary: #1A1F36;
            --text-secondary: #5A6478;
            --text-muted: #8A93A6;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
            --font-num: 'Roboto', 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --radius-card: 14px;
            --radius-btn: 9px;
            --radius-tag: 6px;
            --shadow-card: 0 2px 8px rgba(15, 79, 168, 0.06);
            --shadow-card-hover: 0 8px 24px rgba(15, 79, 168, 0.12);
            --shadow-nav: 0 1px 4px rgba(15, 79, 168, 0.06);
            --space-section: 72px;
            --space-card-pad: 24px;
            --transition: 0.22s ease;
            --container-max: 1200px;
            --nav-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background: var(--bg-page);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        main {
            flex: 1;
            display: block;
        }

        img {
            max-width: 100%;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        input {
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 10px 14px;
            background: var(--bg-card);
            width: 100%;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(15, 79, 168, 0.1);
            outline: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== Header / Navigation ===== */
        .site-header {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-nav);
            position: sticky;
            top: 0;
            z-index: 100;
            height: var(--nav-height);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
            position: relative;
        }

        .nav-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .nav-group-left {
            justify-content: flex-end;
        }

        .nav-group-right {
            justify-content: flex-start;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-tag);
            transition: color var(--transition), background var(--transition);
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .nav-link.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 600;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 0.5px;
            line-height: 1.2;
            white-space: nowrap;
        }

        .nav-logo .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-tag);
            background: var(--primary-light);
            align-items: center;
            transition: background var(--transition);
        }

        .nav-toggle:hover {
            background: var(--primary-light);
        }

        .nav-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: transform var(--transition), opacity var(--transition);
        }

        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-card-hover);
            padding: 12px 20px 20px;
            flex-direction: column;
            gap: 4px;
            z-index: 99;
        }

        .mobile-menu.is-open {
            display: flex;
        }

        .mobile-menu .nav-link {
            display: flex;
            padding: 10px 14px;
            font-size: 15px;
            border-radius: var(--radius-tag);
        }

        /* ===== Page Hero ===== */
        .page-hero {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            padding: 48px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(15, 79, 168, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: 20%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 168, 98, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero .container {
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 34px;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .page-hero .hero-sub {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .hero-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 8px;
        }

        .hero-metric {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-page);
            border: 1px solid var(--border);
            border-radius: var(--radius-tag);
            padding: 8px 16px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .hero-metric .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 2s infinite;
        }

        .hero-metric .num {
            font-family: var(--font-num);
            font-weight: 700;
            color: var(--text-primary);
            font-size: 15px;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.3); }
        }

        /* ===== Filter Bar ===== */
        .filter-bar {
            padding: 24px 0 0;
            background: transparent;
        }

        .filter-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-right: 4px;
            white-space: nowrap;
        }

        .filter-tag {
            display: inline-flex;
            align-items: center;
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .filter-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .filter-tag.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        /* ===== Score Cards List ===== */
        .score-section {
            padding: 32px 0 16px;
        }

        .score-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .score-section-header h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .score-section-header .update-time {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .score-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .score-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .score-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .score-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 18px;
            background: var(--bg-page);
            border-bottom: 1px solid var(--border);
            gap: 10px;
        }

        .score-card-league {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .score-card-league .league-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: var(--radius-tag);
            font-size: 11px;
            font-weight: 600;
            background: var(--primary-light);
            color: var(--primary);
            white-space: nowrap;
        }

        .score-card-status {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            white-space: nowrap;
        }

        .status-live {
            background: var(--accent-green-light);
            color: var(--accent-green);
        }

        .status-finished {
            background: var(--bg-page);
            color: var(--text-muted);
        }

        .status-upcoming {
            background: var(--accent-orange-light);
            color: var(--accent-orange);
        }

        .score-card-body {
            display: flex;
            align-items: center;
            padding: 18px 20px;
            gap: 16px;
        }

        .score-card-cover {
            width: 72px;
            height: 72px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid var(--border);
            background: var(--bg-page);
        }

        .score-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .score-card-teams {
            flex: 1;
            min-width: 0;
        }

        .score-card-team {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .score-card-team+.score-card-team {
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px dashed var(--border);
        }

        .team-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .team-score {
            font-family: var(--font-num);
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            min-width: 36px;
            text-align: center;
            flex-shrink: 0;
        }

        .team-score.leading {
            color: var(--accent-green);
        }

        .score-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 18px;
            border-top: 1px solid var(--border);
            font-size: 12px;
            color: var(--text-muted);
            gap: 8px;
            flex-wrap: wrap;
        }

        .score-card-meta .events {
            display: flex;
            gap: 6px;
        }

        .score-card-meta .event-tag {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 11px;
            background: var(--accent-orange-light);
            color: var(--accent-orange);
            font-weight: 600;
        }

        /* ===== More Link ===== */
        .more-wrap {
            text-align: center;
            padding: 20px 0 0;
        }

        .more-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            border-radius: var(--radius-btn);
            transition: all var(--transition);
        }

        .more-link:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-1px);
        }

        .more-link .arrow {
            font-size: 16px;
            line-height: 1;
        }

        /* ===== Data Note Section ===== */
        .data-note-section {
            padding: 40px 0;
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            margin-top: 24px;
        }

        .data-note-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .data-note-card {
            padding: 20px;
            background: var(--bg-page);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
        }

        .data-note-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.4;
        }

        .data-note-card h3 .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 14px;
            flex-shrink: 0;
        }

        .data-note-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* ===== News List ===== */
        .news-section {
            padding: 48px 0;
        }

        .news-section-header {
            margin-bottom: 20px;
        }

        .news-section-header h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .news-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .news-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: box-shadow var(--transition), transform var(--transition);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .news-card-cover {
            aspect-ratio: 16/9;
            overflow: hidden;
            background: var(--bg-page);
        }

        .news-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .news-card:hover .news-card-cover img {
            transform: scale(1.03);
        }

        .news-card-body {
            padding: 16px 18px 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .news-card-meta {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .news-card-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .news-card-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            flex: 1;
        }

        /* ===== FAQ Fragment ===== */
        .faq-fragment {
            padding: 40px 0;
            background: var(--bg-card);
            border-top: 1px solid var(--border);
        }

        .faq-fragment h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 18px;
            line-height: 1.3;
        }

        .faq-fragment-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-tag);
            margin-bottom: 10px;
            overflow: hidden;
            background: var(--bg-page);
        }

        .faq-fragment-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 14px 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: left;
            gap: 12px;
            cursor: pointer;
            transition: background var(--transition);
        }

        .faq-fragment-question:hover {
            background: var(--primary-light);
        }

        .faq-fragment-question .faq-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--primary);
            transition: transform var(--transition);
        }

        .faq-fragment-answer {
            padding: 0 18px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.75;
            display: none;
        }

        .faq-fragment-item.is-open .faq-fragment-answer {
            display: block;
        }

        .faq-fragment-item.is-open .faq-icon {
            transform: rotate(180deg);
        }

        /* ===== Tip Bar / Subscribe ===== */
        .tip-bar-section {
            padding: 36px 0 48px;
        }

        .tip-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            background: var(--primary);
            border-radius: var(--radius-card);
            padding: 24px 28px;
            flex-wrap: wrap;
        }

        .tip-bar-text {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 260px;
        }

        .tip-bar-text .live-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.5s infinite;
            flex-shrink: 0;
        }

        .tip-bar-text p {
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.6;
        }

        .tip-bar-form {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .tip-bar-form input {
            min-width: 220px;
            padding: 10px 14px;
            border: none;
            border-radius: var(--radius-btn);
            background: rgba(255, 255, 255, 0.95);
            color: var(--text-primary);
            font-size: 14px;
        }

        .tip-bar-form input::placeholder {
            color: var(--text-muted);
        }

        .tip-bar-form input:focus {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
            border-color: transparent;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 22px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--accent-green);
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            white-space: nowrap;
            border: none;
        }

        .btn-primary:hover {
            background: #008f52;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 168, 98, 0.3);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #1A1F36;
            color: rgba(255, 255, 255, 0.75);
            padding: 48px 0 24px;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 32px;
        }

        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }

        .footer-logo .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            font-size: 14px;
            flex-shrink: 0;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.45);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .score-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .news-list {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .data-note-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            :root {
                --space-section: 56px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-section: 44px;
                --nav-height: 56px;
                --space-card-pad: 16px;
            }

            .site-header {
                height: var(--nav-height);
            }

            .header-inner {
                height: var(--nav-height);
            }

            .nav-group {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-logo {
                font-size: 17px;
                gap: 6px;
            }

            .nav-logo .logo-badge {
                width: 30px;
                height: 30px;
                font-size: 14px;
                border-radius: 6px;
            }

            .page-hero {
                padding: 32px 0 28px;
            }

            .page-hero h1 {
                font-size: 26px;
            }

            .page-hero .hero-sub {
                font-size: 14px;
            }

            .hero-metrics {
                gap: 8px;
            }

            .hero-metric {
                padding: 6px 12px;
                font-size: 12px;
            }

            .score-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .score-card-body {
                padding: 14px 16px;
                gap: 12px;
            }

            .score-card-cover {
                width: 56px;
                height: 56px;
                border-radius: 8px;
            }

            .score-card-team .team-name {
                font-size: 14px;
            }

            .score-card-team .team-score {
                font-size: 20px;
                min-width: 30px;
            }

            .score-card-top {
                padding: 10px 14px;
            }

            .score-card-meta {
                padding: 8px 14px;
                font-size: 11px;
            }

            .news-list {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .data-note-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .filter-inner {
                gap: 6px;
            }

            .filter-tag {
                padding: 6px 12px;
                font-size: 12px;
            }

            .tip-bar {
                padding: 18px 16px;
                flex-direction: column;
                align-items: stretch;
            }

            .tip-bar-form {
                flex-direction: column;
                width: 100%;
            }

            .tip-bar-form input {
                min-width: auto;
                width: 100%;
            }

            .btn-primary {
                width: 100%;
                justify-content: center;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 6px;
            }
        }

        @media (max-width: 520px) {
            .page-hero h1 {
                font-size: 22px;
            }

            .hero-metric {
                padding: 5px 10px;
                font-size: 11px;
            }

            .score-section-header h2 {
                font-size: 18px;
            }

            .news-section-header h2 {
                font-size: 18px;
            }

            .faq-fragment h2 {
                font-size: 18px;
            }

            .filter-label {
                font-size: 12px;
            }

            .filter-tag {
                padding: 5px 10px;
                font-size: 11px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #0F4FA8;
            --primary-dark: #0A3A7D;
            --primary-light: #E8F0FC;
            --accent-green: #00A862;
            --accent-green-light: #E6F7F0;
            --accent-orange: #E89B16;
            --accent-orange-light: #FDF3E0;
            --bg-page: #F6F8FC;
            --bg-card: #FFFFFF;
            --border: #E6EBF2;
            --text-primary: #1A1F36;
            --text-secondary: #5A6478;
            --text-muted: #8A93A6;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
            --font-num: 'Roboto', 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --radius-card: 14px;
            --radius-btn: 9px;
            --radius-tag: 6px;
            --shadow-card: 0 2px 8px rgba(15, 79, 168, 0.06);
            --shadow-card-hover: 0 8px 24px rgba(15, 79, 168, 0.12);
            --shadow-nav: 0 1px 4px rgba(15, 79, 168, 0.06);
            --space-section: 72px;
            --space-card-pad: 24px;
            --transition: 0.22s ease;
            --container-max: 1200px;
            --nav-height: 64px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background: var(--bg-page);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
        }

        main {
            flex: 1;
        }

        img {
            max-width: 100%;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        input {
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 10px 14px;
            background: var(--bg-card);
            width: 100%;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(15, 79, 168, 0.1);
            outline: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== Header / Navigation ===== */
        .site-header {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-nav);
            position: sticky;
            top: 0;
            z-index: 100;
            height: var(--nav-height);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
            position: relative;
        }

        .nav-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .nav-group-left {
            justify-content: flex-end;
        }

        .nav-group-right {
            justify-content: flex-start;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-tag);
            transition: color var(--transition), background var(--transition);
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .nav-link.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 600;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 0.5px;
            line-height: 1.2;
            white-space: nowrap;
        }

        .nav-logo .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-tag);
            background: var(--primary-light);
            align-items: center;
            transition: background var(--transition);
        }

        .nav-toggle:hover {
            background: var(--primary-light);
        }

        .nav-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-card-hover);
            padding: 16px 20px;
            flex-direction: column;
            gap: 4px;
            z-index: 99;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu .nav-link {
            display: block;
            padding: 10px 12px;
            font-size: 15px;
            border-radius: var(--radius-tag);
        }

        /* ===== Page Title Area ===== */
        .page-hero {
            background: linear-gradient(135deg, #E8F0FC 0%, #F6F8FC 55%, #FFFFFF 100%);
            border-bottom: 1px solid var(--border);
            padding: 48px 0 40px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .breadcrumb a {
            color: var(--primary);
        }

        .breadcrumb a:hover {
            color: var(--primary-dark);
        }

        .breadcrumb .sep {
            color: var(--text-muted);
        }

        .page-hero h1 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.25;
            margin: 0 0 12px;
            color: var(--text-primary);
            letter-spacing: 0.5px;
        }

        .page-hero .hero-sub {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
            margin: 0;
        }

        /* ===== Section Common ===== */
        .section {
            padding: var(--space-section) 0;
        }

        .section-alt {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 28px;
            gap: 16px;
            flex-wrap: wrap;
        }

        .section-title {
            font-size: 22px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
            color: var(--text-primary);
        }

        .section-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 4px 0 0;
            line-height: 1.7;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 20px;
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-live {
            background: var(--accent-green-light);
            color: var(--accent-green);
        }

        .badge-live::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent-green);
            border-radius: 50%;
            animation: pulse-live 1.8s ease-in-out infinite;
        }

        .badge-orange {
            background: var(--accent-orange-light);
            color: var(--accent-orange);
        }

        .badge-primary {
            background: var(--primary-light);
            color: var(--primary);
        }

        @keyframes pulse-live {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.45; transform: scale(1.3); }
        }

        /* ===== Indicator Cards ===== */
        .indicator-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .indicator-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .indicator-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .indicator-card .label {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .indicator-card .value {
            font-family: var(--font-num);
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            font-variant-numeric: tabular-nums;
            line-height: 1.2;
        }

        .indicator-card .note {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 8px;
        }

        /* ===== Schedule List ===== */
        .schedule-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .schedule-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: box-shadow var(--transition), transform var(--transition);
            display: flex;
            flex-direction: column;
        }

        .schedule-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .schedule-card .card-img {
            height: 160px;
            background: var(--primary-light);
            position: relative;
            overflow: hidden;
        }

        .schedule-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .schedule-card .card-body {
            padding: 18px 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }

        .schedule-card .card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--text-muted);
        }

        .schedule-card .card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            line-height: 1.4;
        }

        .schedule-card .card-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.7;
            flex: 1;
        }

        .schedule-card .card-tags {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            padding: 3px 8px;
            font-size: 12px;
            font-weight: 500;
            border-radius: var(--radius-tag);
            background: var(--bg-page);
            color: var(--text-secondary);
            border: 1px solid var(--border);
            white-space: nowrap;
        }

        .tag-green {
            background: var(--accent-green-light);
            color: var(--accent-green);
            border-color: transparent;
        }

        .tag-orange {
            background: var(--accent-orange-light);
            color: var(--accent-orange);
            border-color: transparent;
        }

        .tag-primary {
            background: var(--primary-light);
            color: var(--primary);
            border-color: transparent;
        }

        .btn-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 22px;
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--radius-btn);
            background: var(--primary);
            color: #fff;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
            white-space: nowrap;
        }

        .btn-more:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: var(--shadow-card-hover);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 9px 20px;
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--radius-btn);
            background: var(--primary-light);
            color: var(--primary);
            border: 1px solid var(--primary);
            transition: background var(--transition), color var(--transition), border-color var(--transition);
            white-space: nowrap;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .list-footer {
            display: flex;
            justify-content: center;
            margin-top: 24px;
        }

        /* ===== Points Table ===== */
        .points-wrapper {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 24px;
            overflow-x: auto;
        }

        .points-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 640px;
        }

        .points-table th {
            text-align: left;
            padding: 12px 12px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border);
            white-space: nowrap;
        }

        .points-table td {
            padding: 12px;
            border-bottom: 1px solid var(--border);
            color: var(--text-primary);
            white-space: nowrap;
        }

        .points-table tr:last-child td {
            border-bottom: none;
        }

        .points-table .team-name {
            font-weight: 600;
        }

        .points-table .num {
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
            font-weight: 600;
        }

        .rank-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 8px;
            vertical-align: middle;
        }

        /* ===== Data Note ===== */
        .data-note-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .data-note-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 22px;
            box-shadow: var(--shadow-card);
        }

        .data-note-card .note-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 14px;
            color: var(--primary);
        }

        .data-note-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 8px;
            color: var(--text-primary);
        }

        .data-note-card p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.7;
        }

        .update-time {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
            background: var(--accent-green-light);
            padding: 6px 14px;
            border-radius: 20px;
        }

        .update-time .dot {
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: box-shadow var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-card-hover);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
            padding: 16px 20px;
            text-align: left;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            transition: color var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .arrow {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
            color: var(--text-muted);
        }

        .faq-item.open .faq-question .arrow {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-bottom: 18px;
        }

        /* ===== CTA / Subscribe ===== */
        .cta-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 16px;
            padding: 36px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-card-hover);
        }

        .cta-card .cta-text {
            flex: 1;
            min-width: 260px;
        }

        .cta-card .cta-text h3 {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 8px;
        }

        .cta-card .cta-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.82);
            margin: 0;
            line-height: 1.7;
        }

        .cta-form {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-shrink: 0;
            min-width: 280px;
            flex-wrap: wrap;
        }

        .cta-form input {
            flex: 1;
            min-width: 180px;
            background: #fff;
            border: none;
            border-radius: var(--radius-btn);
            padding: 12px 16px;
            font-size: 14px;
        }

        .cta-form .btn-submit {
            background: var(--accent-orange);
            color: #fff;
            border: none;
            border-radius: var(--radius-btn);
            padding: 12px 22px;
            font-size: 14px;
            font-weight: 600;
            transition: background var(--transition), transform var(--transition);
            white-space: nowrap;
        }

        .cta-form .btn-submit:hover {
            background: #d0850f;
            transform: translateY(-1px);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #0F254A;
            color: rgba(255, 255, 255, 0.72);
            padding: 48px 0 24px;
            margin-top: 0;
        }

        .site-footer .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            max-width: 320px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-logo .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin: 0 0 14px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            transition: color var(--transition);
        }

        .footer-col ul a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1023px) {
            .indicator-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .schedule-list {
                grid-template-columns: repeat(2, 1fr);
            }

            .data-note-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .footer-brand {
                max-width: none;
                grid-column: span 2;
            }
        }

        @media (max-width: 767px) {
            :root {
                --space-section: 44px;
                --nav-height: 56px;
                --space-card-pad: 16px;
            }

            .nav-group {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .header-inner {
                justify-content: space-between;
                gap: 10px;
            }

            .nav-logo {
                font-size: 18px;
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }

            .nav-logo .logo-badge {
                width: 30px;
                height: 30px;
                font-size: 14px;
                border-radius: 7px;
            }

            .page-hero {
                padding: 32px 0 28px;
            }

            .page-hero h1 {
                font-size: 26px;
            }

            .page-hero .hero-sub {
                font-size: 14px;
            }

            .section {
                padding: var(--space-section) 0;
            }

            .section-head {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 20px;
            }

            .section-title {
                font-size: 19px;
            }

            .indicator-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .indicator-card {
                padding: 16px;
            }

            .indicator-card .value {
                font-size: 24px;
            }

            .schedule-list {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .schedule-card .card-img {
                height: 140px;
            }

            .schedule-card .card-body {
                padding: 14px 16px 16px;
            }

            .schedule-card .card-title {
                font-size: 15px;
            }

            .data-note-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .cta-card {
                padding: 24px 18px;
                flex-direction: column;
                align-items: stretch;
            }

            .cta-form {
                min-width: 0;
                width: 100%;
                flex-direction: column;
                gap: 10px;
            }

            .cta-form input {
                min-width: 0;
                width: 100%;
            }

            .cta-form .btn-submit {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-brand {
                grid-column: span 1;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .points-wrapper {
                padding: 16px;
            }

            .faq-question {
                padding: 14px 16px;
                font-size: 14px;
            }

            .faq-answer {
                padding: 0 16px;
                font-size: 13px;
            }

            .faq-item.open .faq-answer {
                padding-bottom: 14px;
            }
        }

        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 22px;
            }

            .section-title {
                font-size: 17px;
            }

            .schedule-card .card-img {
                height: 120px;
            }

            .btn-more,
            .btn-outline {
                padding: 9px 16px;
                font-size: 13px;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #0F4FA8;
            --primary-dark: #0A3A7D;
            --primary-light: #E8F0FC;
            --accent-green: #00A862;
            --accent-green-light: #E6F7F0;
            --accent-orange: #E89B16;
            --accent-orange-light: #FDF3E0;
            --bg-page: #F6F8FC;
            --bg-card: #FFFFFF;
            --border: #E6EBF2;
            --text-primary: #1A1F36;
            --text-secondary: #5A6478;
            --text-muted: #8A93A6;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
            --font-num: 'Roboto', 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --radius-card: 14px;
            --radius-btn: 9px;
            --radius-tag: 6px;
            --shadow-card: 0 2px 8px rgba(15, 79, 168, 0.06);
            --shadow-card-hover: 0 8px 24px rgba(15, 79, 168, 0.12);
            --shadow-nav: 0 1px 4px rgba(15, 79, 168, 0.06);
            --space-section: 72px;
            --space-card-pad: 24px;
            --transition: 0.22s ease;
            --container-max: 1200px;
            --nav-height: 64px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-primary);
            background: var(--bg-page);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        main {
            flex: 1;
            display: block;
        }

        img {
            max-width: 100%;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        input {
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 10px 14px;
            background: var(--bg-card);
            width: 100%;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(15, 79, 168, 0.1);
            outline: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .site-header {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-nav);
            position: sticky;
            top: 0;
            z-index: 100;
            height: var(--nav-height);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
            position: relative;
        }

        .nav-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .nav-group-left {
            justify-content: flex-end;
        }

        .nav-group-right {
            justify-content: flex-start;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-tag);
            transition: color var(--transition), background var(--transition);
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .nav-link.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 600;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 0.5px;
            line-height: 1.2;
            white-space: nowrap;
        }

        .nav-logo .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-tag);
            background: var(--primary-light);
            align-items: center;
            transition: background var(--transition);
        }

        .nav-toggle:hover {
            background: var(--primary-light);
        }

        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: transform var(--transition), opacity var(--transition);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            padding: 12px 20px 20px;
            gap: 4px;
        }

        .mobile-menu .nav-link {
            display: block;
            padding: 10px 12px;
            font-size: 15px;
            color: var(--text-primary);
            border-radius: var(--radius-tag);
        }

        .mobile-menu .nav-link.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 600;
        }

        /* Category Hero */
        .category-hero {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            padding: 48px 0 36px;
        }

        .category-hero h1 {
            font-size: 30px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .category-hero .hero-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 760px;
            line-height: 1.8;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            background: var(--primary-light);
            color: var(--primary);
        }

        .hero-badge.green {
            background: var(--accent-green-light);
            color: var(--accent-green);
        }

        .hero-badge.orange {
            background: var(--accent-orange-light);
            color: var(--accent-orange);
        }

        /* Section Common */
        .section {
            padding: var(--space-section) 0;
        }

        .section-alt {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-header {
            margin-bottom: 28px;
        }

        .section-header h2 {
            font-size: 23px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 15px;
            max-width: 680px;
            line-height: 1.7;
        }

        /* Team Cards Grid */
        .team-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .team-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .team-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .team-card-img {
            aspect-ratio: 16/9;
            overflow: hidden;
            background: var(--primary-light);
            position: relative;
        }

        .team-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card-body {
            padding: 18px 20px 20px;
        }

        .team-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 10px;
        }

        .tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-tag);
            font-size: 12px;
            font-weight: 500;
            background: var(--primary-light);
            color: var(--primary);
        }

        .tag.green {
            background: var(--accent-green-light);
            color: var(--accent-green);
        }

        .tag.orange {
            background: var(--accent-orange-light);
            color: var(--accent-orange);
        }

        .team-card h3 {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .team-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .team-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
            padding-top: 14px;
        }

        .team-card-meta .score-num {
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 18px;
            color: var(--primary);
        }

        /* Top Scorer Board */
        .scorer-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .scorer-board {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }

        .scorer-board-header {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--primary-light);
        }

        .scorer-board-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary);
        }

        .scorer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .scorer-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
            color: var(--text-secondary);
        }

        .scorer-list li:last-child {
            border-bottom: none;
        }

        .scorer-rank {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 700;
            font-size: 13px;
            margin-right: 12px;
        }

        .scorer-rank.top {
            background: var(--accent-orange-light);
            color: var(--accent-orange);
        }

        .scorer-name {
            flex: 1;
            font-weight: 500;
            color: var(--text-primary);
        }

        .scorer-goals {
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 18px;
            color: var(--accent-orange);
        }

        /* Comparison Table */
        .comparison-table-wrap {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow-x: auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 640px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 14px 16px;
            text-align: left;
            font-size: 14px;
            border-bottom: 1px solid var(--border);
            white-space: nowrap;
        }

        .comparison-table th {
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
            font-size: 13px;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table td {
            color: var(--text-secondary);
        }

        .comparison-table td .win {
            color: var(--accent-green);
            font-weight: 600;
        }
        .comparison-table td .draw {
            color: var(--accent-orange);
            font-weight: 600;
        }
        .comparison-table td .loss {
            color: #D64545;
            font-weight: 600;
        }

        /* Info Cards */
        .info-card-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .info-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: box-shadow var(--transition);
        }

        .info-card:hover {
            box-shadow: var(--shadow-card-hover);
        }

        .info-card .num {
            font-family: var(--font-num);
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            display: block;
            margin-bottom: 4px;
        }

        .info-card .label {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Data Note Box */
        .data-note-box {
            background: var(--bg-card);
            border-left: 4px solid var(--primary);
            border-radius: 0 var(--radius-card) var(--radius-card) 0;
            padding: 20px 24px;
            box-shadow: var(--shadow-card);
            display: flex;
            gap: 14px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .data-note-box .note-icon {
            font-size: 26px;
            flex-shrink: 0;
        }

        .data-note-box h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .data-note-box p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }

        /* News Mini List */
        .news-mini-list {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }

        .news-mini-item {
            display: flex;
            gap: 14px;
            padding: 14px 20px;
            border-bottom: 1px solid var(--border);
            align-items: center;
            transition: background var(--transition);
        }

        .news-mini-item:last-child {
            border-bottom: none;
        }

        .news-mini-item:hover {
            background: var(--primary-light);
        }

        .news-mini-date {
            font-family: var(--font-num);
            font-size: 12px;
            color: var(--text-muted);
            min-width: 80px;
        }

        .news-mini-text {
            flex: 1;
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
        }

        .news-mini-badge {
            display: inline-block;
            padding: 2px 10px;
            border-radius: var(--radius-tag);
            font-size: 12px;
            font-weight: 500;
            background: var(--accent-green-light);
            color: var(--accent-green);
            white-space: nowrap;
        }

        /* CTA */
        .cta-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-card);
            padding: 36px 32px;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-card h2 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
            color: #fff;
        }

        .cta-card p {
            font-size: 14px;
            opacity: 0.88;
            max-width: 520px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 24px;
            background: #fff;
            color: var(--primary);
            font-weight: 700;
            font-size: 15px;
            border-radius: var(--radius-btn);
            transition: background var(--transition), transform var(--transition);
            white-space: nowrap;
        }

        .cta-btn:hover {
            background: var(--primary-light);
            transform: translateY(-1px);
        }

        /* Button styles */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--primary);
            color: #fff;
            font-weight: 500;
            font-size: 14px;
            border-radius: var(--radius-btn);
            transition: background var(--transition), transform var(--transition);
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            color: #fff;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 500;
            font-size: 14px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--primary);
            transition: background var(--transition), transform var(--transition);
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: #D8E6F9;
            transform: translateY(-1px);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            padding: 48px 0 28px;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-top: 10px;
            max-width: 320px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
        }

        .footer-logo .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: #fff;
            border-radius: 6px;
            font-size: 13px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 14px;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            :root {
                --space-section: 56px;
            }
            .team-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .info-card-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .scorer-layout {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-section: 44px;
                --nav-height: 56px;
                --space-card-pad: 16px;
            }
            .nav-group {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .header-inner {
                justify-content: space-between;
            }
            .nav-logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }
            .mobile-menu.active {
                display: flex;
            }
            .category-hero h1 {
                font-size: 24px;
            }
            .category-hero {
                padding: 32px 0 24px;
            }
            .section-header h2 {
                font-size: 19px;
            }
            .team-card-grid {
                grid-template-columns: 1fr;
            }
            .info-card-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .info-card .num {
                font-size: 22px;
            }
            .cta-card {
                padding: 24px 20px;
                flex-direction: column;
                text-align: center;
            }
            .cta-card h2 {
                font-size: 18px;
            }
            .comparison-table {
                min-width: 520px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .news-mini-item {
                flex-wrap: wrap;
                gap: 8px;
            }
        }

        @media (max-width: 520px) {
            :root {
                --space-section: 36px;
            }
            .container {
                padding: 0 14px;
            }
            .info-card-row {
                grid-template-columns: 1fr;
            }
            .team-card-body {
                padding: 14px 16px 16px;
            }
            .scorer-list li {
                padding: 10px 14px;
                font-size: 13px;
            }
            .data-note-box {
                padding: 16px;
            }
            .cta-btn {
                padding: 10px 18px;
                font-size: 14px;
            }
        }

/* roulang page: category3 */
:root {
      --primary: #0F4FA8;
      --primary-dark: #0A3A7D;
      --primary-light: #E8F0FC;
      --accent-green: #00A862;
      --accent-green-light: #E6F7F0;
      --accent-orange: #E89B16;
      --accent-orange-light: #FDF3E0;
      --bg-page: #F6F8FC;
      --bg-card: #FFFFFF;
      --border: #E6EBF2;
      --text-primary: #1A1F36;
      --text-secondary: #5A6478;
      --text-muted: #8A93A6;
      --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
      --font-num: 'Roboto', 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
      --radius-card: 14px;
      --radius-btn: 9px;
      --radius-tag: 6px;
      --shadow-card: 0 2px 8px rgba(15, 79, 168, 0.06);
      --shadow-card-hover: 0 8px 24px rgba(15, 79, 168, 0.12);
      --shadow-nav: 0 1px 4px rgba(15, 79, 168, 0.06);
      --space-section: 72px;
      --space-card-pad: 24px;
      --transition: 0.22s ease;
      --container-max: 1200px;
      --nav-height: 64px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body,
    h1,
    h2,
    h3,
    h4,
    p,
    ul,
    ol,
    li,
    figure,
    figcaption {
      margin: 0;
      padding: 0;
    }

    ul,
    ol {
      list-style: none;
    }

    body {
      font-family: var(--font-sans);
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-primary);
      background: var(--bg-page);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    main {
      flex: 1;
    }

    img {
      max-width: 100%;
      display: block;
      border: 0;
    }

    a {
      color: var(--primary);
      text-decoration: none;
      transition: color var(--transition);
    }

    a:hover {
      color: var(--primary-dark);
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
      border-radius: 4px;
    }

    button,
    input,
    select,
    textarea {
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
      color: inherit;
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
    }

    input {
      border: 1px solid var(--border);
      border-radius: var(--radius-btn);
      padding: 10px 14px;
      background: var(--bg-card);
      width: 100%;
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(15, 79, 168, 0.1);
      outline: none;
    }

    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 20px;
    }

    .section {
      padding: var(--space-section) 0;
    }

    .section-heading {
      max-width: 720px;
      margin-bottom: 32px;
    }

    .section-heading h2 {
      font-size: 24px;
      line-height: 1.3;
      color: var(--text-primary);
      font-weight: 700;
    }

    .section-heading p {
      margin-top: 8px;
      color: var(--text-secondary);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      background: var(--primary-light);
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 18px;
      border-radius: var(--radius-btn);
      font-weight: 600;
      font-size: 14px;
      transition: background var(--transition), transform var(--transition), color var(--transition), box-shadow var(--transition);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      border: 1px solid var(--primary);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(15, 79, 168, 0.16);
    }

    .btn-secondary {
      background: var(--primary-light);
      color: var(--primary);
      border: 1px solid #CFDFF2;
    }

    .btn-secondary:hover {
      background: #DCE9FA;
      color: var(--primary-dark);
      transform: translateY(-1px);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      padding: 3px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      line-height: 1.4;
      white-space: nowrap;
    }

    .badge-blue {
      background: var(--primary-light);
      color: var(--primary);
    }

    .badge-green {
      background: var(--accent-green-light);
      color: var(--accent-green);
    }

    .badge-orange {
      background: var(--accent-orange-light);
      color: var(--accent-orange);
    }

    /* Header / Navigation */
    .site-header {
      background: var(--bg-card);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-nav);
      position: sticky;
      top: 0;
      z-index: 100;
      height: var(--nav-height);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--nav-height);
      gap: 16px;
      position: relative;
    }

    .nav-group {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1;
    }

    .nav-group-left {
      justify-content: flex-end;
    }

    .nav-group-right {
      justify-content: flex-start;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      border-radius: var(--radius-tag);
      transition: color var(--transition), background var(--transition);
      white-space: nowrap;
    }

    .nav-link:hover {
      color: var(--primary);
      background: var(--primary-light);
    }

    .nav-link.active {
      color: var(--primary);
      background: var(--primary-light);
      font-weight: 600;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      font-size: 20px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: 0.5px;
      line-height: 1.2;
      white-space: nowrap;
    }

    .nav-logo .logo-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      background: var(--primary);
      color: #fff;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      padding: 8px;
      border-radius: var(--radius-tag);
      background: var(--primary-light);
      align-items: center;
      transition: background var(--transition);
    }

    .nav-toggle:hover {
      background: #DCE9FA;
    }

    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: all var(--transition);
    }

    .mobile-menu {
      display: none;
    }

    /* Hero */
    .league-hero {
      background: linear-gradient(180deg, #EDF3FC 0%, var(--bg-page) 100%);
      border-bottom: 1px solid var(--border);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 40px;
      align-items: center;
      padding: 64px 0;
    }

    .hero-head h1 {
      font-size: 32px;
      line-height: 1.2;
      font-weight: 800;
      color: var(--text-primary);
    }

    .hero-head p {
      margin: 12px 0 20px;
      font-size: 16px;
      color: var(--text-secondary);
      max-width: 460px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-route {
      width: 100%;
    }

    .route-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      padding: 24px;
    }

    .route-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }

    .live-dot {
      width: 9px;
      height: 9px;
      background: var(--accent-green);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(0, 168, 98, 0.15);
    }

    .route-title {
      font-weight: 700;
      color: var(--text-primary);
    }

    .route-cost {
      margin-left: auto;
      font-size: 12px;
      color: var(--text-muted);
    }

    .node-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-bottom: 18px;
    }

    .node {
      background: var(--bg-page);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 10px;
      text-align: center;
    }

    .node.done {
      background: var(--primary-light);
      border-color: #CFDFF2;
    }

    .node.active {
      background: var(--accent-green-light);
      border-color: var(--accent-green);
    }

    .node span {
      display: block;
      font-size: 12px;
      color: var(--text-muted);
    }

    .node strong {
      display: block;
      font-size: 13px;
      margin-top: 2px;
      color: var(--text-primary);
    }

    .route-summary {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 16px;
    }

    .route-summary div {
      background: var(--bg-page);
      border-radius: 10px;
      padding: 10px;
      text-align: center;
    }

    .route-summary span {
      display: block;
      font-size: 12px;
      color: var(--text-secondary);
    }

    .route-summary strong {
      font-size: 18px;
      font-family: var(--font-num);
      color: var(--text-primary);
    }

    .mini-subscribe {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .mini-subscribe input {
      flex: 1;
      min-width: 180px;
    }

    .mini-subscribe .btn {
      white-space: nowrap;
    }

    /* Focus */
    .focus-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .focus-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: box-shadow var(--transition), transform var(--transition);
    }

    .focus-card:hover {
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-2px);
    }

    .focus-card img {
      height: 180px;
      width: 100%;
      object-fit: cover;
    }

    .focus-body {
      padding: 18px 20px 20px;
    }

    .focus-body h3 {
      font-size: 18px;
      margin: 8px 0 6px;
      color: var(--text-primary);
    }

    .focus-body p {
      color: var(--text-secondary);
      font-size: 14px;
    }

    .data-date {
      display: inline-block;
      margin-top: 10px;
      font-size: 12px;
      color: var(--text-muted);
    }

    /* League list */
    .league-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .league-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: box-shadow var(--transition), transform var(--transition);
    }

    .league-card:hover {
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-2px);
    }

    .league-card img {
      height: 150px;
      width: 100%;
      object-fit: cover;
    }

    .league-card-body {
      padding: 18px 20px 20px;
    }

    .league-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .match-count {
      font-size: 12px;
      color: var(--text-muted);
    }

    .league-card-body h3 {
      font-size: 17px;
      margin-bottom: 6px;
      color: var(--text-primary);
    }

    .league-card-body p {
      color: var(--text-secondary);
      font-size: 14px;
    }

    .league-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin: 10px 0;
    }

    .league-tags span {
      font-size: 12px;
      color: var(--primary);
      background: var(--primary-light);
      padding: 2px 8px;
      border-radius: 999px;
    }

    .section-action {
      display: flex;
      justify-content: center;
      margin-top: 28px;
    }

    /* Team reader */
    .team-reader-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .team-reader-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 20px;
      box-shadow: var(--shadow-card);
      display: flex;
      align-items: center;
      gap: 14px;
      transition: box-shadow var(--transition), transform var(--transition);
    }

    .team-reader-card:hover {
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-1px);
    }

    .team-rank {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      flex-shrink: 0;
    }

    .team-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 3px;
      min-width: 0;
    }

    .team-info strong {
      font-size: 16px;
      color: var(--text-primary);
    }

    .team-info span {
      font-size: 13px;
      color: var(--text-secondary);
    }

    .trend-up {
      font-size: 12px;
      color: var(--accent-green);
      background: var(--accent-green-light);
      padding: 3px 8px;
      border-radius: 999px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* Season timeline */
    .season-timeline {
      max-width: 780px;
      margin: 0 auto;
      position: relative;
      padding-left: 24px;
      border-left: 2px solid var(--primary-light);
    }

    .season-timeline li {
      position: relative;
      padding: 0 0 28px 20px;
    }

    .season-timeline li:last-child {
      padding-bottom: 0;
    }

    .season-timeline li::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 4px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 4px rgba(15, 79, 168, 0.12);
    }

    .season-timeline .timeline-date {
      display: inline-block;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 12px;
      padding: 2px 8px;
      border-radius: 999px;
      margin-bottom: 6px;
    }

    .season-timeline h3 {
      font-size: 17px;
      margin-bottom: 4px;
      color: var(--text-primary);
    }

    .season-timeline p {
      color: var(--text-secondary);
      font-size: 14px;
    }

    /* Data note */
    .data-note-section {
      background: var(--bg-card);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .data-note-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 32px;
      align-items: center;
    }

    .data-note-grid h2 {
      font-size: 22px;
      color: var(--text-primary);
      margin-bottom: 10px;
    }

    .data-note-grid p {
      color: var(--text-secondary);
      font-size: 15px;
    }

    .data-note-stats {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .data-note-stats div {
      background: var(--bg-page);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-card);
    }

    .data-note-stats strong {
      font-size: 22px;
      font-family: var(--font-num);
      color: var(--primary);
    }

    .data-note-stats span {
      color: var(--text-secondary);
      font-size: 14px;
    }

    /* Comparison table */
    .comparison-table-wrap {
      overflow-x: auto;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 700px;
      font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .comparison-table th {
      background: var(--bg-page);
      color: var(--text-secondary);
      font-weight: 600;
      white-space: nowrap;
    }

    .comparison-table td:first-child {
      font-weight: 600;
      color: var(--text-primary);
    }

    .comparison-table tr:last-child td {
      border-bottom: 0;
    }

    .win {
      color: var(--accent-green);
      font-weight: 600;
    }

    .draw {
      color: var(--text-secondary);
    }

    .lose {
      color: #C2412D;
    }

    /* FAQ */
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      margin-bottom: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: box-shadow var(--transition);
    }

    .faq-item.open {
      box-shadow: var(--shadow-card-hover);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 20px;
      text-align: left;
      font-weight: 600;
      font-size: 15px;
      color: var(--text-primary);
    }

    .faq-question:hover {
      color: var(--primary);
    }

    .faq-question .chevron {
      transition: transform var(--transition);
      flex-shrink: 0;
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1;
    }

    .faq-item.open .chevron {
      transform: rotate(180deg);
      color: var(--primary);
    }

    .faq-answer {
      max-height: 0;
      padding: 0 20px;
      transition: max-height 0.3s ease, padding 0.3s ease;
      overflow: hidden;
      color: var(--text-secondary);
      font-size: 14px;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 20px 16px;
    }

    /* Subscribe */
    .subscribe-section {
      background: var(--primary);
    }

    .subscribe-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      padding: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .subscribe-card h2 {
      font-size: 22px;
      color: var(--text-primary);
      margin-bottom: 6px;
    }

    .subscribe-card p {
      color: var(--text-secondary);
      margin-top: 6px;
      max-width: 440px;
    }

    .subscribe-form {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
    }

    .subscribe-form input {
      max-width: 220px;
    }

    .form-feedback {
      width: 100%;
      color: var(--accent-green);
      font-size: 14px;
      margin-top: 10px;
      min-height: 20px;
    }

    /* Footer */
    .site-footer {
      background: var(--text-primary);
      color: #D8DEE9;
      margin-top: 0;
      padding-top: 52px;
      padding-bottom: 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 32px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #fff;
      font-size: 20px;
      font-weight: 800;
    }

    .footer-logo .logo-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      background: var(--primary);
      color: #fff;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .footer-brand p {
      color: #AEB6C2;
      font-size: 13px;
      margin-top: 8px;
      max-width: 280px;
      line-height: 1.6;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 15px;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    .footer-col a {
      color: #AEB6C2;
      font-size: 13px;
      transition: color var(--transition);
    }

    .footer-col a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 28px;
      padding-top: 16px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      font-size: 12px;
      color: #AEB6C2;
    }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: var(--text-primary);
      color: #fff;
      padding: 12px 16px;
      border-radius: var(--radius-btn);
      box-shadow: 0 8px 24px rgba(15, 79, 168, 0.2);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 200;
      font-size: 14px;
    }

    .toast.show {
      opacity: 1;
    }

    @media (max-width: 1023px) {
      :root {
        --space-section: 56px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .focus-grid,
      .league-grid,
      .team-reader-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .data-note-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 767px) {
      :root {
        --space-section: 44px;
        --nav-height: 56px;
      }

      .nav-group {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .mobile-menu {
        display: none;
      }

      .mobile-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-nav);
        padding: 10px 20px 14px;
        z-index: 99;
      }

      .mobile-menu .nav-link {
        display: flex;
        padding: 12px 10px;
        border-bottom: 1px solid var(--border);
      }

      .mobile-menu .nav-link:last-child {
        border-bottom: 0;
      }

      .focus-grid,
      .league-grid,
      .team-reader-grid,
      .data-note-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-head h1 {
        font-size: 28px;
      }

      .node-track {
        grid-template-columns: repeat(2, 1fr);
      }

      .route-summary {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
      }

      .subscribe-card {
        flex-direction: column;
        align-items: flex-start;
      }

      .subscribe-form {
        width: 100%;
        flex-direction: column;
      }

      .subscribe-form input {
        max-width: none;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 4px;
      }
    }

    @media (max-width: 520px) {
      .container {
        padding: 0 16px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn,
      .hero-actions a {
        width: 100%;
      }

      .section-heading h2 {
        font-size: 21px;
      }

      .league-card img,
      .focus-card img {
        height: 140px;
      }

      .mini-subscribe {
        flex-direction: column;
      }

      .mini-subscribe .btn {
        width: 100%;
      }

      .node-track {
        gap: 6px;
      }

      .node {
        padding: 10px 6px;
      }
    }
