.flink {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            padding: 12px 20px;
            border-radius: 8px;
            background-color: #f9fafb;
            display: inline-block;
            margin: 5px;
            text-decoration: none;
            color: #374151;
        }
        .flink:hover {
            background-color: #1d4ed8;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #1d4ed8 0%, #10b981 100%);
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f0f9ff);
            border-left: 4px solid #1d4ed8;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
