/* Custom scrollbar to keep it dark and minimal */ ::-webkit-scrollbar { width: 8px; height: 8px; } ::-webkit-scrollbar-track { background: #1a1a1a; } ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #555; } /* Glassmorphism for floating status elements if needed later */ .glass { background: rgba(30, 30, 30, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } /* Animate recommend badge */ @keyframes pop { 0% { transform: scale(0.9); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } .recommend-card { animation: pop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }