/* ─── CURSOR ANIMATION (sab pages pe lagao) ─────────────────────── */



/* Gold dot — instant */

/* Ring — smooth lag */


/* Blurry glow — slowest, cinematic */
#cursorGlow {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.06) 40%, transparent 70%);
  filter: blur(18px);
  mix-blend-mode: screen;
  transition: width 0.3s ease, height 0.3s ease;
}