/* Work of Art — gold cursor + trail sparkles (desktop pointer only) */
@media (hover: hover) and (pointer: fine) {
  html.woa-sparkle-on,
  html.woa-sparkle-on body {
    cursor: none;
  }
}
@media (hover: none), (pointer: coarse) {
  #sparkle-cursor {
    display: none !important;
  }
}
#sparkle-cursor {
  position: fixed;
  left: -100px;
  top: -100px;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  background: radial-gradient(circle, #ffe088 0%, #e9c349 45%, rgba(233, 195, 73, 0.2) 72%);
  box-shadow: 0 0 18px 3px rgba(233, 195, 73, 0.65);
  opacity: 0.95;
  will-change: left, top;
}
.sparkle {
  position: fixed;
  background: #ffe088;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  box-shadow: 0 0 10px rgba(233, 195, 73, 0.85);
  animation: woa-sparkle-fly 1.4s forwards ease-out, woa-sparkle-flicker 0.15s infinite alternate;
}
@keyframes woa-sparkle-fly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0);
    opacity: 0;
  }
}
@keyframes woa-sparkle-flicker {
  0% {
    opacity: 0.65;
    filter: brightness(1);
  }
  100% {
    opacity: 1;
    filter: brightness(1.45);
  }
}
