:root {
            --primary-blue: #0d47a1;
            --secondary-blue: #1976d2;
            --primary-red: #d32f2f;
            --secondary-red: #f44336;
            --dark-bg: #1a237e;
            --light-bg: #f5f7ff;
            --text-dark: #212121;
            --text-light: #ffffff;
            --border-color: #e0e0e0;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', Arial, sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(13, 71, 161, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: var(--text-light);
            padding: 120px 0;
            position: relative;
            margin-bottom: 60px;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .match-badge {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.2rem;
            display: inline-block;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .prediction-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid var(--primary-blue);
            height: 100%;
        }
        .prediction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        .prediction-card.win {
            border-top-color: #4CAF50;
        }
        .prediction-card.draw {
            border-top-color: #FF9800;
        }
        .team-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--border-color);
            padding: 5px;
            background: white;
        }
        .live-score {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        .stats-box {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid var(--secondary-blue);
        }
        .stats-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
            border-radius: 2px;
        }
        .analysis-tab {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        .nav-tabs .nav-link {
            border: none;
            font-weight: 600;
            color: var(--text-dark);
            padding: 15px 25px;
            transition: all 0.3s ease;
        }
        .nav-tabs .nav-link.active {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
            color: white;
            border-radius: 0;
        }
        .tab-content {
            padding: 30px;
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
            border-left: 3px solid var(--secondary-blue);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 0;
            width: 17px;
            height: 17px;
            border-radius: 50%;
            background: var(--primary-blue);
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            border-radius: 8px;
            margin: 8px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
        }
        .flink:hover {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(13, 71, 161, 0.2);
            text-decoration: none;
        }
        .footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer a {
            color: #bbdefb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #b0bec5;
        }
        .data-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            border: none;
            font-weight: 600;
            padding: 15px;
        }
        .data-table td {
            padding: 15px;
            border-color: var(--border-color);
        }
        .data-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .btn-analysis {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-analysis:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(13, 71, 161, 0.3);
            color: white;
        }
        .player-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .player-card:hover {
            transform: translateY(-10px);
        }
        .player-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .player-info {
            padding: 20px;
        }
        .form-guage {
            height: 10px;
            background: #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
            margin-top: 10px;
        }
        .form-fill {
            height: 100%;
            border-radius: 5px;
        }
        .form-good {
            background: linear-gradient(to right, #4CAF50, #8BC34A);
        }
        .form-average {
            background: linear-gradient(to right, #FF9800, #FFC107);
        }
        .form-poor {
            background: linear-gradient(to right, #F44336, #FF5722);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 80px 0;
            }
            .live-score {
                font-size: 2.8rem;
            }
            .team-logo {
                width: 60px;
                height: 60px;
            }
        }
        .seo-content {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 50px;
        }
        .seo-content h2, .seo-content h3 {
            color: var(--primary-blue);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .seo-content ul, .seo-content ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        .seo-content li {
            margin-bottom: 8px;
        }
        .highlight-text {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
