* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --color-ink: #19191f;
  --color-muted: #686675;
  --color-line: #27242f;
  --color-surface: #fffdf8;
  --color-paper: #f8f5ec;
  --color-panel: #24202b;
  --color-coral: #ff6b57;
  --color-cyan: #28c7d8;
  --color-lime: #b7e34a;
  --color-violet: #7a5cff;
  --shadow-hard: 8px 8px 0 #19191f;
  --radius: 6px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--color-ink);
  background:
    linear-gradient(90deg, rgba(25, 25, 31, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 25, 31, 0.04) 1px, transparent 1px),
    var(--color-paper);
  background-size: 28px 28px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--color-panel);
  border-bottom: 4px solid var(--color-ink);
}

.site-header__inner,
.site-footer__inner,
.content-section,
.page-hero,
.home-hero,
.legal-content,
.faq-list,
.game-detail,
.player-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark__logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--color-coral);
}

.brand-mark__text {
  color: #fff;
}

.site-nav,
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-menu-button {
  display: none;
}

.site-nav__link {
  color: #ece7ff;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: var(--radius);
}

.site-nav__link--active,
.site-nav__link:hover {
  color: var(--color-ink);
  background: var(--color-cyan);
}

.home-hero {
  display: block;
  padding: 28px 0 18px;
}

.home-hero__content {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.62fr);
  gap: 28px;
  align-items: end;
  padding: 34px;
  background: var(--color-coral);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  position: relative;
  overflow: hidden;
}

.home-hero__content::after {
  content: "PLAY";
  position: absolute;
  right: 24px;
  top: -8px;
  color: rgba(25, 25, 31, 0.08);
  font-size: clamp(92px, 16vw, 190px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.home-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.home-hero__notes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-hero__notes span {
  display: inline-flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--color-ink);
  background: var(--color-surface);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--color-ink);
  font-size: 15px;
  font-weight: 800;
}

.home-hero__notes span:nth-child(2) {
  background: var(--color-cyan);
}

.home-hero__notes span:nth-child(3) {
  background: var(--color-lime);
}

.home-hero__content h1,
.page-hero h1,
.game-detail h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.96;
}

.home-hero__content p,
.page-hero p,
.game-detail__content p {
  color: var(--color-ink);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero__grid,
.game-grid,
.category-grid {
  display: grid;
  gap: 18px;
}

.home-hero__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.game-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.content-section {
  padding: 34px 0;
}

.play-strip,
.editorial-board {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
}

.play-strip {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.play-strip__head {
  padding: 22px;
  background: var(--color-panel);
  color: #fff;
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.play-strip__head h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.play-strip__head p {
  margin: 0;
  color: #ddd7ef;
}

.play-strip__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.play-strip__item {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 16px;
  background: var(--color-lime);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--color-ink);
}

.play-strip__item:nth-child(2n) {
  background: var(--color-cyan);
}

.play-strip__item:nth-child(3n) {
  background: #ffcf5a;
}

.play-strip__item:nth-child(4n) {
  background: #cbbcff;
}

.play-strip__item strong {
  font-size: 19px;
  line-height: 1.1;
}

.play-strip__item span {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.content-section--accent {
  width: min(1200px, calc(100% - 20px));
  margin-top: 26px;
  padding: 28px;
  background: #fff6b7;
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.content-section--split {
  width: min(1200px, calc(100% - 20px));
  margin-top: 26px;
  padding: 28px;
  background: #e8f9ff;
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-ink);
  position: relative;
}

.section-heading h2,
.content-section h2 {
  margin: 0;
  font-size: 28px;
}

.section-heading h2::before {
  content: ">";
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  color: var(--color-ink);
  background: var(--color-lime);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--color-ink);
  font-size: 20px;
  line-height: 1;
}

.section-heading p,
.content-section p {
  margin: 6px 0 0;
  color: var(--color-muted);
}

.editorial-board {
  padding: 30px;
  background: #e8f9ff;
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.editorial-board__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.editor-note {
  padding: 20px;
  background: var(--color-surface);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--color-ink);
}

.editor-note h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.editor-note p {
  margin: 0;
  color: var(--color-muted);
}

.feature-card,
.game-card {
  overflow: hidden;
  background: var(--color-surface);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--color-ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover,
.game-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--color-ink);
}

.feature-card__media img,
.game-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
  background: #eef8ff;
}

.feature-card__body,
.game-card__body {
  min-height: 160px;
  padding: 14px;
}

.feature-card__meta,
.game-card__meta {
  margin: 0 0 6px;
  color: var(--color-violet);
  font-size: 12px;
  font-weight: 800;
}

