@font-face {
  font-family: 'CustomFont';
  src: url('font/ada.otf') format('truetype');
}

.adatrue {
  font-family: 'CustomFont', sans-serif;
}

body, #a, .tooltip:hover, .tooltiptext, .tooltiptextt, .tooltiptextr, .tooltip .tooltiptextr,
.tooltip .tooltiptextt, .tooltip .tooltiptext, .tooltip:hover .tooltiptextt,
.tooltip:hover .tooltiptextr, .tooltip:hover .tooltiptext {
  cursor: url("img/c.png"), auto;
}

.glow {
  animation: glow 8s infinite alternate;
  color: #5b21b6; /* Adjust text color to #5b21b6 */
}

@keyframes glow {
  from {
      text-shadow: 0 0 1px #5b21b6, 0 0 2px #5b21b6, 0 0 3px #5b21b6, 0 0 4px #5b21b6, 0 0 5px #5b21b6;
  }
  to {
      text-shadow: 0 0 2px #5b21b6, 0 0 3px #5b21b6, 0 0 4px #5b21b6, 0 0 5px #5b21b6, 0 0 6px #5b21b6;
  }
}

/* Disable text selection */
body {
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

img {
  -webkit-user-drag: none; /* Safari/Chrome */
  -khtml-user-drag: none; /* Konqueror */
  -moz-user-drag: none; /* Firefox */
  -o-user-drag: none; /* Opera */
  pointer-events: none;
}

@media (max-width: 640px) { /* Assuming 'sm' breakpoint is 640px */
  .hidden-on-sm {
      display: none;
  }
}

.news-ticker {
  overflow: hidden;
}
.news-ticker span {
display: inline-block;
white-space: nowrap;
padding: 0 10px; /* Adjust the amount of space between news items */
animation: marquee 36s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(20%); }
  100% { transform: translateX(-100%); }
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 230px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position the tooltip above the text */
  left: 50%;
  margin-left: -90px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptextt {
  visibility: hidden;
  width: 80px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 4px 0px;
  position: absolute;
  z-index: 10;
  bottom: 125%; /* Position the tooltip above the text */
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptextr {
  visibility: hidden;
  max-width: 180px;
  min-width: 130px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 4px 0px;
  position: absolute;
  z-index: 10;
  bottom: 125%; /* Position the tooltip above the text */
  left: 40%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptextbtm {
  visibility: hidden;
  max-width: 180px;
  min-width: 130px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 4px 0px;
  position: absolute;
  z-index: 10;
  bottom: -115%; /* Position the tooltip above the text */
  left: 40%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptextbtm {
  visibility: visible;
  opacity: 0.75;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 0.75;
}

.tooltip:hover .tooltiptextr {
  visibility: visible;
  opacity: 0.75;
}
.tooltip:hover .tooltiptextt {
  visibility: visible;
  opacity: 0.75;
}

.sprite {
  width: 7px;
  height: 16px;
  background-image: url('fires/bluefire.png');
  background-position: center;
  background-size: 1000% 600%;
  animation: play 4s steps(30) infinite;
}
.spritesp {
  width: 7px;
  height: 16px;
  background-image: url('fires/fireball.png');
  background-position: center;
  background-size: 1000% 600%;
  animation: play 4s steps(30) infinite;
}
.spritess {
  width: 7px;
  height: 16px;
  background-image: url('fires/ss.png');
  background-position: center;
  background-size: 1000% 600%;
  animation: play 4s steps(30) infinite;
}

@keyframes play {
  from { background-position: 0 0; }
  to { background-position: -1000% 600%; }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#rankings-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#rankings {
    list-style: none;
    padding: 0;
}

#rankings li {
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc; /* Optional: Add a border between list items */
}

tr {
    transition: background-color 0.3s ease-in-out;
  }
  /* Define hover background color */
  tr:hover {
    background-color: #2d3748;
}

::-webkit-scrollbar {
    width: 0px; /* Width of the scrollbar */
  }
::-webkit-scrollbar-track {
    background: transparent; /* Color of the track */
  }
::-webkit-scrollbar-thumb {
    background-color: transparent; /* Make the scrollbar thumb invisible */
    border-radius: 10px; /* Rounded corners of the scrollbar */
    width: 4px; /* Width of the scrollbar thumb */
  }
