.toastio-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.toastio {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-weight: bold;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: toastSlide 4.5s ease forwards;
  pointer-events: auto;
  max-width: 300px;
  position: relative;
  overflow: hidden;
}

@keyframes toastSlide {
  0%   { opacity: 0; transform: translateX(100%); }
  10%  { opacity: 1; transform: translateX(0); }
  90%  { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(100%); }
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: gold;
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
  animation: particleFly 700ms ease-out forwards;
}

@keyframes particleFly {
  to {
    transform: translate(var(--dx), var(--dy));
    opacity: 0;
  }
}
