body {
  margin-top: 0 !important;
  padding-top: 0 !important;
  min-width: 800px !important;
  cursor: url("images/cursor.png"), default !important;
}
body,
body * {
  user-select: none !important;
  cursor: url("images/cursor.png"), default !important;
}
body {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  cursor: url("images/cursor.png"), default !important;
}

BODY,
TH,
TD {
  font-family: verdana, arial, helvetica;
  user-select: none !important;
}

a,
img {
  cursor: url("images/crosshair.png"), default !important;
}

a:link,
a:visited {
  color: #dfa539;
  font-weight: bold;
}

html {
  /* Firefox */
  scrollbar-width: auto;
  scrollbar-color: #dfa539 #0d0f13;
  /* IE */
  scrollbar-face-color: #dfa539;
  scrollbar-arrow-color: #668caa;
  scrollbar-track-color: #0d0f13;
  scrollbar-shadow-color: rgb(0, 0, 0);
  scrollbar-highlight-color: rgb(255, 255, 255);
  scrollbar-3dlight-color: #000000;
  scrollbar-darkshadow-color: #202020;
}

/* Firefox */
html {
  scrollbar-width: auto; /* Default scrollbar width */
  scrollbar-color: #dfa539 #0d0f13; /* Thumb and track colors */
}

/* Safari and other modern browsers */
html::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
  height: 12px; /* Height of the scrollbar for horizontal scrolling */
}

html::-webkit-scrollbar-thumb {
  background-color: #dfa539; /* Thumb color */
  border-radius: 10px; /* Roundness of the scrollbar thumb */
  border: 2px solid #0d0f13; /* Border around the thumb for better visibility */
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #ffc16e; /* Lighter color when hovered */
}

html::-webkit-scrollbar-track {
  background-color: #0d0f13; /* Track background color */
  border-radius: 10px; /* Roundness of the track */
  border: 1px solid #202020; /* Optional border around the track */
}

html::-webkit-scrollbar-track:hover {
  background-color: #11151c; /* Slightly brighter track when hovered */
}

.hover {
  transition: transform 0.2s;
  margin: 0 auto;
}

.hover:hover {
  transform: scale(1.2);
}

.bullet-hole {
  position: fixed; /* Use 'fixed' to keep it in the same position relative to the viewport */
  width: 15px;
  height: 15px;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease-out; /* Fade out effect */
}

.hold-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  display: none;
  z-index: 9999;
}

.hold-effect.active {
  display: block;
}
