.sparkle-star {
  position: fixed;
  width: 8px;
  height: 8px;
  background: silver;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%,
    68% 57%, 79% 91%, 50% 70%,
    21% 91%, 32% 57%, 2% 35%,
    39% 35%
  );
  pointer-events: none;
  opacity: 1;
  animation: sparkleFade 0.6s ease-out forwards;
  z-index: 9999;
}

.sparkle-circle {
  position: fixed;
  width: 6px;
  height: 6px;
  background: silver;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1;
  animation: sparkleFade 0.6s ease-out forwards;
  z-index: 9999;
}

@keyframes sparkleFade {
  to {
    opacity: 0;
    transform: scale(2) rotate(180deg);
  }
}
