.seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 95px;
  height: 95px;
  cursor: pointer;
  transition: 0.4s ease;
  z-index: 10;
  background-blend-mode: overlay;
}

.seal.stamped {
  transform: translate(-50%, -40%) scale(0.7);
}

.seal svg {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.seal::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 20%;
  width: 60%;
  height: 40%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.seal:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.seal-text {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Cinzel", serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-align: center;
  color: rgb(92, 15, 34);
  text-shadow:
    0.3px 0.3px 0px rgba(92, 15, 34, 0.338),
    0.4px 0.4px 0px rgba(92, 15, 34, 0.3),
    0.5px 0.5px 0px rgba(92, 15, 34, 0.256);
  /* Subtle tilt makes it look hand-stamped */
  transform: rotate(-24deg);
  pointer-events: none;
  user-select: none;
}
.seal-text > span {
  font-size: 6px;
}
