:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e95420;
            --dark-color: #2c2c2c;
            --light-color: #f8f9fa;
            --success-color: #26a269;
            --warning-color: #f5c211;
            --danger-color: #c01c28;
        }
        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, var(--primary-color), var(--secondary-color));
            -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-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .stat-card {
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .match-prediction {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--primary-color);
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 50px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .analysis-section {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
        }
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding-top: 60px;
        }
        .flink {
            padding: 8px 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 5px;
            color: #ddd;
            text-decoration: none;
        }
        .flink:hover {
            background: rgba(255,255,255,0.2);
            color: white;
            transform: translateY(-3px);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 95, 180, 0.1);
            color: var(--primary-color);
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
        }
        .highlight {
            background-color: rgba(245, 194, 17, 0.2);
            padding: 2px 5px;
            border-radius: 3px;
        }
        .contact-info li {
            margin-bottom: 10px;
        }
        .contact-info i {
            width: 20px;
            color: var(--primary-color);
        }
        .seo-content {
            text-align: justify;
            hyphens: auto;
        }
        .match-card {
            border: 1px solid #dee2e6;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .match-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .odds-display {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--dark-color);
        }
        .win-probability {
            height: 10px;
            border-radius: 5px;
            overflow: hidden;
        }
        .probability-bar-1 {
            background-color: var(--success-color);
        }
        .probability-bar-2 {
            background-color: var(--warning-color);
        }
        .probability-bar-3 {
            background-color: var(--danger-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .team-flag {
                width: 50px;
                height: 35px;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
