.div-game-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 5px;
}

.game-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game-thumbnail {
  width: 100%;
  transition: 0.3s;
  border-radius: 5px;
}

.game-thumbnail:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.div-top-section {
  margin-top: 25px;
  margin-bottom: 25px;
}

.div-section-heading {
  display: flex;
}

.section-heading {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  font-weight: bold;
}

.div-section {
  margin-top: 15px;
  margin-bottom: 15px;
}

.game-info-box {
  display: none;
  grid-column: 1 / -1;
}
