.game-detail {
  padding: 60px 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.game-detail__top {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.game-detail__img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  flex-shrink: 0;
}

.game-detail__info {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.game-detail__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 50px;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.2;
}

.game-detail__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
  color: var(--dark);
}

.game-detail__desc p + p {
  margin-top: 14px;
}

.game-detail__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.game-detail__tagline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 50px;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 0.9;
  font-style: normal;
  max-width: 800px;
  flex: 1;
}

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

  
  .game-detail__top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .game-detail__info {
    width: 100%;
    gap: 20px;
  }

  .game-detail__title {
    font-size: 30px;
  }

  
  .game-detail__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .game-detail__tagline {
    font-size: 30px;
    max-width: 100%;
    text-align: center;
  }
}
