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

/* Custom cursor element */
.custom-cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background-color: rgba(0, 255, 255, 0.7); /* aqua glow */
	border: 2px solid #00ffff;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	transition: transform 0.08s ease-out;
	z-index: 9999;
}