:root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 50%, #3b82f6 100%);
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        .match-badge {
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 20px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .analysis-chart {
            height: 300px;
            background: linear-gradient(90deg, #3b82f6 60%, #ef4444 40%);
            border-radius: 10px;
            position: relative;
        }
        .footer-links a {
            text-decoration: none;
            color: #cbd5e1;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #475569;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            background: #e0f2fe;
            border-color: #38bdf8;
            color: #0369a1;
            transform: scale(1.02);
        }
        @media (max-width: 768px) {
            .stat-number {
                font-size: 2rem;
            }
            .hero-title {
                font-size: 1.8rem;
            }
        }
