/* Offset jackpot text vertically via --jackpot-offset-y */
.jackpot {
  --jackpot-offset-y: -8px;
  --jackpot-font-size: 22px;
}

.jackpot .text-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: translateY(var(--jackpot-offset-y));
}

#jackpot_amount {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 800;
  font-size: var(--jackpot-font-size);
}

/* Hot games marquee slider */
.hot-games-wrapper {
  padding: 0;
  margin: 0 0 4px;
}

.hot-games-wrapper .title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 4px;
}

.hot-games-wrapper .i-hot {
  color: #ff5c5c;
}

.hot-games {
  position: relative;
  height: 100px;
  overflow: hidden;
  margin: 0;
}

.hot-games .img-container {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  min-width: 100%;
  height: 100%;
  will-change: transform;
  gap: 5px;
  padding: 0 2px;
  box-sizing: border-box;
}

.hot-games .games-leave-active {
  animation: leave 25s linear infinite;
  animation-play-state: running;
}

.hot-games .games-enter-active {
  animation: enter 25s linear infinite;
  animation-play-state: running;
}

.hot-games .games-leave-active:hover,
.hot-games .games-enter-active:hover {
  animation-play-state: paused;
}

.hot-games .games-leave-active.pause,
.hot-games .games-enter-active.pause {
  animation-play-state: paused;
}

.hot-games a {
  color: inherit;
  display: block;
}

.hot-games .game-item {
  background: transparent;
  width: 82.5px;
  height: 82.5px;
  padding: 0;
  margin: 0;
  text-align: center;
  position: relative;
  border-radius: 8px;
  box-shadow: none;
  border: none;
  flex: 0 0 82.5px;
}

.hot-games .game-item img {
  width: 82.5px;
  height: 82.5px;
  object-fit: contain;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  background: transparent;
  display: block;
}

.hot-games .game-item .game-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 90px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@keyframes leave {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes enter {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}
