:root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --success-color: #198754;
            --dark-color: #212529;
            --light-color: #f8f9fa;
            --worldcup-gold: #ffd700;
            --worldcup-green: #28a745;
            --ivory-coast-orange: #ff7700;
            --ecuador-yellow: #ffcc00;
            --ecuador-blue: #0051ba;
        }
        body {
            font-family: 'Helvetica Neue', 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.8;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--worldcup-gold) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--worldcup-gold) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(25, 135, 84, 0.85)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--dark-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--ivory-coast-orange), var(--ecuador-blue));
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            overflow: hidden;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .match-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--success-color);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            font-weight: 600;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-box {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 12px;
            padding: 2rem;
            border-left: 5px solid var(--primary-color);
            margin-bottom: 2rem;
        }
        .flink {
            display: inline-block;
            background: var(--light-color);
            color: var(--dark-color);
            padding: 8px 20px;
            margin: 5px 10px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary-color);
            text-decoration: none;
        }
        .footer {
            background: var(--dark-color);
            color: var(--light-color);
            padding-top: 3rem;
        }
        .footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--worldcup-gold);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .stat-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        .contact-info {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 15px;
            padding: 2.5rem;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--primary-color);
            margin-left: 20px;
        }
        .timeline-item {
            margin-bottom: 2rem;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--worldcup-gold);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-color);
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--ivory-coast-orange), var(--ecuador-yellow));
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
        .seo-content {
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        .prediction-meter {
            height: 20px;
            border-radius: 10px;
            background: #e9ecef;
            overflow: hidden;
            margin: 15px 0;
        }
        .meter-fill {
            height: 100%;
            border-radius: 10px;
            transition: width 1s ease;
        }
        .ivory-coast-fill {
            background: linear-gradient(to right, var(--ivory-coast-orange), #ff9e40);
        }
        .ecuador-fill {
            background: linear-gradient(to right, var(--ecuador-blue), #4d7cff);
        }
        .draw-fill {
            background: linear-gradient(to right, #6c757d, #adb5bd);
        }