.feature-card__rating,
.game-card__rating,
.game-detail__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: #f2b400;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.feature-card__rating strong,
.game-card__rating strong,
.game-detail__rating strong {
  color: var(--color-ink);
  font-size: 13px;
}

.game-detail__rating {
  margin: 0 0 14px;
  padding: 8px 10px;
  width: fit-content;
  background: #fff6b7;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--color-ink);
  font-size: 18px;
}

.game-detail__rating strong {
  font-size: 14px;
}

.feature-card__title,
.game-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.feature-card__text,
.game-card__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.feature-card:nth-child(1),
.feature-card:nth-child(6) {
  background: #fff6b7;
}

.feature-card:nth-child(3),
.feature-card:nth-child(8) {
  background: #e8f9ff;
}

.game-card:nth-child(6n + 1) {
  background: #fff6b7;
}

.game-card:nth-child(6n + 3) {
  background: #e8f9ff;
}

.game-card:nth-child(6n + 5) {
  background: #f0eaff;
}


.category-tile {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 24px;
  color: var(--color-ink);
  background: var(--color-lime);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--color-ink);
}

.category-tile:nth-child(2n) {
  background: var(--color-cyan);
}

.category-tile:nth-child(3n) {
  background: #ffcf5a;
}

.category-tile:nth-child(4n) {
  background: #cbbcff;
}

.category-tile span {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.category-tile small {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  margin-top: 28px;
  padding: 34px;
  background: var(--color-cyan);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.page-hero--plain {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  padding: 28px;
  background: #ffcf5a;
}

.page-hero--plain h1,
.page-hero--plain p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.game-detail {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  padding: 34px 0 20px;
  align-items: stretch;
}

.game-detail__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  padding: 16px;
  background: #eef8ff;
  border-radius: var(--radius);
  border: 3px solid var(--color-ink);
  box-shadow: var(--shadow-hard);
}

.game-detail__content {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--color-surface);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--color-violet);
}

.play-profile {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 24px auto 18px;
  align-items: stretch;
}

.play-profile__card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: #fff6b7;
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--color-ink);
}

.play-profile__card:nth-child(2n) {
  background: #e8f9ff;
}

.play-profile__card:nth-child(3n) {
  background: #f0eaff;
}

.play-profile__card span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.play-profile__card p {
  margin: 0;
  color: var(--color-muted);
}

.content-section--narrow {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  background: var(--color-surface);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.content-section--narrow h2,
.content-section--narrow p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-card {
  padding: 24px;
  background: var(--color-surface);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.guide-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.guide-card p,
.guide-article p {
  color: var(--color-muted);
  line-height: 1.75;
}

.detail-faq {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.detail-faq details {
  padding: 14px 16px;
  background: #e8f9ff;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
}

.detail-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.primary-action,
.player-shell__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--color-ink);
  background: var(--color-lime);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  font-weight: 800;
}

.player-page {
  padding: 24px 0;
}

.player-shell {
  overflow: hidden;
  background: var(--color-panel);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.player-shell--portrait {
  display: grid;
  justify-items: center;
}

.player-shell__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  color: #fff;
}

.player-shell__bar h1 {
  margin: 0;
  font-size: 20px;
}

.player-shell--portrait .player-shell__bar {
  width: min(420px, 100%);
}

.game-frame-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: min(82vh, 900px);
  min-height: 680px;
  overflow: hidden;
  background: #000;
}

.game-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  overflow: hidden;
  scrollbar-width: none;
}

.game-frame::-webkit-scrollbar {
  display: none;
}

.game-load-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: #101016;
  color: #fff;
}

.game-load-cover strong {
  font-size: clamp(24px, 4vw, 48px);
}

.game-load-cover span {
  color: #d8e2ef;
  font-size: 16px;
}

.game-load-button {
  justify-self: center;
  min-height: 52px;
  padding: 0 28px;
  border: 3px solid #ffffff;
  border-radius: 8px;
  background: #b7ef3f;
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.12);
  color: #101016;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.game-load-button:hover,
.game-load-button:focus-visible {
  background: #32c4cf;
  color: #101016;
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.game-frame-wrap.is-loaded .game-load-cover {
  display: none;
}

.player-shell--portrait .game-frame-wrap {
  width: min(420px, 100%);
  aspect-ratio: 9 / 16;
  height: min(86vh, 920px);
  min-height: 760px;
}

.player-notes {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 24px auto 0;
}

.player-notes article {
  padding: 22px;
  background: var(--color-surface);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--color-ink);
}

.player-notes article:nth-child(2) {
  background: #e8f9ff;
}

