/* Hide default cursor */
body {
  cursor: pointer;
}

/* Custom Cursor Dot */
.custom-cursor {
  width: 8px;
  height: 8px;
  background:transparent;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;

  /* Smooth visuals */
  box-shadow: 0 0 12px rgba(202, 255, 0, 0.7);
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover scale + glow */
.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(1.8);
  box-shadow: 0 0 25px rgba(202, 255, 0, 1);
 background:#C8F31D;	
}
