html {
            scroll-behavior: smooth;
        }
        .flink a {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            background-color: #f9fafb;
        }
        .flink a:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-color: #3b82f6;
            background-color: #eff6ff;
        }
        .match-card {
            background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
            color: white;
        }
        .analysis-section {
            background-color: #f8fafc;
            border-left: 4px solid #3b82f6;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        .stats-grid div {
            background-color: white;
            border-radius: 0.5rem;
            padding: 1.5rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        #live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
