ycreative_landing_page

@import ‘tailwindcss’ source(none); @source ‘../*/.{js,ts,jsx,tsx}’;

@import ‘tw-animate-css’;

/* Y Creative - Premium Landing Page Animations */

@keyframes fade-in-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@keyframes slide-in-right { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

.animate-fade-in-up { animation: fade-in-up 0.6s ease-out; }

.animate-slide-in-right { animation: slide-in-right 0.6s ease-out; }

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

/* Custom selection color */ ::selection { background-color: rgba(147, 51, 234, 0.2); color: inherit; }