:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --dark-color: #0f172a;
            --light-color: #f8fafc;
            --text-color: #334155;
        }
        body {
            font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 58, 138, 0.9)), 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;
            color: white;
            padding: 100px 0;
            position: relative;
        }
        .stat-card {
            border-left: 4px solid var(--secondary-color);
            transition: transform 0.3s ease;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .match-prediction {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #cbd5e1;
        }
        .prediction-bar {
            height: 25px;
            border-radius: 12px;
            overflow: hidden;
        }
        .team-flag {
            width: 40px;
            height: 30px;
            object-fit: cover;
            border-radius: 3px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 20px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-card {
            border-top: 3px solid transparent;
            transition: all 0.4s ease;
        }
        .analysis-card:hover {
            border-top-color: var(--secondary-color);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .footer {
            background-color: var(--dark-color);
            color: #cbd5e1;
        }
        .flink {
            color: #94a3b8;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s;
            display: inline-block;
            border: 1px solid #475569;
        }
        .flink:hover {
            color: white;
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        .schema-data {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 60px 0; }
            .display-4 { font-size: 2.5rem; }
        }
        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        h1, h2, h3, h4, h5 {
            color: var(--dark-color);
            font-weight: 700;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #1e40af;
            border-color: #1e40af;
            transform: translateY(-2px);
        }
