:root {
            --primary-blue: #0d3b66;
            --secondary-blue: #1d6fa5;
            --accent-red: #e63946;
            --accent-gold: #f4a261;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --gray-border: #dee2e6;
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-blue);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.9), rgba(29, 111, 165, 0.9)), url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .match-prediction-card {
            border-left: 5px solid var(--accent-red);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .match-prediction-card:hover {
            transform: translateY(-5px);
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }
        .live-score {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-red);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .stat-card {
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        .stat-header {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px;
        }
        .analysis-section {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 30px;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background: white;
            border: 1px solid var(--gray-border);
            border-radius: 50px;
            color: var(--secondary-blue);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        .flink:hover {
            background-color: var(--secondary-blue);
            color: white;
            border-color: var(--secondary-blue);
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--primary-blue);
            color: white;
        }
        .footer a {
            color: #a0d2ff;
            text-decoration: none;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-info i {
            width: 25px;
            color: var(--accent-gold);
        }
        .data-table th {
            background-color: var(--light-bg);
        }
        .prediction-badge {
            background-color: var(--accent-gold);
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .team-logo {
                width: 60px;
                height: 60px;
            }
            .live-score {
                font-size: 2rem;
            }
        }
