:root {
            --primary-color: #0a3d62;
            --secondary-color: #1e90ff;
            --accent-color: #ff9f1a;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.8;
            color: #333;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.9), rgba(10, 61, 98, 0.8)), 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: 120px 0;
            margin-bottom: 3rem;
        }
        .stat-card {
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }
        .team-logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin: 0 auto 20px;
        }
        .prediction-card {
            border-left: 5px solid var(--accent-color);
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 0.85rem;
        }
        @keyframes pulse {
            0% { background-color: #dc3545; }
            50% { background-color: #ff6b7c; }
            100% { background-color: #dc3545; }
        }
        .analysis-section {
            background: #f8fafc;
            padding: 60px 0;
            border-radius: 15px;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background: #fff;
            border-radius: 25px;
            text-decoration: none;
            color: var(--dark-color);
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .contact-info li {
            margin-bottom: 12px;
        }
        .contact-info i {
            color: var(--accent-color);
            margin-right: 10px;
            width: 20px;
        }
        .match-table th {
            background: var(--primary-color);
            color: white;
            border: none;
        }
        .match-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        h1, h2, h3, h4, h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
        }
        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: #083053;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10, 61, 98, 0.2);
        }
        .article-content {
            column-count: 2;
            column-gap: 40px;
            text-align: justify;
        }
        @media (max-width: 768px) {
            .article-content {
                column-count: 1;
            }
            .hero-section {
                padding: 80px 0;
            }
            .team-logo {
                width: 80px;
                height: 80px;
            }
        }
