.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

@keyframes fade-in-up { 
    from { opacity: 0; transform: translateY(40px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.animate-in { 
    animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; 
}

/* Custom Grid transitions */
.aspect-square {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
