@media (hover: hover) and (pointer: fine) {
  html, body, *, a, button, input, textarea, select {
    cursor: none !important;
  }

  body, * {
    scrollbar-width: none;
  }

  body::-webkit-scrollbar, *::-webkit-scrollbar {
    display: none;
  }

  .cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.2s ease;
    z-index: 9999;
  }

  .cursor-dot {
    background-color: rgb(249, 201, 0);
    transition: transform 0.1s ease;
  }

  .cursor-outline {
    border: 2px solid #ffffff;
    background: transparent;
  }
}
.scroll-hidden {
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE و Edge */
}
.scroll-hidden::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

