:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1639806586238-9d8c6bfc1a39?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .match-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            overflow: hidden;
            height: 100%;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: contain;
            transition: var(--transition);
        }
        .match-card:hover .team-flag {
            transform: scale(1.1);
        }
        .prediction-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .analysis-card {
            border-left: 4px solid var(--accent-color);
            background: var(--bg-light);
        }
        .tab-content {
            border: 1px solid #dee2e6;
            border-top: none;
            border-radius: 0 0 10px 10px;
            padding: 2rem;
        }
        .nav-tabs .nav-link.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        .friendlink a.flink {
            display: inline-flex;
            align-items: center;
            background: var(--bg-light);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            color: var(--text-dark);
            text-decoration: none;
            margin: 0.5rem;
            transition: var(--transition);
            font-weight: 500;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background: linear-gradient(to right, #0f172a, var(--primary-color));
            color: white;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
        }
        .social-icon:hover {
            background: var(--accent-color);
            color: var(--text-dark);
            transform: rotate(15deg);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .player-img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 4rem 0; }
            .stat-number { font-size: 2rem; }
            .team-flag { width: 60px; height: 45px; }
        }
        .seo-content {
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .seo-content h3 {
            color: var(--primary-color);
            margin-top: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
