.game-detail-main {
  background: #27025a;
}

.game-detail {
  --detail-gutter: clamp(20px, 3.49vw, 67px);
  --detail-copy: #eddcff;
  --detail-muted: #e0bec9;
  --detail-blue: #4d8eff;
  --detail-footer-reserve: clamp(496px, 35.3vw, 678px);
  max-width: 1920px;
  min-height: max(0px, calc(100vh - var(--site-header-height) - var(--detail-footer-reserve)));
  margin: 0 auto;
  padding: clamp(24px, 3.177vw, 61px) 0 0;
}

.game-breadcrumbs {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.781vw, 15px);
  width: min(calc(100% - clamp(40px, 6.979vw, 134px)), 591px);
  margin-left: var(--detail-gutter);
  color: #a78993;
  font-size: clamp(13px, 1.458vw, 28px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.game-breadcrumbs a,
.game-breadcrumbs span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.game-breadcrumbs a:hover,
.game-breadcrumbs a:focus-visible {
  color: #fff;
}

.game-breadcrumbs a:first-child {
  gap: 4px;
}

.game-breadcrumbs a:first-child img {
  flex: none;
  width: clamp(16px, 1.354vw, 26px);
  height: auto;
}

.game-breadcrumbs [aria-current="page"] {
  color: #9979ff;
  font-weight: 700;
}

.game-hero {
  --hero-gutter: clamp(48px, 6.302vw, 121px);
  display: grid;
  grid-template-columns: minmax(0, 770fr) minmax(0, 715fr);
  gap: clamp(34px, 4.323vw, 83px);
  align-items: start;
  width: min(calc(100% - (2 * var(--hero-gutter))), 1568px);
  margin: clamp(32px, 3.49vw, 67px) 0 0 var(--hero-gutter);
}

.game-hero__media {
  position: relative;
  aspect-ratio: 770 / 470;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(10px, 1.042vw, 20px);
  background: #d9d9d9;
}

.game-hero__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.game-hero__media img {
  position: absolute;
  top: -7.91%;
  left: -4.29%;
  width: 104.29%;
  height: 115.82%;
  max-width: none;
  object-fit: cover;
}

.game-hero__summary {
  min-width: 0;
  padding-top: clamp(0px, 0.833vw, 16px);
}

.game-hero h1 {
  color: var(--detail-copy);
  font-size: clamp(36px, 2.917vw, 56px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.14;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 176, 207, 0.35);
}

.game-hero h1 strong {
  background: linear-gradient(90deg, #ffb0cf 0%, #ff43a9 50%, #ffb95f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-hero__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: clamp(14px, 1.146vw, 22px);
}

.game-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #00285d;
  background: var(--detail-blue);
  font-size: clamp(10px, 0.677vw, 13px);
  font-weight: 700;
  letter-spacing: 0.275px;
  line-height: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-hero__description {
  max-width: 751px;
  margin-top: clamp(18px, 1.354vw, 26px);
  color: var(--detail-muted);
  font-size: clamp(16px, 1.458vw, 28px);
  font-weight: 500;
  line-height: 1.36;
}

.game-hero__description p {
  margin: 0;
}

.game-hero__description p + p {
  margin-top: 1em;
}

.game-hero__description h2,
.game-hero__description h3,
.game-hero__description h4 {
  margin: 1.25em 0 0.45em;
  color: var(--detail-copy);
  font-size: 1.05em;
  font-weight: 700;
  line-height: 1.25;
}

.game-hero__description ul,
.game-hero__description ol {
  margin: 1em 0 0;
  padding-left: 1.35em;
}

.game-hero__description li + li {
  margin-top: 0.35em;
}

.game-hero__description ol.game-faq {
  padding-left: 1.35em;
}

.game-faq li + li {
  margin-top: 0.95em;
}

.game-faq__question,
.game-faq__answer {
  margin: 0;
}

.game-faq__question {
  color: var(--detail-copy);
}

.game-faq__answer {
  margin-top: 0.3em;
}

.game-hero__description a {
  color: #ffd61e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.game-hero--long-copy .game-hero__description--wide {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 0;
}

.game-hero--long-copy {
  row-gap: clamp(20px, 1.667vw, 32px);
}

.game-hero__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 2.396vw, 46px);
}

.game-play-button {
  display: block;
  flex: none;
  overflow: visible;
  max-width: 100%;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.game-play-button:hover,
.game-play-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.game-play-button picture {
  display: block;
}

.game-play-button img {
  display: block;
  width: 100%;
}

.game-information-table {
  width: min(calc(100% - clamp(40px, 13.438vw, 258px)), 1662px);
  margin: clamp(70px, 5.052vw, 97px) auto clamp(30px, 3.052vh, 37px);
}

.game-information-table > h2 {
  min-height: 83px;
  margin: 0;
  padding: 10px 30px;
  border-radius: 15px 15px 0 0;
  color: var(--detail-copy);
  background: #4d10a3;
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 600;
  line-height: 40px;
}

.game-information-table__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.25vw, 24px);
  margin-top: 18px;
}

