:root {
            --primary-blue: #0056b3;
            --primary-light-blue: #e8f4fd;
            --accent-gold: #ffc107;
            --dark-bg: #1a1a2e;
            --text-dark: #333;
            --text-light: #f8f9fa;
            --border-radius: 8px;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-blue), #1e90ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 40, 85, 0.85), rgba(0, 20, 40, 0.9)), url('https://images.unsplash.com/photo-1636489953087-c944ad0f7e82?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            border-radius: 0 0 40px 40px;
            margin-bottom: 3rem;
        }
        .prediction-card {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            margin-bottom: 2rem;
            background: white;
        }
        .prediction-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 86, 179, 0.12);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .vs-badge {
            background: var(--accent-gold);
            color: #000;
            font-weight: bold;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
        }
        .probability-bar {
            height: 12px;
            border-radius: 6px;
            background: #e9ecef;
            overflow: hidden;
            margin: 1rem 0;
        }
        .probability-fill {
            height: 100%;
            border-radius: 6px;
            background: linear-gradient(90deg, #28a745, #20c997);
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .data-table th {
            background-color: var(--primary-light-blue);
            font-weight: 600;
        }
        .footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            background: white;
            border: 1px solid #dee2e6;
            border-radius: var(--border-radius);
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
        }
        .friendlink a.flink:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
            transform: scale(1.05);
        }
        .analysis-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 0.75rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
            border-radius: 2px;
        }
        .contact-info li {
            margin-bottom: 0.8rem;
        }
        .contact-info i {
            color: var(--accent-gold);
            width: 24px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
                border-radius: 0 0 30px 30px;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
        .schema-item {
            display: none;
        }
