:root {
            --primary-color: #0d3b66;
            --secondary-color: #f4a261;
            --accent-color: #2a9d8f;
            --dark-color: #1d3557;
            --light-color: #f1faee;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
        }
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(29, 53, 87, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 60px;
        }
        .feature-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        .stat-box {
            background: white;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-top: 5px solid var(--accent-color);
            transition: all 0.3s ease;
        }
        .stat-box:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .match-analysis {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
        }
        .prediction-badge {
            background: linear-gradient(45deg, var(--secondary-color), #e76f51);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .live-score {
            background: linear-gradient(135deg, #2a9d8f, #264653);
            color: white;
            border-radius: 10px;
            padding: 15px;
            font-weight: bold;
            font-size: 1.2rem;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(42, 157, 143, 0); }
            100% { box-shadow: 0 0 0 0 rgba(42, 157, 143, 0); }
        }
        .footer {
            background: linear-gradient(135deg, var(--dark-color) 0%, #0d1b2a 100%);
            color: white;
            padding: 60px 0 30px;
        }
        .friendlink a.flink {
            color: var(--light-color);
            background: rgba(255,255,255,0.1);
            padding: 8px 20px;
            border-radius: 50px;
            margin: 5px 10px;
            display: inline-block;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .friendlink a.flink:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }
        .contact-info i {
            width: 30px;
            color: var(--secondary-color);
        }
        .seo-content {
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .seo-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .mobile-optimized img {
            max-width: 100%;
            height: auto;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                text-align: center;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