.game-information-table__column {
  min-width: 0;
  margin: 0;
}

.game-information-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(0, 1fr);
  align-items: center;
  min-height: 66px;
  padding: 10px;
  border-bottom: 1px solid rgba(224, 190, 201, 0.22);
  color: var(--detail-copy);
  font-size: clamp(16px, 1.667vw, 32px);
  line-height: 40px;
}

.game-information-table__row dt,
.game-information-table__row dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.game-information-table__row dd {
  font-weight: 600;
}

.game-information-table__row--rating dd {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.198vw, 23px);
  white-space: nowrap;
}

.game-information-table__row--rating dd img {
  flex: none;
  width: clamp(122px, 12.708vw, 244px);
  height: auto;
}

.game-information-table__row--rating dd span {
  color: #ffd61e;
  font-size: clamp(14px, 1.354vw, 26px);
  font-weight: 400;
}

@media (max-width: 1439.98px) and (min-width: 992px) {
  .game-hero {
    width: calc(100% - (2 * var(--hero-gutter)));
  }

  .game-information-table {
    width: calc(100% - 80px);
  }
}

@media (max-width: 991.98px) {
  .game-detail {
    --detail-footer-reserve: 837px;
    min-height: max(0px, calc(100vh - var(--site-header-height) - var(--detail-footer-reserve)));
    padding-top: 28px;
    padding-bottom: clamp(48px, 8vw, 80px);
  }

  .game-hero {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), 770px);
    margin: clamp(28px, 6vw, 76px) 16px 0;
  }

  .game-hero__summary {
    padding-top: 0;
  }

  .game-hero__actions {
    justify-content: flex-start;
  }

  .game-information-table {
    width: min(calc(100% - 32px), 1662px);
    margin-top: clamp(40px, 8vw, 65px);
  }
}

@media (max-width: 767.98px) {
  .game-breadcrumbs {
    width: calc(100% - 32px);
    margin-inline: 16px;
    font-size: 13px;
  }

  .game-hero {
    margin-inline: 16px;
  }

  .game-hero__media {
    aspect-ratio: 1.55 / 1;
  }

  .game-hero h1 {
    margin-top: 18px;
    font-size: clamp(30px, 8.2vw, 40px);
  }

  .game-hero__tags {
    margin-top: 14px;
  }

  .game-hero__description {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .game-hero__actions {
    margin-top: 24px;
  }

  .game-play-button {
    width: min(100%, 367px);
  }

  .game-information-table {
    margin-top: 40px;
  }

  .game-information-table > h2 {
    min-height: 0;
    padding: 10px 12px;
    border-radius: 10px 10px 0 0;
    font-size: clamp(20px, 6.4vw, 32px);
    line-height: 1.25;
  }

  .game-information-table__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .game-information-table__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 48px;
    padding: 7px 4px;
    font-size: clamp(11px, 3.2vw, 24px);
    line-height: 1.35;
  }

  .game-information-table__row--rating {
    display: block;
  }

  .game-information-table__row--rating dt {
    margin-bottom: 4px;
  }

  .game-information-table__row--rating dd {
    gap: 6px;
  }

  .game-information-table__row--rating dd img {
    width: clamp(61px, 12.708vw, 122px);
  }

  .game-information-table__row--rating dd span {
    font-size: clamp(10px, 2.9vw, 20px);
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  :root {
    --site-header-height: 123px;
  }

  .game-detail {
    padding-top: 32px;
  }

  .game-breadcrumbs {
    width: calc(100% - 38px);
    margin-inline: 19px;
    gap: 15px;
    font-size: 28px;
  }

  .game-hero {
    width: calc(100% - 32px);
    margin: 76px 16px 0;
  }

  .game-hero__media {
    aspect-ratio: 770 / 469;
    border-radius: 20px;
  }

  .game-hero h1 {
    margin-top: 26px;
    font-size: 56px;
  }

  .game-hero__tags {
    margin-top: 22px;
  }

  .game-hero__description {
    margin-top: 26px;
    font-size: 24px;
    line-height: 1.58;
  }

  .game-hero__actions {
    margin-top: 46px;
  }

  .game-play-button {
    width: min(100%, 367px);
  }

  .game-information-table {
    width: calc(100% - 74px);
    margin-top: 65px;
  }

  .game-information-table > h2 {
    padding: 10px 30px;
    font-size: 48px;
  }

  .game-information-table__grid {
    gap: 20px;
    margin-top: 18px;
  }

  .game-information-table__row {
    min-height: 66px;
    padding: 10px;
    font-size: 24px;
    line-height: 40px;
  }
}

@media (max-width: 390px) {
  .game-detail {
    --detail-footer-reserve: 731px;
  }

  .game-information-table__grid {
    gap: 7px;
  }

  .game-information-table__row {
    font-size: 11px;
  }
}

@media (max-width: 359.98px) {
  .game-detail {
    --detail-footer-reserve: 654px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-play-button {
    transition: none;
  }
}
