:root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #38b2ac;
            --text-primary: #2d3748;
            --text-secondary: #4a5568;
            --light-bg: #f7fafc;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-primary);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .match-prediction-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            overflow: hidden;
        }
        .match-prediction-card:hover {
            transform: translateY(-10px);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
        }
        .vs-text {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary-color);
        }
        .prediction-score {
            font-size: 3rem;
            font-weight: 900;
            color: var(--secondary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        .stat-card {
            background: var(--light-bg);
            border-radius: 10px;
            padding: 25px;
            height: 100%;
            border-left: 5px solid var(--accent-color);
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .live-badge {
            animation: pulse 2s infinite;
            background: var(--secondary-color);
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .analysis-section {
            background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--accent-color);
        }
        .friendlink a.flink {
            display: inline-block;
            background: var(--light-bg);
            padding: 10px 20px;
            margin: 5px;
            border-radius: 8px;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .friendlink a.flink:hover {
            background: white;
            border-color: var(--accent-color);
            transform: translateY(-3px);
        }
        .footer {
            background: var(--primary-color);
            color: white;
        }
        .footer a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .seo-content {
            line-height: 1.9;
            font-size: 1.05rem;
        }
        .seo-content h3 {
            color: var(--primary-color);
            border-left: 4px solid var(--secondary-color);
            padding-left: 15px;
            margin-top: 30px;
        }
        .data-table th {
            background: var(--primary-color);
            color: white;
        }
        .contact-info i {
            width: 30px;
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .prediction-score {
                font-size: 2rem;
            }
            .team-flag {
                width: 60px;
                height: 45px;
            }
        }
