:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #059669;
            --text-color: #1f2937;
            --light-bg: #f8fafc;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
        }
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d4fa1 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .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&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            margin-bottom: 3rem;
        }
        .section-title {
            color: var(--primary-color);
            border-left: 4px solid var(--secondary-color);
            padding-left: 1rem;
            margin-bottom: 2.5rem;
            font-weight: 700;
        }
        .data-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--primary-color);
        }
        .data-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.15);
        }
        .live-badge {
            background: linear-gradient(90deg, #ef4444, #dc2626);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .match-prediction {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 16px;
            padding: 2.5rem;
            border: 2px solid #e5e7eb;
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
        }
        .prediction-meter {
            height: 12px;
            background: #e5e7eb;
            border-radius: 6px;
            overflow: hidden;
            margin: 1.5rem 0;
        }
        .prediction-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-color), #34d399);
            border-radius: 6px;
        }
        .stat-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        .footer {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: #cbd5e1;
            padding-top: 3rem;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: #e2e8f0;
            padding: 0.5rem 1.25rem;
            margin: 0.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            border-color: var(--primary-color);
        }
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .article-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .article-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        .article-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .contact-info li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 3rem 0; }
            .match-prediction { padding: 1.5rem; }
            .team-logo { width: 60px; height: 60px; }
            .article-grid { grid-template-columns: 1fr; }
        }
        .seo-content {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            font-size: 1.05rem;
        }
        .highlight {
            background: linear-gradient(120deg, #fef3c7 0%, transparent 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
