body.cursor-enabled {
  cursor: none;
}

body.cursor-disabled {
  cursor: auto;
}

#custom-cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#custom-cursor-wrapper.visible {
  opacity: 1;
}

#custom-cursor-svg {
  width: 100%;
  height: 100%;
  animation: spin 6s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (hover: none) and (pointer: coarse) {
  #custom-cursor-wrapper {
    display: none !important;
  }

  body.cursor-enabled {
    cursor: auto !important;
  }
}
