:root {
            --primary-green: #009b3a;
            --secondary-green: #006b2d;
            --brazil-yellow: #fedf00;
            --morocco-red: #c1272d;
            --text-dark: #2c3e50;
            --text-light: #5d6d7e;
            --bg-light: #f8f9fa;
            --border-color: #eaeaea;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-green) 0%, #002776 100%);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--text-dark);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-green), var(--brazil-yellow));
            border-radius: 2px;
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-green);
        }
        .match-badge {
            background: linear-gradient(45deg, var(--primary-green), var(--brazil-yellow));
            color: white;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 20px;
        }
        .flag-brazil {
            background: linear-gradient(to bottom, #009c3b 33%, #fedf00 33%, #fedf00 66%, #002776 66%);
            width: 40px;
            height: 28px;
            display: inline-block;
            border-radius: 3px;
            margin: 0 10px;
            position: relative;
        }
        .flag-brazil:after {
            content: '★';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #002776;
            font-size: 12px;
        }
        .flag-morocco {
            background: #c1272d;
            width: 40px;
            height: 28px;
            display: inline-block;
            border-radius: 3px;
            margin: 0 10px;
            position: relative;
        }
        .flag-morocco:after {
            content: '✶';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #006233;
            font-size: 18px;
        }
        .vs-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-dark);
            margin: 0 15px;
        }
        .prediction-card {
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border-radius: 15px;
            padding: 30px;
            border-left: 5px solid var(--primary-green);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-green);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            padding-bottom: 30px;
            border-left: 2px solid var(--border-color);
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: var(--primary-green);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-green);
        }
        .navbar {
            transition: all 0.4s ease;
            padding: 20px 0;
        }
        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            font-weight: 600;
            margin: 0 10px;
            position: relative;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            transition: width 0.3s ease;
        }
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 155, 58, 0.3);
            color: white;
        }
        .footer {
            background-color: #1a252f;
            color: #bdc3c7;
            padding-top: 60px;
        }
        .footer a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--brazil-yellow);
        }
        .footer-bottom {
            background-color: #141e26;
            padding: 20px 0;
            margin-top: 40px;
        }
        .flink {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 8px 20px;
            border-radius: 30px;
            margin: 5px 10px 5px 0;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background-color: rgba(0, 155, 58, 0.2);
            border-color: var(--primary-green);
            transform: translateY(-3px);
        }
        .contact-info i {
            width: 40px;
            height: 40px;
            background-color: rgba(0, 155, 58, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-green);
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
        }
        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content h3 {
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--text-dark);
            font-weight: 700;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .image-container {
            border-radius: 10px;
            overflow: hidden;
            margin: 25px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .image-container img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .highlight-box {
            background-color: rgba(0, 155, 58, 0.05);
            border-left: 4px solid var(--primary-green);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th {
            background-color: var(--primary-green);
            color: white;
            font-weight: 600;
            padding: 15px;
            text-align: left;
        }
        .data-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .data-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .data-table tr:hover {
            background-color: rgba(0, 155, 58, 0.05);
        }
