.theater-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 360px;
  padding: 14px 18px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  background: #211410;
  color: var(--cream);
  box-shadow: 0 16px 50px #000b;
  font: 600 .9rem system-ui, sans-serif;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: .2s ease;
}

.theater-toast.show { opacity: 1; transform: translateY(0); }
.theater-toast.error { border-color: #d05c5c; color: #ffd0d0; }
.actions button.claimed { border-color: #62c88a; color: #9de4b8; }
.actions button.sold-out { border-color: #7c6659; color: #a89487; cursor: not-allowed; opacity: .8; }
