@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; } /* Custom scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #1a202c; } ::-webkit-scrollbar-thumb { background: #7c3aed; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #6d28d9; } /* Animation for model cards */ @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } } .model-card:hover { animation: float 3s ease-in-out infinite; }