.copy-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: min(360px, calc(100% - 32px));
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(15, 15, 16, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.copy-toast strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary, #d4af37);
}

.copy-toast span {
  display: block;
  line-height: 1.5;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .copy-toast {
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: auto;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}