:root {
            --primary-green: #008c44;
            --secondary-yellow: #ffcc00;
            --primary-red: #c1272d;
            --secondary-green: #006b38;
            --dark-bg: #1a1a1a;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            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-1560272564-c83b66b1ad12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: var(--text-light);
            padding: 120px 0;
        }
        .flag-brazil {
            background: linear-gradient(to right, #009c3b 40%, #ffdf00 40%, #ffdf00 60%, #002776 60%);
            height: 6px;
            border-radius: 3px;
        }
        .flag-morocco {
            background: linear-gradient(to right, #c1272d 33%, #006233 33%, #006233 66%, #c1272d 66%);
            height: 6px;
            border-radius: 3px;
        }
        .match-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .data-stat-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--primary-green);
            padding: 25px;
        }
        .analysis-section {
            background-color: var(--light-bg);
            padding: 80px 0;
        }
        .prediction-badge {
            font-size: 1.1rem;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
        }
        .btn-custom {
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 140, 68, 0.3);
            color: white;
        }
        .footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding-top: 60px;
        }
        .flink a {
            display: inline-block;
            margin: 5px 10px;
            padding: 8px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: #ddd;
            transition: all 0.3s ease;
        }
        .flink a:hover {
            background-color: var(--primary-green);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
        }
        .live-score {
            animation: pulse 2s infinite;
            background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
            color: white;
            border-radius: 10px;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(193, 39, 45, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(193, 39, 45, 0); }
            100% { box-shadow: 0 0 0 0 rgba(193, 39, 45, 0); }
        }
        .hvr-grow {
            transition: transform 0.3s ease;
        }
        .hvr-grow:hover {
            transform: scale(1.03);
        }
        .article-content h3 {
            color: var(--primary-green);
            border-left: 4px solid var(--secondary-yellow);
            padding-left: 15px;
            margin-top: 30px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-green);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-yellow);
            border: 3px solid var(--primary-green);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
