.flink {
            @apply inline-block px-4 py-2 m-2 text-blue-700 hover:text-white bg-gray-100 hover:bg-blue-600 rounded-lg transition duration-300;
        }
        .friendlink {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        html {
            scroll-behavior: smooth;
        }
        .hover-lift {
            transition: transform 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
        }
