.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent-green);
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.3s;
  z-index: 1001;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
