.game-box {
  max-width: 1200px;
  margin: 25px auto 45px;
  padding: 0 12px;
}

.game-frame-container {
  border-radius: 25px;
  width: 100%;
  height: 496px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Helvetica, Arial, sans-serif;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab) 0 0/300% 300%;
  animation: pluto-gradient 60s ease 0s infinite normal none running
}

.game-frame-container .game-img img {
  height: 250px;
  width: auto;
  max-width: 100%;
  margin-top: 2rem;
  border-radius: 10px
}

.game-frame-container .game-title {
  font-size: 0.875rem;
  margin-top: 2.5rem;
  color: #fff
}

.game-frame-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-family: Roboto Condensed, Helvetica Neue, Arial, "sans-serif";
  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-frame-container .play-button:hover {
  border-bottom-color: #ff5e00 !important;
  color: #fff;
  background: linear-gradient(140deg, #ff9214, #fa8500);
}

.game-frame-container .start-game-btn {
  margin-top: 30px;
  background: linear-gradient(180deg, #fd0, #ff9012);
  box-shadow: 12px 14px 15px -1px #0003, -20px -11px 15px -1px #fff6;
  color: #0a0a0a;
  height: 60px;
  box-sizing: border-box;
  font-weight: 700;
  width: 290px;
  border-radius: 30px;
  display: inline-flex;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  border: 3px solid #fff
}

.game-frame-container .start-game-btn .triangle-icon {
  margin-right: 15px;
  display: inline-block;
  height: 8px;
  width: 8px;
  animation: moveIocn 0.8s infinite linear;
}

.game-frame-container .start-game-btn .triangle-icon svg {
  vertical-align: top;
  position: relative;
  top: -2px;
}

.game-frame-container .start-game-btn:hover {
  background: #fd0;
  color: #4a4a4a
}

.game-description {
  margin: 15px 0;
  font-size: 17px;
  line-height: 22px;
  color: #fff;
}

@media screen and (max-width:1100px) {
  .game-box {
    margin: 10px auto 45px;
  }
}