@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');
        body {
            font-family: 'Noto Sans SC', sans-serif;
            scroll-behavior: smooth;
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
        }
        .match-card:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            box-shadow: 8px 8px 16px #e2e8f0, -8px -8px 16px #ffffff;
        }
        .flink {
            transition: all 0.3s ease;
            border-radius: 8px;
            padding: 12px 20px;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
        }
        .flink:hover {
            background-color: #1e40af;
            color: white;
            transform: translateY(-3px);
            border-color: #1e40af;
        }
        .tab-active {
            border-bottom: 3px solid #dc2626;
            color: #dc2626;
            font-weight: 700;
        }
        .loading-bar {
            height: 4px;
            background: linear-gradient(90deg, #dc2626, #1e40af, #059669);
            background-size: 200% 100%;
            animation: loading 2s infinite linear;
        }
        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .news-card:hover .news-title {
            color: #1e40af;
        }
        .footer-link:hover {
            color: #60a5fa;
            padding-left: 5px;
            transition: all 0.2s ease;
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
            .hero-height {
                min-height: 60vh;
            }
        }
