@media (min-width: 769px) and (max-width: 800px) {
  .listsLi {
    width: 45% !important;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .gamesUl {
    grid-gap: 0;
  }
}

.gamesLl:hover .gamesLlDiv {
  box-shadow: 0px 2px 9px 1px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;

}


.game-right-top {
  padding: 8px;
  position: absolute;
  top: 0px;
  right: 0px;
  color: black;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 3px solid #ff0000;
  border-left: 3px solid #ff0000;
  background-color: rgba(255, 255, 255, 0.9);
  -moz-border-bottom-left-radius: 30px;
  -webkit-border-bottom-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.game-right-top img {
  width: 20px;
  height: 20px;
  border: none;
}

.game-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gamesUl {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 20px;
}

.gamesLl {
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  height: 100%;
}

.gameDescript {
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0px;
  background: #ffac0a;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
}


.gamesLlDiv {
  position: relative;
}

.gamesLlDiv {
  box-shadow: 0px 2px 9px 1px rgba(0, 52, 75, 0.2);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 100%;
}

.gamesLlDiv a {
  display: block;
  width: 100%;
  height: 100%;
}

.gamesLlDiv img {
  height: 180px;
  border: 0px;
  width: 100%;
  object-fit: cover;
}

.game-right-top img {
  width: 20px;
  height: 20px;
  border: none;
}

@media screen and (max-width: 768px) {
  .gamesUl {
    grid-template-columns: repeat(auto-fill, minmax(8, 1fr));
    grid-gap: 10px;
  }

  .gamesLlDiv img {
    height: 150px;
  }
}