:root {
            --primary-blue: #0056b3;
            --secondary-blue: #0d6efd;
            --accent-red: #dc3545;
            --dark-bg: #1a1a2e;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 30, 60, 0.85), rgba(0, 30, 60, 0.9)), url('https://images.unsplash.com/photo-1560272564-c83b66b1ad12?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 80px;
            position: relative;
        }
        .stat-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--primary-blue);
            height: 100%;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 86, 179, 0.15);
        }
        .match-prediction {
            background: linear-gradient(135deg, var(--dark-bg), #16213e);
            color: white;
            border-radius: 16px;
            overflow: hidden;
        }
        .team-flag {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .prediction-bar {
            height: 24px;
            border-radius: 12px;
            overflow: hidden;
            background: #e9ecef;
        }
        .prediction-fill {
            height: 100%;
            border-radius: 12px;
            transition: width 1s ease-in-out;
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 20px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-card {
            border-left: 5px solid var(--accent-red);
            background: #fff;
            transition: all 0.3s;
        }
        .analysis-card:hover {
            border-left-color: var(--primary-blue);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        .friendlink a.flink {
            display: inline-block;
            background: #f1f5f9;
            color: var(--primary-blue);
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .friendlink a.flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
            text-decoration: none;
        }
        footer {
            background: var(--dark-bg);
            color: var(--text-light);
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
            border-radius: 2px;
        }
        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .btn-custom {
            background: linear-gradient(90deg, var(--primary-blue), #004094);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
            color: white;
        }
        .data-table th {
            background-color: var(--primary-blue);
            color: white;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .team-flag {
                width: 60px;
                height: 60px;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
        .tab-content {
            padding: 25px;
            background: white;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .nav-tabs .nav-link.active {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
            font-weight: 600;
        }
        .schema-data {
            display: none;
        }
