*, *::before, *::after {
    cursor: none !important;
  }
  
  .cursor-bug {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    image-rendering: pixelated;
    z-index: 9999;
    transition: transform 80ms ease;
  }
  
  .cursor-bug.hovering {
    transform: scale(1.3);
  }
  
  .cursor-bug.critical {
    filter: none;
  }