:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e95420;
            --accent-color: #26a269;
            --dark-color: #1a1a1a;
            --light-color: #f8f9fa;
            --text-color: #333333;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .team-badge {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
            color: white;
        }
        .cote-ivoire {
            background: linear-gradient(135deg, #ff7f00, #ff5500);
        }
        .ecuador {
            background: linear-gradient(135deg, #fcd116, #0038a8);
        }
        .live-match {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .stat-box {
            background-color: var(--light-color);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            height: 100%;
            border-left: 5px solid var(--primary-color);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        .match-history-table {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .match-history-table th {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
        }
        .match-history-table td {
            padding: 15px;
            vertical-align: middle;
        }
        .analysis-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .analysis-card .card-header {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 20px;
        }
        .flink {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }
        .flink i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .team-badge {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }
