@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;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #3b82f6 100%);
        }
        .stats-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stats-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .match-prediction {
            border-left: 4px solid #dc2626;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            background-color: #f8fafc;
            border-radius: 6px;
            margin: 5px;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background-color: #1d4ed8;
            color: white;
            transform: translateY(-2px);
        }
        .article-content p {
            margin-bottom: 1.2em;
            line-height: 1.8;
        }
        .article-content h3 {
            margin-top: 1.5em;
            margin-bottom: 0.8em;
            color: #1e293b;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .navigation-link {
            position: relative;
        }
        .navigation-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #dc2626;
            transition: width 0.3s ease;
        }
        .navigation-link:hover::after {
            width: 100%;
        }
