/* Custom cursor */
* {
  cursor: none !important;
}

/* Ukuran Default Desktop */
#customCursor {
  position: fixed;
  width: 80px;         
  height: 80px;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 999999999;
  transform: translate(-30%, -20%);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  #customCursor {
    width: 55px;
    height: 55px;
  }
}

/* Responsive - Mobile (Sembunyikan cursor) */
@media (max-width: 600px) {
  #customCursor {
    display: none !important;
  }
}
