.toast {
  position: fixed;
  bottom: 110px;
  right: 16px;
  background: rgba(20,20,22,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  z-index: 50;
  animation: toastIn 250ms ease-out;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  color: var(--text);
}
