.game-section {
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 60px;
  overflow: hidden;
}

.game-section__title {
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: var(--color-pink);
  text-align: center;
  width: 100%;
}

.game-section__description {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-gray);
  text-align: center;
  width: 100%;
}

.game-section__description p + p {
  margin-top: 20.8px;
}

.game-section__play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 14px 10px;
  width: 190px;
  font-family: var(--font-lato);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-pink);
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.game-section__play-btn:hover {
  background-color: var(--color-pink);
  color: #fff;
}

.game-section__row {
  display: flex;
  gap: 25px;
  width: 100%;
  height: 224px;
}

.game-section__card {
  flex: 1;
  min-width: 0;
  background-color: var(--color-card-bg);
  border-radius: 20px;
  padding: 28px 10px;
  filter: drop-shadow(18.333px 33.333px 16.667px rgba(0, 0, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.game-section__card-text {
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-gray);
  width: 320px;
  max-width: 100%;
}

.game-section__image-wrapper {
  flex: 1;
  min-width: 0;
}

.game-section__image {
  width: 100%;
  height: 224px;
  border-radius: 21.579px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .game-section {
    padding: 40px 20px;
    gap: 20px;
  }

  .game-section__title {
    font-size: 32px;
  }

  .game-section__row {
    flex-direction: column;
    height: auto;
  }

  .game-section__card {
    justify-content: flex-start;
    padding: 10px;
  }

  .game-section__card-text {
    width: 100%;
  }

  .game-section__image {
    height: 200px;
  }

  .game-section__image-wrapper {
    order: -1;
  }
}
