:root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --accent-color: #dc3545;
            --dark-color: #212529;
            --light-color: #f8f9fa;
            --success-color: #198754;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(33, 37, 41, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 40px;
        }
        .match-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
        }
        .match-card:hover {
            transform: translateY(-10px);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
        }
        .live-score {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .prediction-badge {
            font-size: 0.9rem;
            padding: 6px 12px;
            border-radius: 20px;
        }
        .analysis-section {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #ddd;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .article-content {
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-content h3 {
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--dark-color);
            border-left: 4px solid var(--primary-color);
            padding-left: 15px;
        }
        .article-content p {
            margin-bottom: 20px;
        }
        .highlight {
            background-color: rgba(13, 110, 253, 0.1);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            margin: 25px 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                text-align: center;
            }
            .team-flag {
                width: 60px;
                height: 45px;
            }
            .live-score {
                font-size: 2rem;
            }
        }
