/* Custom Scrollbar */ ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; } .dark ::-webkit-scrollbar-thumb { background: #475569; } /* Hide scrollbar for horizontal category list */ .no-scrollbar::-webkit-scrollbar { display: none; } .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; } /* Smooth transitions */ .transition-all-300 { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } /* Pulse animation for live badge */ @keyframes pulse-soft { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .8; transform: scale(1.05); } } .animate-pulse-soft { animation: pulse-soft 2s infinite; }