.game-list-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .game-list-wrapper {
    width: 90%;
  }
}

.game-list-container {
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.game-list {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.game-list > img {
  width: 100%;
  margin-bottom: 0.5rem;
}
.empty-bar {
  position: relative;
  height: 1rem;
  width: 100%;
  margin-bottom: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
  border-radius: 0.25rem;
  overflow: hidden;
}
.empty-bar > .percentage-rate {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-image: linear-gradient(
    306deg,
    #fb0 25%,
    #ff9307 0,
    #ef0 50%,
    #edb304 0,
    gold 75%,
    #ffc107 0,
    #ffc107
  );
  background-size: 80px 100%;
  animation: moveStripe 2s linear infinite;
}

.text-rate {
  text-align: center;
  color: #fff;
  font-weight: 500;
}

@keyframes moveStripe {
  0% {
    background-position: 100px 0;
  }
  100% {
    background-position: 0 0;
  }
}
