@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideInUp{0%{transform:translateY(30px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes slideInRight{0%{transform:translateX(-30px);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes slideInLeft{0%{transform:translateX(30px);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes scaleIn{0%{transform:scale(.9);opacity:0}to{transform:scale(1);opacity:1}}.animate-fade-in{animation:fadeIn .6s ease-in-out forwards}.animate-slide-up{animation:slideInUp .6s ease-out forwards}.animate-slide-right{animation:slideInRight .6s ease-out forwards}.animate-slide-left{animation:slideInLeft .6s ease-out forwards}.animate-scale-in{animation:scaleIn .6s ease-out forwards}.delay-100{animation-delay:.1s}.delay-200{animation-delay:.2s}.delay-300{animation-delay:.3s}.delay-400{animation-delay:.4s}.delay-500{animation-delay:.5s}.opacity-0{opacity:0}@keyframes hover-lift{0%{transform:translateY(0)}to{transform:translateY(-5px)}}.hover-lift{transition:transform .3s ease}.hover-lift:hover{transform:translateY(-5px)}