.soc-games {
  padding: 60px 0 80px;
  background: #fff;
}

.soc-games__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.soc-games__head-left {
  flex: 1;
  max-width: 720px;
}

.soc-games__title {
  color: #6f22a6;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
}

.soc-games__desc {
  color: #5c5879;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.soc-games__see-all {
  flex-shrink: 0;
}

.soc-games__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.soc-game-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.soc-game-card.is-hidden {
  display: none;
}

.soc-game-card__media {
  display: block;
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #2a1252;
  position: relative;
  box-shadow: 0 10px 30px rgba(54, 14, 100, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.soc-game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.soc-game-card:hover .soc-game-card__media {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(54, 14, 100, 0.3);
}

.soc-game-card:hover .soc-game-card__media img {
  transform: scale(1.04);
}

.soc-game-card__label {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 14px;
  padding: 6px 18px;
  background: var(--color-yellow);
  color: #1b1730;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.soc-games__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .soc-games__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .soc-games__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .soc-games__title {
    font-size: 36px;
  }
  .soc-games__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .soc-games__see-all {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .soc-games {
    padding: 40px 0 60px;
  }
  .soc-games__title {
    font-size: 30px;
  }
  .soc-game-card__label {
    font-size: 13px;
    padding: 5px 14px;
  }
}
