body {
  cursor: none;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: #00d88c;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid #00d88c;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
}

.click-effect {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 2px solid #00d88c;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  animation: clickPulse 0.5s ease-out forwards;
  z-index: 9997;
}

@keyframes clickPulse {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.2);
  }
}