
/* Subtle pulse for full-provenance gold seal */
@keyframes vr-stamp-pulse {
  0%   { transform: translateY(-50%) scale(1);   text-shadow: 0 0 0 rgba(255, 184, 0, 0.0); }
  40%  { transform: translateY(-50%) scale(1.15); text-shadow: 0 0 6px rgba(255, 184, 0, 0.8); }
  100% { transform: translateY(-50%) scale(1);   text-shadow: 0 0 0 rgba(255, 184, 0, 0.0); }
}

/* Animate only on hover/focus so it doesn't constantly pulse */
.vr-status--stamp:hover::after,
.vr-status--stamp:focus-visible::after {
  animation: vr-stamp-pulse 1.6s ease-out;
}
