
.glyph {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.glyph-active {
  animation: pop 0.25s ease forwards;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.6);
  }
  100% {
    transform: scale(1);
  }
}

.glyph.trail {
  position: absolute;
  z-index: 9999;
  font-size: 1em;
  pointer-events: none;
  color: var(--black, black);
  transition: transform 0.6s ease, opacity 0.6s ease;
}
