:root {
            --primary: #1a5fb4;
            --secondary: #f0b429;
            --dark: #1e1e2d;
            --light: #f8f9fa;
            --success: #28a745;
            --danger: #dc3545;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            background-color: #f5f7fb;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, #1a5fb4, #f0b429);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 95, 180, 0.9), rgba(30, 30, 45, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 3rem;
        }
        .match-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            overflow: hidden;
            margin-bottom: 2rem;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: contain;
            margin: 0 auto;
        }
        .analysis-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--primary);
            padding: 2rem;
            margin: 2rem 0;
        }
        .live-score {
            background: linear-gradient(90deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 10px;
            border-radius: 8px;
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 0.9; }
            50% { opacity: 1; }
            100% { opacity: 0.9; }
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            height: 100%;
        }
        .icon-circle {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.8rem;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            margin: 8px;
            border-radius: 8px;
            color: var(--dark);
            text-decoration: none;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            border-color: var(--primary);
        }
        .footer {
            background: var(--dark);
            color: #b5b5c3;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #b5b5c3;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .seo-content {
            font-size: 1.05rem;
            line-height: 1.8;
            text-align: justify;
        }
        .seo-content h3 {
            color: var(--primary);
            margin-top: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .table-responsive {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .table thead {
            background: var(--primary);
            color: white;
        }
        .nav-link.active {
            color: var(--primary) !important;
            font-weight: bold;
            border-bottom: 3px solid var(--primary);
        }
        .prediction-badge {
            font-size: 0.9rem;
            padding: 5px 15px;
            border-radius: 20px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                text-align: center;
            }
            .team-flag {
                width: 60px;
                height: 45px;
            }
            .flink {
                padding: 10px 20px;
                margin: 5px;
                font-size: 0.9rem;
            }
        }
