* {
            font-family: 'Noto Sans SC', sans-serif;
        }
        .flink {
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .flink:hover {
            border-bottom-color: #1e40af;
            transform: translateY(-2px);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #dc2626;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .match-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .stats-bar {
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
        }
        .prediction-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.8; }
            100% { opacity: 1; }
        }
        .live-indicator {
            animation: blink 1.5s infinite;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .article-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        .table-row-hover:hover {
            background-color: #f8fafc;
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
        }
