/* Custom styles for Toolkit Social */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations if needed */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}
