.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: fixed;
  background-color: #bbff00 !important;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  mix-blend-mode: normal !important;
  filter: none !important;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid #bbff00 !important;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border 0.3s ease;
  mix-blend-mode: normal !important;
  filter: none !important;
}

.cursor-dot.hovered {
  width: 20px !important;
  height: 20px !important;
  transition: width 0.3s ease, height 0.3s ease;
}

.cursor-ring.hovered {
  width: 48px !important;
  height: 48px !important;
  transition: width 0.3s ease, height 0.3s ease;
}