/* Big chasing yellow circle */
.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 3px solid #FFD700; /* Yellow */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: top 0.1s ease-out, left 0.1s ease-out;
}

/* Red dot at cursor */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #FF0000; /* Red */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

/* Optional trail effect (no glow) */
.trail-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #FFD700;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  animation: trailFade 0.5s forwards;
}

@keyframes trailFade {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
}
