:root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --accent-green: #198754;
            --accent-yellow: #ffc107;
            --accent-red: #dc3545;
            --dark-bg: #212529;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, #009c3b, #ffdf00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1648908836488-53cbd3cbe7f1?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;
        }
        .match-prediction-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        .match-prediction-card:hover {
            transform: translateY(-10px);
        }
        .team-flag {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .probability-bar {
            height: 30px;
            border-radius: 15px;
            overflow: hidden;
        }
        .probability-text {
            font-size: 1.8rem;
            font-weight: 700;
        }
        .live-score {
            background: linear-gradient(90deg, #dc3545, #fd7e14);
            color: white;
            border-radius: 10px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }
        .stat-card {
            border-left: 5px solid var(--primary-color);
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            background-color: var(--light-bg);
            transform: scale(1.02);
        }
        .analysis-section {
            background-color: var(--light-bg);
            border-radius: 15px;
            padding: 30px;
        }
        .flink {
            background: white;
            padding: 15px 25px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-bg);
            text-decoration: none;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }
        .footer {
            background-color: var(--dark-bg);
            color: #adb5bd;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #495057;
            color: white;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background-color: var(--primary-color);
            transform: scale(1.1);
        }
        .tactical-diagram {
            background: white;
            border-radius: 10px;
            padding: 20px;
            border: 2px dashed #dee2e6;
        }
        .player-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .player-card:hover {
            transform: translateY(-5px);
        }
        .player-img {
            height: 200px;
            object-fit: cover;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .probability-text {
                font-size: 1.5rem;
            }
            .team-flag {
                width: 60px;
                height: 60px;
            }
        }
