:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --dark-color: #0f172a;
            --light-color: #f8fafc;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            background-color: #f8f9fa;
            line-height: 1.8;
        }
        .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(15, 23, 42, 0.9), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            margin-bottom: 50px;
        }
        .match-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
            border: none;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .match-header {
            background: linear-gradient(90deg, var(--primary-color), #2563eb);
            color: white;
            padding: 20px;
            text-align: center;
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .prediction-badge {
            background: linear-gradient(45deg, var(--secondary-color), #f97316);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: bold;
            display: inline-block;
            margin: 10px 0;
        }
        .live-indicator {
            animation: pulse 2s infinite;
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            margin-right: 8px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .stats-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            border-left: 5px solid var(--primary-color);
        }
        .flink {
            background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
            padding: 15px 25px;
            border-radius: 10px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-align: center;
            min-height: 80px;
        }
        .flink:hover {
            background: linear-gradient(135deg, var(--primary-color), #3b82f6);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary-color);
        }
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            width: 25px;
            color: var(--accent-color);
            margin-right: 10px;
        }
        .seo-content {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin: 40px 0;
        }
        .seo-content h2, .seo-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 20px;
        }
        .analysis-table {
            background: #f8fafc;
            border-radius: 10px;
            overflow: hidden;
        }
        .analysis-table th {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
        }
        .analysis-table td {
            padding: 15px;
            border-color: #e5e7eb;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .team-flag {
                width: 50px;
                height: 35px;
            }
            .seo-content {
                padding: 20px;
            }
        }
