:root {
            --primary: #1a237e;
            --secondary: #d32f2f;
            --accent: #ffab00;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(211, 47, 47, 0.85)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            margin-bottom: 3rem;
        }
        .match-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: contain;
            background: white;
            padding: 5px;
            border-radius: 8px;
        }
        .live-badge {
            background: var(--secondary);
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .data-stat {
            background: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            height: 100%;
        }
        .prediction-meter {
            height: 20px;
            border-radius: 10px;
            background: #e0e0e0;
            overflow: hidden;
        }
        .meter-fill {
            height: 100%;
            border-radius: 10px;
            transition: width 1s ease;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background: var(--light-bg);
            border-radius: 25px;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: #1a1a1a;
            color: #aaa;
        }
        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: white;
        }
        .article-content h3 {
            color: var(--primary);
            border-left: 4px solid var(--accent);
            padding-left: 15px;
            margin-top: 2rem;
        }
        .article-content p {
            line-height: 1.8;
            text-align: justify;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 4rem 0; }
            .team-flag { width: 60px; height: 45px; }
            .display-4 { font-size: 2.5rem; }
        }
