* {
            scroll-behavior: smooth;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(13, 59, 102, 0.9) 0%, rgba(33, 94, 148, 0.8) 100%);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 4px;
            background: #f8f9fa;
            border-radius: 6px;
            color: #0d3b66;
            font-weight: 500;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: #0d3b66;
            color: white;
            text-decoration: none;
            border-color: #0d3b66;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .analysis-card {
            border-left: 4px solid #f4a261;
        }
        .match-card:hover .team-logo {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
        }
