:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-bg: #f8fafc;
            --dark-text: #1f2937;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.8)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .match-card {
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: none;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }
        .live-badge {
            background-color: var(--secondary-color);
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 12px;
            padding: 25px;
        }
        .analysis-section {
            background-color: var(--light-bg);
            padding: 80px 0;
        }
        .prediction-meter {
            height: 25px;
            border-radius: 12px;
            overflow: hidden;
            background-color: #e5e7eb;
        }
        .meter-fill {
            height: 100%;
            border-radius: 12px;
            transition: width 1s ease;
        }
        .footer {
            background-color: #111827;
            color: #f9fafb;
        }
        .flink {
            color: #93c5fd;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 6px;
            transition: all 0.3s;
            display: inline-block;
            margin: 5px;
            background-color: rgba(147, 197, 253, 0.1);
        }
        .flink:hover {
            background-color: rgba(147, 197, 253, 0.2);
            color: #bfdbfe;
            transform: translateY(-2px);
        }
        .contact-info a {
            color: #60a5fa;
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .team-flag {
                width: 60px;
                height: 45px;
            }
        }
