@keyframes pulse-gold {
  0% {
    text-shadow: 0 0 0 rgba(240, 184, 64, 0);
    transform: scale(0.96);
  }

  55% {
    text-shadow: 0 0 18px rgba(240, 184, 64, 0.55);
    transform: scale(1.04);
  }

  100% {
    text-shadow: 0 0 0 rgba(240, 184, 64, 0);
    transform: scale(1);
  }
}

.dice-stage__face.is-rolling {
  animation: pulse-gold 500ms ease-in-out infinite alternate;
}
