:root {
            --primary: #1a365d;
            --secondary: #e53e3e;
            --accent: #38a169;
            --light: #f7fafc;
            --dark: #2d3748;
        }
        body {
            font-family: 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            color: var(--dark);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0;
            color: white;
        }
        .match-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.2);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .stat-item {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .stat-item:hover {
            background: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 50px;
            padding: 0.25rem 1rem;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .analysis-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            padding: 3rem;
        }
        .friendlink a.flink {
            background: var(--light);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.5rem;
        }
        .friendlink a.flink:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background: var(--primary);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
                text-align: center;
            }
            .analysis-section {
                padding: 2rem 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        .article-content h3 {
            color: var(--primary);
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .prediction-card {
            border-left: 5px solid var(--secondary);
            background: linear-gradient(to right, #fff5f5, white);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .table-analytics th {
            background: var(--primary);
            color: white;
            font-weight: 600;
        }
        .img-analytics {
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .img-analytics:hover {
            transform: scale(1.02);
        }
