:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-color: #f8fafc;
            --dark-color: #0f172a;
            --gray-color: #64748b;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 50%, var(--dark-color) 100%);
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .section-padding {
            padding: 80px 0;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
        }
        .result-badge {
            font-size: 0.85rem;
            padding: 4px 12px;
            border-radius: 20px;
        }
        .bg-win { background-color: #10b981; color: white; }
        .bg-draw { background-color: #f59e0b; color: white; }
        .bg-lose { background-color: #ef4444; color: white; }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background: #f1f5f9;
            border-radius: 6px;
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            border-color: var(--primary-color);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .news-card {
            border-left: 4px solid var(--primary-color);
        }
        .footer {
            background: var(--dark-color);
            color: #cbd5e1;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer a:hover {
            color: white;
        }
        .btn-custom {
            background: var(--secondary-color);
            color: white;
            padding: 10px 28px;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            background: #b91c1c;
            color: white;
            transform: scale(1.05);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
        }
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .league-logo {
            width: 40px;
            height: 40px;
            object-fit: contain;
            margin-right: 10px;
        }
        .table-responsive-custom {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .table-striped-custom tbody tr:nth-of-type(odd) {
            background-color: rgba(30, 58, 138, 0.03);
        }
