:root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary) !important;
        }
        .navbar-brand span {
            color: var(--secondary);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: rgba(255,255,255,0.05);
            transform: rotate(30deg);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2.5rem;
            font-weight: 700;
            color: var(--dark);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #3b82f6);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .match-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            border-left: 5px solid var(--secondary);
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .team-logo {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
        .score-badge {
            background: var(--secondary);
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }
        .flink {
            display: inline-block;
            background: var(--light);
            color: var(--dark);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            margin: 0.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            border-color: var(--primary);
        }
        .footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .footer-divider {
            border-color: #334155 !important;
            margin: 2rem 0;
        }
        .sticky-top {
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
                text-align: center;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .data-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .league-badge {
            display: inline-block;
            background: #f1f5f9;
            color: var(--dark);
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            border: 1px solid #e2e8f0;
        }
        .highlight-text {
            background: linear-gradient(120deg, #fef3c7 0%, #fef3c7 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            color: #92400e;
            font-weight: 500;
        }
        .btn-custom {
            background: linear-gradient(to right, var(--primary), #3b82f6);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }
