:root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --success: #198754;
            --warning: #ffc107;
            --danger: #dc3545;
            --dark: #212529;
            --light: #f8f9fa;
            --worldcup-green: #00843d;
            --worldcup-yellow: #fecd00;
            --brazil-green: #009739;
            --brazil-yellow: #fedf00;
            --morocco-red: #c1272d;
            --morocco-green: #006233;
        }
        body {
            font-family: "Microsoft YaHei", "Segoe UI", system-ui, sans-serif;
            line-height: 1.6;
            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), var(--morocco-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(33, 37, 41, 0.9)), url('https://images.unsplash.com/photo-1599058917212-d750089bc07e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80') center/cover no-repeat;
            color: white;
            padding: 6rem 0;
            margin-bottom: 3rem;
        }
        .match-prediction-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 1.5rem;
        }
        .match-prediction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .team-flag {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .vs-badge {
            background: var(--warning);
            color: var(--dark);
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 50px;
        }
        .stats-card {
            background: linear-gradient(135deg, var(--light) 0%, #e9ecef 100%);
            border-left: 5px solid var(--primary);
            border-radius: 10px;
            padding: 1.5rem;
            height: 100%;
        }
        .live-badge {
            background-color: var(--danger);
            color: white;
            animation: pulse 1.5s infinite;
            border-radius: 30px;
            padding: 0.25rem 1rem;
            font-size: 0.875rem;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-section {
            background-color: #f8f9fa;
            padding: 4rem 0;
            border-top: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            background-color: var(--light);
            border-radius: 5px;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding-top: 3rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.5rem;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background-color: var(--primary);
            transform: scale(1.1);
        }
        .match-odds {
            background: linear-gradient(90deg, var(--brazil-green) 0%, var(--morocco-red) 100%);
            color: white;
            border-radius: 10px;
            padding: 1rem;
        }
        .progress-bar-brazil {
            background-color: var(--brazil-yellow);
        }
        .progress-bar-morocco {
            background-color: #fff;
        }
        .timeline-item {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 2rem;
            border-left: 2px solid var(--primary);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -0.5rem;
            top: 0;
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            background-color: var(--primary);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .team-flag {
                width: 60px;
                height: 60px;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        .article-content {
            text-align: justify;
            hyphens: auto;
        }
