:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --dark-color: #0f172a;
            --light-color: #f8fafc;
            --success-color: #10b981;
            --gray-color: #64748b;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), 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;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .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.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        .match-card {
            border-left: 5px solid var(--secondary-color);
            transition: all 0.3s ease;
        }
        .match-card:hover {
            box-shadow: 0 10px 20px rgba(220, 38, 38, 0.1);
        }
        .stat-badge {
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 20px;
        }
        .analysis-section {
            background-color: #f8fafc;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }
        .player-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .player-card:hover {
            transform: scale(1.05);
        }
        .prediction-meter {
            height: 20px;
            border-radius: 10px;
            overflow: hidden;
            background-color: #e2e8f0;
        }
        .meter-fill {
            height: 100%;
            border-radius: 10px;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        .friendlink {
            background-color: #f1f5f9;
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background-color: white;
            border-radius: 6px;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .contact-info i {
            width: 30px;
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .team-logo {
                width: 60px;
                height: 60px;
            }
        }
