.stepostin-games {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 16px;
  margin-top: 20px;
}

.stepostin-games-container {
  max-width: 1140px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stepostin-games-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #070707;
  margin: 0;
}

.stepostin-games-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stepostin-game-wrapper {
  display: flex;
  flex-direction: column;
  width: 290px;
  background: #fef8e2;
  border-radius: 10px;
  border: 1px solid #070707;
  box-shadow: 0px 4px 0px #070707;
  box-sizing: border-box;
  overflow: hidden;
}

.stepostin-game {
  width: 290px;
  height: 380px;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepostin-game::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}



.stepostin-game-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  cursor: pointer;
}

.stepostin-game:hover::before {
  opacity: 0.5;
}

.stepostin-game:hover .stepostin-game-content {
  opacity: 1;
  visibility: visible;
}

.stepostin-game-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  color: #070707;
  margin: 0;
  text-decoration: none;
  text-align: center;
  white-space: wrap;
  margin-top: 10px;
}

.stepostin-game-play-now-btn {
  background: #00643B;
  border-radius: 3px;
  color: #070707;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  padding: 10px 30px;
  border: 2px solid #00643B;
  cursor: pointer;
  width: 130px;
  white-space: nowrap;
}

.stepostin-game-review-btn {
  background: transparent;
  border-radius: 3px;
  color: #00643B;
  border: 1px solid #00643B;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  padding: 10px 30px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  width: 130px;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .stepostin-game-wrapper {
    width: 270px;
  }

  .stepostin-game {
    width: 270px;
  }
}