:root {
            --primary-color: #1a365d;
            --secondary-color: #e63946;
            --accent-color: #f4a261;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --success-color: #2a9d8f;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, #1a365d, #e63946);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1574623452334-1e0ac2b3ccb4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            margin-bottom: 40px;
        }
        .match-prediction-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
            border-top: 5px solid var(--secondary-color);
            transition: transform 0.3s ease;
        }
        .match-prediction-card:hover {
            transform: translateY(-5px);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: contain;
            margin: 0 auto 15px;
            display: block;
        }
        .odds-display {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-align: center;
            margin: 15px 0;
        }
        .stats-card {
            background: var(--light-color);
            border-radius: 10px;
            padding: 20px;
            height: 100%;
            border-left: 4px solid var(--primary-color);
        }
        .live-score {
            background: linear-gradient(135deg, #e63946, #ff6b6b);
            color: white;
            border-radius: 10px;
            padding: 15px;
            font-weight: 700;
            text-align: center;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); }
            100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
        }
        .analysis-section {
            background: #f8f9fa;
            padding: 60px 0;
            border-top: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-bottom: 40px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 25px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .seo-content {
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .seo-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #eee;
        }
        .friendlink {
            background: #f1f5f9;
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 6px;
            text-decoration: none;
            color: var(--primary-color);
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            text-decoration: none;
            border-color: var(--primary-color);
        }
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #e2e8f0;
            text-decoration: none;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            border-top: 1px solid #2d3748;
            padding-top: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #cbd5e0;
        }
        .btn-predict {
            background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            color: white;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-predict:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
            color: white;
        }
        .player-card {
            text-align: center;
            padding: 15px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        .player-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .player-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 3px solid #eee;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .odds-display {
                font-size: 1.5rem;
            }
            .team-flag {
                width: 60px;
                height: 45px;
            }
        }
        .schema-data {
            display: none;
        }
