:root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --dark: #0f172a;
            --light: #f8fafc;
        }
        body {
            font-family: 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
        }
        .match-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid #e2e8f0;
            overflow: hidden;
        }
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--accent);
        }
        .live-badge {
            animation: pulse 2s infinite;
            background: var(--secondary);
            color: white;
            font-weight: bold;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .analysis-card {
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            height: 100%;
        }
        .friendlink {
            background: #f8fafc;
            padding: 3rem 0;
        }
        .flink {
            display: inline-flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 50px;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .flink i {
            margin-right: 0.75rem;
            font-size: 1.2rem;
        }
        .footer {
            background: var(--dark);
            color: #cbd5e1;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .flag-icon {
            width: 24px;
            height: 16px;
            display: inline-block;
            margin-right: 0.5rem;
            vertical-align: middle;
            border-radius: 2px;
        }
        .england-flag {
            background: linear-gradient(to right, #c8102e 33%, #fff 33%, #fff 66%, #c8102e 66%);
        }
        .ghana-flag {
            background: linear-gradient(to bottom, #006b3f 33%, #fcd116 33%, #fcd116 66%, #c8102e 66%);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        .schema-hidden {
            display: none;
        }
