        :root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #38b2ac;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.8;
            color: #333;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #4a5568 100%);
        }
        .match-card {
            transition: all 0.3s ease;
            border-left: 4px solid var(--secondary-color);
        }
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .prediction-badge {
            background: linear-gradient(90deg, #e53e3e, #dd6b20);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .live-indicator {
            animation: pulse 2s infinite;
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #e53e3e;
            margin-right: 8px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .team-logo:hover {
            transform: scale(1.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .nav-link.active {
            border-bottom: 3px solid var(--secondary-color);
            font-weight: 600;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background-color: #f7fafc;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #4a5568;
        }
        .flink:hover {
            background-color: #edf2f7;
            border-color: #cbd5e0;
            transform: translateY(-2px);
        }
        .analysis-card {
            border-top: 4px solid var(--accent-color);
        }
        .footer-links a {
            color: #cbd5e0;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .team-logo {
                width: 45px;
                height: 45px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .hero-heading {
                font-size: 1.8rem !important;
            }
        }
