.games {
  background: #000 url("./../images/games-bg.jpg") center/cover no-repeat;
  padding: 40px 24px;
}

.games__header {
  text-align: center;
  margin-bottom: 48px;
}

.games__label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 12px;
}

.games__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.games__card {
  background: #1f1f1f;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.games__card:hover {
  transform: translateY(-4px);
}

.games__card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.games__card-img img {
  width: 100%;
  height: 100%;
}

.games__card-info {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.games__card-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.games__card-stars {
  font-size: 14px;
}

.games__card--hidden {
  display: none;
}

.games__footer {
  text-align: center;
}

.games__btn {
  display: inline-block;
  background: #fff;
  color: #fe0900;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 1000px;
  border: 2px solid #fe0900;
  transition: background 0.3s ease;
  cursor: pointer;
}

.games__btn:hover {
  background: #fff;
  color: #fe0900;
}
