:root {
            --primary-color: #0d4d9c;
            --secondary-color: #ff6b00;
            --accent-color: #2ecc71;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 77, 156, 0.85), rgba(13, 77, 156, 0.9)), 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: 120px 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .stat-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.8rem;
        }
        .match-prediction {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            border-radius: 15px;
            overflow: hidden;
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        .prediction-meter {
            height: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            margin: 20px 0;
        }
        .prediction-fill {
            height: 100%;
            border-radius: 15px;
            background: linear-gradient(90deg, var(--accent-color), #f1c40f);
            transition: width 1.5s ease;
        }
        .live-score {
            background: #e74c3c;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
            100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
        }
        .data-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        .data-table thead th {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
        }
        .data-table tbody tr:hover {
            background-color: rgba(13, 77, 156, 0.05);
        }
        .analysis-card {
            border-left: 5px solid var(--secondary-color);
            background: white;
            padding: 25px;
            border-radius: 8px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .contact-form input, .contact-form textarea {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(13, 77, 156, 0.25);
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-color), #1565c0);
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background: linear-gradient(to right, #0c3d7a, var(--primary-color));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(13, 77, 156, 0.3);
        }
        .footer {
            background: var(--dark-color);
            color: #aaa;
            padding: 60px 0 30px;
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .friendlink {
            background: #f1f5f9;
            padding: 50px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            margin: 8px;
            border-radius: 8px;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 600;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .mobile-adjust {
            padding-left: 15px;
            padding-right: 15px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .stat-card {
                margin-bottom: 25px;
            }
        }
        .schema-item {
            display: none;
        }
