:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e95420;
            --accent-color: #f6b52e;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --success-color: #38b44a;
            --danger-color: #e95420;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 95, 180, 0.85), rgba(44, 62, 80, 0.9)), 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: 120px 0 80px;
            position: relative;
        }
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--primary-color);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        .live-badge {
            background: linear-gradient(90deg, var(--danger-color), #ff6b4a);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 0.8; }
            50% { opacity: 1; }
            100% { opacity: 0.8; }
        }
        .match-card {
            border-left: 5px solid var(--primary-color);
            transition: all 0.3s ease;
        }
        .match-card:hover {
            background-color: #f0f7ff;
            transform: scale(1.01);
        }
        .analysis-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 40px;
        }
        .flink {
            display: inline-block;
            background: #f1f8ff;
            color: var(--primary-color);
            padding: 10px 20px;
            margin: 8px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #d1e3ff;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(26, 95, 180, 0.2);
        }
        .footer {
            background-color: var(--dark-color);
            color: #ddd;
            padding-top: 50px;
        }
        .footer a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .seo-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 30px;
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
        }
        .haiti-flag {
            background: linear-gradient(90deg, #00209f 33%, #d21034 33%, #d21034 66%, #00209f 66%);
        }
        .scotland-flag {
            background: linear-gradient(45deg, #0065BD 0%, #0065BD 50%, transparent 50%), linear-gradient(135deg, #0065BD 0%, #0065BD 50%, transparent 50%), white;
            background-size: 100% 100%, 100% 100%;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #0d4a9e;
            border-color: #0d4a9e;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(26, 95, 180, 0.2);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--dark-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .analysis-section {
                padding: 25px;
            }
            .seo-content {
                padding: 25px;
            }
        }
