:root {
            --primary-color: #1a365d;
            --secondary-color: #dc3545;
            --accent-color: #28a745;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Helvetica Neue', 'Microsoft YaHei', Arial, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        .header-gradient {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0c2043 100%);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .hero-section {
            background: url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            min-height: 70vh;
            position: relative;
        }
        .hero-overlay {
            background: rgba(0, 0, 0, 0.7);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .stat-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .match-card {
            border-left: 5px solid var(--secondary-color);
            transition: all 0.3s ease;
        }
        .match-card:hover {
            background-color: var(--light-bg);
        }
        .prediction-badge {
            font-size: 0.8rem;
            padding: 5px 12px;
            border-radius: 20px;
        }
        .analysis-section {
            background-color: var(--light-bg);
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: #1a202c;
            color: #a0aec0;
        }
        .live-badge {
            animation: pulse 2s infinite;
            display: inline-block;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-flag {
            width: 50px;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .content-section {
            padding: 80px 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 50vh;
            }
            .content-section {
                padding: 40px 0;
            }
            .navbar-brand {
                font-size: 1.2rem;
            }
        }
