:root {
            --primary-green: #009c3b;
            --primary-yellow: #ffdf00;
            --primary-blue: #002776;
            --secondary-red: #d52b1e;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .flag-brazil {
            background: linear-gradient(to right, var(--primary-green) 33%, var(--primary-yellow) 33% 66%, var(--primary-green) 66%);
            height: 6px;
            margin: 10px 0;
        }
        .flag-haiti {
            background: linear-gradient(to right, var(--secondary-red) 50%, var(--primary-blue) 50%);
            height: 6px;
            margin: 10px 0;
        }
        .stat-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        .analysis-section {
            background-color: var(--light-bg);
            padding: 80px 0;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-green);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 20px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 8px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-yellow);
            border: 3px solid var(--primary-green);
        }
        .live-score {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .team-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 15px;
        }
        .brazil-logo {
            background: radial-gradient(circle at 30% 30%, var(--primary-green), #00732d);
            color: var(--primary-yellow);
        }
        .haiti-logo {
            background: radial-gradient(circle at 30% 30%, var(--primary-blue), #001b4d);
            color: white;
        }
        .prediction-meter {
            height: 20px;
            background: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            margin: 20px 0;
        }
        .prediction-fill {
            height: 100%;
            border-radius: 10px;
            background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
            width: 75%;
            position: relative;
        }
        .prediction-fill::after {
            content: '75%';
            position: absolute;
            right: -40px;
            top: -25px;
            font-weight: bold;
            color: var(--primary-green);
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-green) !important;
        }
        .footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 60px 0 30px;
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .friendlink a.flink:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-3px);
        }
        .contact-info a {
            color: var(--primary-yellow);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .contact-info a:hover {
            color: white;
            text-decoration: underline;
        }
        .seo-content {
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .seo-content h3 {
            color: var(--primary-green);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .match-card {
            border-left: 5px solid var(--primary-green);
            transition: all 0.3s ease;
        }
        .match-card:hover {
            border-left-color: var(--primary-yellow);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .team-logo {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
        .world-cup-badge {
            width: 100px;
            height: 100px;
            background: radial-gradient(circle at 30% 30%, #1e3c72, #2a5298);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin: 0 auto 20px;
            font-size: 1.2rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        .data-table th {
            background-color: var(--primary-green);
            color: white;
            border: none;
        }
        .data-table td {
            vertical-align: middle;
        }
        .form-control:focus {
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 0.25rem rgba(255, 223, 0, 0.25);
        }
        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
        }
        .btn-primary:hover {
            background-color: #00732d;
            border-color: #00732d;
        }
        .btn-outline-primary {
            color: var(--primary-green);
            border-color: var(--primary-green);
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
        }
