:root {
            --primary-color: #1e40af;
            --secondary-color: #dc2626;
            --accent-color: #059669;
        }
        body {
            font-family: 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            scroll-behavior: smooth;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .flink {
            background: #f8fafc;
            border-radius: 8px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background: #e0f2fe;
            border-color: #0ea5e9;
            transform: translateY(-2px);
        }
        .prediction-badge {
            background: linear-gradient(90deg, #dc2626, #ef4444);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .match-card {
            border-left: 4px solid;
            transition: all 0.3s ease;
        }
        .match-card:hover {
            background: #f8fafc;
        }
        .stat-item {
            background: #f8fafc;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column !important;
            }
            .mobile-center {
                text-align: center !important;
            }
            .mobile-full {
                width: 100% !important;
            }
        }
        .animated-number {
            transition: all 1s ease-out;
        }
