.cursor-circle {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.2);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease, opacity 0.3s ease;
  will-change: transform;
}
.cursor-circle::after {
  content: "";
  font-size: 12px;
  color: #3366ff;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cursor-circle.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
