:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-color: #f8fafc;
            --dark-color: #0f172a;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .match-countdown {
            background: rgba(220, 38, 38, 0.9);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
        }
        .countdown-number {
            font-size: 2.5rem;
            font-weight: 700;
        }
        .team-card {
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .morocco-flag {
            background: linear-gradient(to bottom, #c1272d 33%, #000 33%, #000 66%, #006233 66%);
            color: white;
        }
        .haiti-flag {
            background: linear-gradient(to right, #00209f 33%, #d21034 33%, #d21034 66%, #000 66%);
            color: white;
        }
        .prediction-card {
            border-left: 5px solid var(--accent-color);
            background: #fff9e6;
            padding: 25px;
            border-radius: 0 10px 10px 0;
        }
        .live-score {
            background: var(--dark-color);
            color: white;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
        }
        .stat-box {
            background: var(--light-color);
            padding: 25px;
            border-radius: 10px;
            height: 100%;
            border-top: 4px solid var(--primary-color);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .analysis-section {
            background: #f1f5f9;
            padding: 60px 0;
        }
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .friendlink a {
            display: inline-block;
            margin: 8px 15px;
            padding: 8px 20px;
            background: white;
            color: var(--dark-color);
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        .friendlink a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .flink {
            font-weight: 600;
        }
        .contact-info {
            background: #1e293b;
            padding: 25px;
            border-radius: 10px;
            margin-top: 20px;
        }
        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .highlight-text {
            background: linear-gradient(120deg, #f0f4ff 0%, #e0e7ff 100%);
            padding: 20px;
            border-left: 4px solid var(--primary-color);
            margin: 25px 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .countdown-number {
                font-size: 1.8rem;
            }
            .live-score {
                font-size: 1.4rem;
            }
        }
        .tab-content {
            padding: 30px 0;
        }
        .nav-tabs .nav-link.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        .match-timeline {
            position: relative;
            padding-left: 30px;
        }
        .match-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 20px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
