:root {
            --primary-blue: #0a2a5a;
            --secondary-blue: #1e4a8a;
            --accent-red: #c62828;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-blue);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 42, 90, 0.85), rgba(10, 42, 90, 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: 6rem 0;
        }
        .prediction-card {
            border-left: 5px solid var(--accent-red);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .prediction-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
        }
        .data-stat {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-blue);
        }
        .flink {
            background-color: var(--light-bg);
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
            display: block;
            color: var(--text-dark);
            text-decoration: none;
        }
        .flink:hover {
            background-color: #e9ecef;
            border-color: var(--secondary-blue);
            color: var(--secondary-blue);
        }
        footer {
            background-color: var(--primary-blue);
            color: #e9ecef;
        }
        .article-content h3 {
            color: var(--primary-blue);
            margin-top: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .team-flag {
                width: 60px;
                height: 45px;
            }
        }
