:root {
            --primary-blue: #1e3a8a;
            --secondary-blue: #3b82f6;
            --accent-gold: #f59e0b;
            --dark-bg: #0f172a;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, sans-serif;
            color: var(--text-dark);
            background-color: var(--light-bg);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-bg) 100%);
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0icGF0dGVybiIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiBwYXR0ZXJuVHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cmVjdCB3aWR0aD0iMiIgaGVpZ2h0PSI0MCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSI+PC9yZWN0PjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSI+PC9yZWN0Pjwvc3ZnPg==');
        }
        .match-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            border-left: 5px solid var(--accent-gold);
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .vs-text {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        .prediction-badge {
            background: linear-gradient(135deg, var(--accent-gold), #d97706);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            display: inline-block;
            margin: 1rem 0;
        }
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            height: 100%;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--secondary-blue);
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .live-score {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            animation: pulse 2s infinite;
            font-weight: 700;
            font-size: 1.3rem;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.8; }
            100% { opacity: 1; }
        }
        .analysis-section {
            background: var(--dark-bg);
            color: white;
            padding: 4rem 0;
            border-radius: 30px 30px 0 0;
            margin-top: 5rem;
        }
        .tab-content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            margin-top: 1rem;
        }
        .nav-tabs .nav-link {
            color: #cbd5e1;
            font-weight: 600;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px 10px 0 0;
        }
        .nav-tabs .nav-link.active {
            background: var(--secondary-blue);
            color: white;
        }
        .player-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .player-card:hover {
            background: rgba(59, 130, 246, 0.2);
            transform: scale(1.02);
        }
        .form-guide {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 5px;
        }
        .win-form { background: #10b981; }
        .draw-form { background: #f59e0b; }
        .loss-form { background: #ef4444; }
        .footer {
            background: var(--dark-bg);
            color: #cbd5e1;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .friendlink {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: #cbd5e1;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            margin: 0.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--secondary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .seo-content {
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .seo-content h3 {
            color: var(--primary-blue);
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .seo-content h4 {
            color: var(--text-dark);
            margin-top: 1.8rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
            }
            .match-card {
                padding: 1.5rem;
            }
            .team-flag {
                width: 60px;
                height: 45px;
            }
            .vs-text {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
