@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes wgKnock {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-10px);
  }
}

.game-start-container {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(91deg, #ee7752, #e73c7e, #23a6d5, #49b66a) 0 0 / 300% 300%;
  animation: gradient 10s ease infinite;
  background-size: 400% 400%;
  border-radius: 25px;
}

.game-start-container .game-img {
  width: 180px;
  height: 180px;
  border-radius: 30px;
  z-index: 100;
}

.game-start-container .game-name {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  text-align: center;
  margin: 25px 0 35px;
  z-index: 100;
}

.game-start-container .play-game-btn {
  width: 300px;
  height: 60px;
  cursor: pointer;
  line-height: 60px;
  border: none;
  color: #fff;
  font-size: 24px;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  font-weight: 700;
  z-index: 100;
  background-color: #a83deb !important;
  border-radius: 80px;
  transition: transform 0.3s ease;
}

.game-start-container .play-game-btn:hover {
  transform: scale(1.05);
  color: #fca311;
}

.game-description {
  margin: 15px 0;
  font-size: 16px;
  line-height: 22px;
  color: #333;
}