:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            margin-bottom: 3rem;
        }
        .match-prediction-card {
            border-left: 5px solid var(--secondary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .match-prediction-card:hover {
            transform: translateY(-5px);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stat-card {
            background: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            height: 100%;
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        .analysis-section {
            background-color: var(--light-bg);
            padding: 4rem 0;
        }
        .footer {
            background-color: #0f172a;
            color: #cbd5e1;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-color);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            background-color: #1e293b;
            color: #e2e8f0;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .prediction-meter {
            height: 20px;
            border-radius: 10px;
            overflow: hidden;
            background-color: #e5e7eb;
        }
        .prediction-fill {
            height: 100%;
            border-radius: 10px;
        }
        .mobile-optimized {
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .mobile-optimized {
                font-size: 0.95rem;
            }
            .team-flag {
                width: 50px;
                height: 35px;
            }
        }
        .contact-info a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
