:root {
            --primary-blue: #1e3a8a;
            --accent-red: #dc2626;
            --light-gray: #f8fafc;
            --dark-gray: #1f2937;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-blue), #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.8)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            position: relative;
        }
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid var(--accent-red);
            height: 100%;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        .match-prediction {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            border-radius: 16px;
            overflow: hidden;
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            border: 3px solid white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            border-radius: 50px;
            padding: 0.25rem 1rem;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .analysis-card {
            border: none;
            border-top: 5px solid #3b82f6;
            transition: all 0.3s;
        }
        .analysis-card:hover {
            border-top-color: var(--accent-red);
        }
        .footer {
            background-color: var(--dark-gray);
            color: #e5e7eb;
            padding-top: 3rem;
        }
        .flink {
            background: var(--light-gray);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            color: var(--primary-blue);
            text-decoration: none;
            display: inline-block;
            margin: 0.25rem;
            transition: all 0.3s;
            border: 1px solid #dbeafe;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        .h-100 { height: 100%; }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-red), var(--primary-blue));
            border-radius: 2px;
        }
        .tab-content {
            border: 1px solid #dee2e6;
            border-top: none;
            border-radius: 0 0 8px 8px;
            padding: 2rem;
        }
        .nav-tabs .nav-link.active {
            border-bottom: 3px solid var(--accent-red);
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 3rem 0; }
            .team-flag { width: 60px; height: 45px; }
            .display-4 { font-size: 2.5rem; }
        }