.player-notes h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.player-notes p {
  margin: 0;
  color: var(--color-muted);
}

.legal-content,
.faq-list {
  max-width: 860px;
  padding: 22px 0 56px;
}

.faq-list {
  max-width: 1180px;
}

.legal-content,
.faq-list {
  margin-top: 20px;
  padding: 28px;
  background: var(--color-surface);
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.policy-layout {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  margin: 22px auto 56px;
  align-items: start;
}

.policy-layout .legal-content {
  width: 100%;
  max-width: none;
  margin: 0;
}

.policy-layout__aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 22px;
  background: var(--color-panel);
  color: #fff;
  border: 3px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.policy-layout__aside strong {
  font-size: 20px;
}

.policy-layout__aside span {
  color: #ddd7ef;
}

.policy-layout__aside a {
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  align-items: center;
  color: var(--color-ink);
  background: var(--color-lime);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  font-weight: 800;
}

.legal-content h2 {
  margin: 28px 0 8px;
}

.legal-content p,
.legal-content li {
  color: var(--color-muted);
}

.faq-item {
  padding: 18px 0;
  border-bottom: 2px solid var(--color-line);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.site-footer {
  margin-top: 48px;
  padding: 34px 0 22px;
  background: var(--color-panel);
  color: #fff;
  border-top: 4px solid var(--color-ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(180px, 0.8fr) minmax(220px, 1fr);
  gap: 28px;
  align-items: start;
}

.brand-mark--footer .brand-mark__logo {
  box-shadow: 3px 3px 0 var(--color-cyan);
}

.site-footer__summary,
.site-footer__copy {
  color: #c8d2df;
}

.site-footer__links {
  display: grid;
  gap: 8px;
  justify-content: stretch;
}

.site-footer__group h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
}

.site-footer__links a {
  color: #dfe8f5;
  font-weight: 700;
}

.site-footer__links a:hover {
  color: var(--color-lime);
}

.site-footer__copy {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  font-size: 14px;
}

.error-page {
  min-height: 58vh;
}

@media (max-width: 1180px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .related-game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .play-profile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .home-hero,
  .game-detail,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .game-detail__media img,
  .game-detail__content {
    min-height: auto;
  }

  .game-detail__media img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .home-hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    padding: 26px;
  }

  .home-hero__notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-hero__notes span {
    padding: 10px;
    font-size: 13px;
    line-height: 1.25;
  }

  .home-hero__content h1 {
    max-width: 620px;
    font-size: clamp(38px, 8vw, 52px);
  }

  .home-hero__content p {
    max-width: 640px;
    font-size: 16px;
  }

  .home-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero__grid .feature-card,
  .home-hero__grid .feature-card:nth-child(1),
  .home-hero__grid .feature-card:nth-child(2),
  .home-hero__grid .feature-card:nth-child(3),
  .home-hero__grid .feature-card:nth-child(4) {
    grid-column: auto;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .play-strip,
  .player-notes,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .play-strip__rail,
  .editorial-board__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-layout__aside {
    position: static;
  }

  .site-header__inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .site-header .brand-mark {
    justify-content: flex-start;
  }

  .site-menu-button {
    width: 46px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 7px;
    margin-left: auto;
    background: var(--color-lime);
    border: 3px solid var(--color-ink);
    border-radius: var(--radius);
    box-shadow: 3px 3px 0 var(--color-coral);
  }

  .site-menu-button span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--color-ink);
    border-radius: 2px;
  }

  .site-nav {
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    padding-top: 12px;
  }

  .site-menu-open .site-nav {
    display: grid;
  }

  .site-nav__link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 680px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .play-strip__rail,
  .editorial-board__grid,
  .play-profile {
    grid-template-columns: 1fr;
  }

  .play-profile__card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .home-hero__grid,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__grid .feature-card,
  .home-hero__grid .feature-card:nth-child(1),
  .home-hero__grid .feature-card:nth-child(2),
  .home-hero__grid .feature-card:nth-child(3),
  .home-hero__grid .feature-card:nth-child(4) {
    grid-column: auto;
  }

  .category-tile {
    min-height: 104px;
    padding: 20px;
  }

  .home-hero__content {
    padding: 22px;
  }

  .home-hero__notes {
    grid-template-columns: 1fr;
  }

  .home-hero__content h1 {
    font-size: 38px;
  }

  .section-heading {
    display: block;
  }

  .game-frame-wrap {
    height: 72vh;
    min-height: 520px;
  }

  .player-shell--portrait .game-frame-wrap {
    height: 78vh;
    min-height: 560px;
  }
}
