:root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --success: #198754;
            --danger: #dc3545;
            --warning: #ffc107;
            --info: #0dcaf0;
            --light: #f8f9fa;
            --dark: #212529;
            --worldcup-green: #1e7e34;
            --worldcup-yellow: #ffcd00;
            --brazil-green: #009b3a;
            --brazil-yellow: #fedf00;
            --morocco-red: #c1272d;
            --morocco-green: #006233;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.8;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--brazil-green), var(--brazil-yellow), var(--morocco-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1594744803329-e58b31de8bf5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .team-flag {
            width: 40px;
            height: 30px;
            display: inline-block;
            margin: 0 10px;
            border-radius: 3px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            vertical-align: middle;
        }
        .brazil-flag {
            background: linear-gradient(to bottom, var(--brazil-green) 33%, var(--brazil-yellow) 33% 66%, var(--brazil-green) 66%);
        }
        .morocco-flag {
            background-color: var(--morocco-red);
            position: relative;
        }
        .morocco-flag::after {
            content: "★";
            color: #006233;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 18px;
        }
        .stat-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 0.9rem;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .match-card {
            border-left: 5px solid var(--primary);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .match-card:hover {
            border-left-color: var(--danger);
            background-color: rgba(13, 110, 253, 0.05);
        }
        .analysis-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }
        .prediction-meter {
            height: 30px;
            border-radius: 15px;
            overflow: hidden;
            background: #e9ecef;
            margin: 20px 0;
        }
        .meter-fill {
            height: 100%;
            border-radius: 15px;
            transition: width 1.5s ease;
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 60px 0;
            border-top: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            margin: 10px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            color: #495057;
            text-decoration: none;
            font-weight: 500;
        }
        .flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: var(--primary);
            text-decoration: none;
        }
        .flink i {
            margin-right: 8px;
            color: var(--primary);
        }
        footer {
            background: linear-gradient(135deg, #212529 0%, #343a40 100%);
            color: #adb5bd;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .schema-data {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .flink {
                display: block;
                margin: 10px auto;
                width: 80%;
                text-align: center;
            }
        }
        .content-section {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--brazil-green), var(--morocco-red));
            border-radius: 2px;
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
