body {
            font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 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);
        }
        .flink a {
            transition: all 0.2s ease;
            border-bottom: 2px solid transparent;
        }
        .flink a:hover {
            color: #1e40af;
            border-bottom-color: #1e40af;
        }
        .match-stat-bar {
            height: 1.5rem;
            border-radius: 0.75rem;
            overflow: hidden;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .tactical-board {
            background-image: linear-gradient(to right, #e5e7eb 1px, transparent 1px), linear-gradient(to bottom, #e5e7eb 1px, transparent 1px);
            background-size: 20px 20px;
        }
        .nav-link-active {
            color: #3b82f6;
            border-bottom: 2px solid #3b82f6;
        }
        .article-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            line-height: 1.8;
            color: #4b5563;
        }
        .article-content ul {
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
            list-style-type: disc;
        }
        .article-content li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
