:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
            --border-radius: 8px;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.9)), 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: 6rem 0;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .stat-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--primary-color);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .match-card {
            border: 1px solid #e2e8f0;
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .match-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        .live-badge {
            background-color: var(--secondary-color);
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-section {
            background-color: var(--light-bg);
            padding: 4rem 0;
        }
        .article-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .article-card h3 {
            color: var(--primary-color);
            border-left: 4px solid var(--accent-color);
            padding-left: 1rem;
        }
        .flink {
            display: inline-block;
            background: #f1f5f9;
            color: #475569;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #cbd5e1;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background-color: #0f172a;
            color: #cbd5e1;
        }
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .btn-custom {
            background: linear-gradient(90deg, var(--primary-color), #2563eb);
            color: white;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(30, 58, 138, 0.3);
            color: white;
        }
        .hvr-grow {
            transition: transform 0.3s ease;
        }
        .hvr-grow:hover {
            transform: scale(1.03);
        }
        .seo-content {
            font-size: 1.05rem;
            text-align: justify;
        }
        .seo-content h2, .seo-content h3 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        .seo-content ul {
            padding-left: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
                text-align: center;
            }
            .team-logo {
                width: 50px;
                height: 50px;
            }
        }
