@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.game-play-container {
  width: 100%;
  height: 480px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.game-play-container .back-game-img {
  filter: blur(20px);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.game-play-container .preview-container {
  max-width: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.game-play-container .preview-container .preview-game-img {
  width: 180px;
  height: 180px;
  border-radius: 30px;
}

.game-play-container .preview-container .play-button {
  position: relative;
  min-width: 285px;
  min-height: 50px;
  line-height: 50px;
  margin-top: 20px;
  border: 0;
  border-radius: 25px;
  border-bottom: 5px solid grey;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .004);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 -1px 1px hsla(0, 0%, 100%, .1), inset 0 1px 1px hsla(0, 0%, 100%, .2);
  will-change: transform;
  transition: transform .15s linear;
  border-bottom-color: #ffb53d !important;
  color: #000;
  background: linear-gradient(140deg, #fbde04, #e2c803);
}

.game-play-container .preview-container .play-button:hover {
  border-bottom-color: #ff5e00 !important;
  color: #fff;
  background: linear-gradient(140deg, #ff9214, #fa8500);
}

.game-play-container .preview-container .game-title {
  font-size: 16px;
  margin-top: 20px;
  color: #fff;
}

.game-description {
  margin: 15px 0;
  font-size: 16px;
  line-height: 22px;
  color: #333;
}