.toast.removing animation: toast-out 0.3s ease forwards; @keyframes toast-in from transform: translateX(100px); opacity: 0; to transform: translateX(0); opacity: 1; @keyframes toast-out from transform: translateX(0); opacity: 1; to transform: translateX(100px); opacity: 0;
/* Floating particles */ .particle position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; background: var(--accent); animation: float-particle linear infinite; opacity: 0;