:root {
            --primary-color: #0d47a1;
            --secondary-color: #b71c1c;
            --accent-color: #ffab00;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #e9ecef;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, #003399, #c8102e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.7)), 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: 8rem 0;
            position: relative;
        }
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-top: 5px solid var(--primary-color);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(13, 71, 161, 0.2);
        }
        .match-prediction {
            background: linear-gradient(135deg, #0d47a1, #1e88e5);
            color: white;
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        .match-prediction::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.3;
        }
        .team-flag {
            width: 120px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .live-badge {
            animation: pulse 2s infinite;
            background-color: var(--secondary-color);
            border-radius: 50px;
            padding: 5px 15px;
            font-size: 0.8rem;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-section {
            background-color: var(--light-bg);
            padding: 5rem 0;
        }
        .tab-content {
            background: white;
            border-radius: 0 0 15px 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .nav-tabs .nav-link {
            border: none;
            color: var(--text-dark);
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 10px 10px 0 0;
        }
        .nav-tabs .nav-link.active {
            background: var(--primary-color);
            color: white;
        }
        .flink {
            background: white;
            border-radius: 10px;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
        }
        .flink:hover {
            border-color: var(--primary-color);
            transform: scale(1.05);
            color: var(--primary-color);
        }
        .flink img {
            height: 30px;
            margin-right: 10px;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        .schema-data {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .match-prediction {
                padding: 2rem;
                margin: 1.5rem 0;
            }
            .team-flag {
                width: 80px;
                height: 60px;
            }
        }
        .content-section {
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .content-section h3 {
            color: var(--primary-color);
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .player-card {
            border-left: 4px solid var(--primary-color);
            padding-left: 1rem;
            margin: 1.5rem 0;
        }
        .tactic-diagram {
            background: #e3f2fd;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            border: 1px dashed var(--primary-color);
        }
