:root {
  --page: #180d26;
  --chrome: #111111;
  --panel: #211334;
  --panel-soft: #2a1941;
  --gradient-start: #8a3737;
  --gradient-end: #452e98;
  --accent: #ffff00;
  --body: #f0f5fa;
  --white: #ffffff;
  --link: #fbf26e;
  --link-hover: #829ed7;
  --border: #d1d5db;
  --dark-border: #3f4851;
  --slate-900: #1e293b;
  --slate-700: #334155;
  --blue: #045cb4;
  --focus: #93c5fd;
  --content: 1140px;
  --header-content: 1240px;
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  overflow-wrap: break-word;
}

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

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s linear, background-color 0.2s linear, border-color 0.2s linear, transform 0.2s linear;
}

a:hover {
  color: var(--link-hover);
}

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #111;
  background: var(--accent);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: 123px;
  background: var(--chrome);
  box-shadow: inset 0 -1px rgba(235, 235, 235, 0.29);
}

.header-inner {
  display: flex;
  width: min(100%, var(--header-content));
  min-height: 122px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  gap: 0;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-self: stretch;
  align-items: stretch;
}

.desktop-nav > a,
.desktop-nav .nav-parent-link {
  display: flex;
  min-height: 70px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--body);
  background: transparent;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav .nav-parent-link {
  padding-inline: 22px;
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.desktop-nav .nav-parent-link:hover,
.desktop-nav .nav-parent:focus-within > .nav-parent-link,
.desktop-nav .nav-parent:hover > .nav-parent-link {
  color: var(--white);
}

.nav-parent {
  position: relative;
  display: flex;
  align-items: center;
}

.chevron {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.desktop-submenu {
  position: absolute;
  top: calc(50% + 35px);
  left: 0;
  display: block;
  width: 240px;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--dark-border);
  background: var(--chrome);
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.2s linear, transform 0.2s linear, visibility 0.2s linear;
}

.desktop-submenu a {
  display: block;
  min-height: 65px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--body);
  font-size: 20px;
  line-height: 28px;
  text-decoration: none;
}

.desktop-nav .nav-parent:first-of-type .desktop-submenu li:nth-child(-n + 3) a,
.desktop-nav .nav-parent:last-of-type .desktop-submenu li:first-child a {
  min-height: 94px;
}

.desktop-submenu a:hover,
.desktop-submenu a:focus-visible,
.desktop-submenu a[aria-current="page"] {
  color: var(--white);
  background: #1a1a1a;
}

.nav-parent:hover .desktop-submenu,
.nav-parent:focus-within .desktop-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.header-download {
  display: block;
  flex: 0 0 200px;
  border-radius: 5px;
  text-decoration: none;
}

.header-download:hover {
  transform: translateY(-2px);
}

.header-download img {
  width: 200px;
  height: 50px;
  object-fit: contain;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

main {
  display: block;
}

.home-hero {
  display: grid;
  min-height: 351px;
  padding: 50px 15px;
  place-items: center;
  background: linear-gradient(145deg, var(--gradient-start) 0%, var(--gradient-end) 92%, var(--gradient-end) 100%);
}

.hero-stack {
  display: flex;
  width: min(100%, var(--content));
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.hero-logo {
  width: 171px;
  height: 171px;
  object-fit: contain;
}

.image-download-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  text-decoration: none;
}

.image-download-cta:hover {
  filter: saturate(1.1) brightness(1.08);
  transform: translateY(-2px);
}

.image-download-cta img {
  width: 240px;
  height: 60px;
  object-fit: contain;
}

.page-hero {
  overflow: hidden;
  background: linear-gradient(125deg, var(--gradient-start), var(--gradient-end));
}

.page-hero-inner {
  display: grid;
  width: min(100%, var(--content));
  min-height: 300px;
  margin: 0 auto;
  padding: 44px 10px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: 54px;
}

.eyebrow {
  margin: 0 0 9px;
  color: #ffe9a5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--accent);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
}

.page-hero-media {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(17, 17, 17, 0.2);
}

.page-hero-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.app-masthead {
  background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 92%);
}

.app-masthead-inner {
  display: flex;
  width: min(100%, var(--content));
  min-height: 540px;
  margin: 0 auto;
  padding: 48px 20px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.app-masthead-icon {
  width: 150px;
  height: 150px;
  border-radius: 18px;
  object-fit: contain;
}

.app-rating {
  margin: 12px 0 4px;
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 0.15em;
}

.app-masthead h1 {
  max-width: 920px;
  margin: 0;
  color: var(--accent);
  font-size: 42px;
  line-height: 1.08;
}

.app-masthead p:not(.app-rating) {
  max-width: 800px;
  margin: 16px 0 0;
  color: var(--white);
  font-size: 18px;
}

.app-masthead .app-release-line {
  font-size: 16px !important;
}

.app-masthead .image-download-cta {
  width: 260px;
  margin-top: 20px;
}

.app-masthead .image-download-cta img {
  width: 100%;
  height: auto;
}

.classic-band {
  padding: 19px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--chrome);
  text-align: center;
}

.classic-band h2 {
  margin: 0;
  color: var(--accent);
  font-size: 30px;
  line-height: 1.3;
}

.compact-section {
  padding-top: 38px;
  padding-bottom: 44px;
}

.centered-app-media {
  display: flex;
  margin-bottom: 34px;
  align-items: center;
  flex-direction: column;
  gap: 22px;
}

.centered-app-media > img {
  width: 180px;
  height: 180px;
  border-radius: 18px;
  object-fit: contain;
}

.image-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.image-game-grid article {
  padding: 24px;
  border: 1px solid rgba(209, 213, 219, 0.24);
  background: var(--panel-soft);
  text-align: center;
}

.image-game-grid article > img {
  width: 170px;
  height: 170px;
  margin: 0 auto;
  border-radius: 16px;
  object-fit: contain;
}

.image-game-grid h3 {
  margin: 22px 0 10px;
}

.image-game-grid p {
  font-size: 17px;
}

.install-image-link,
.install-image-link img {
  display: block;
  width: min(100%, 220px);
  margin: 0 auto;
}

.post-featured {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 42px 30px 0;
}

.post-featured img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.article-header h1 {
  margin-bottom: 12px;
}

.article-meta,
.article-shell figcaption,
.archive-taxonomy {
  color: #cbd5e1;
  font-size: 15px !important;
}

.article-shell figure {
  margin: 36px 0;
}

.article-shell figure img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.article-shell figcaption {
  margin-top: 8px;
}

.post-navigation,
.comments-area {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 28px 10px;
  border-top: 1px solid rgba(209, 213, 219, 0.24);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.comments-area {
  padding-bottom: 64px;
}

.comments-area h2 {
  color: var(--accent);
}

.archive-heading {
  padding: 48px 20px;
  background: var(--chrome);
}

.archive-heading > div,
.source-archive-grid {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.archive-heading h1 {
  margin: 0;
  color: var(--accent);
  font-size: 42px;
}

.archive-heading p:last-child {
  max-width: 850px;
  margin: 14px 0 0;
  font-size: 18px;
}

.source-archive-grid {
  display: grid;
  padding: 58px 10px 78px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.source-archive-card {
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.22);
  background: var(--panel-soft);
}

.source-archive-card > a,
.source-archive-card > a img {
  display: block;
  width: 100%;
}

.source-archive-card > a img {
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
}

.source-archive-card > div {
  padding: 22px;
}

.source-archive-card h2 {
  margin: 8px 0 14px;
  color: var(--accent);
  font-size: 25px;
  line-height: 1.25;
}

.source-archive-card p:last-child {
  margin-bottom: 0;
  font-size: 17px;
}

.content-shell {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 58px 10px 78px;
}

.content-shell > :first-child {
  margin-top: 0;
}

.content-shell h1,
.content-shell h2,
.content-shell h3,
.content-shell h4 {
  color: var(--accent);
  font-weight: 600;
}

.content-shell h1 {
  margin: 0 0 28px;
  font-size: 36px;
  line-height: 1.15;
}

.content-shell h2 {
  margin: 56px 0 20px;
  font-size: 30px;
  line-height: 1.3;
}

.content-shell h3 {
  margin: 32px 0 13px;
  font-size: 24px;
  line-height: 1.3;
}

.content-shell p,
.content-shell li {
  font-size: 20px;
  line-height: 1.65;
}

.content-shell p {
  margin: 0 0 1.55em;
}

.home-editorial {
  display: flex;
  padding-top: 15px;
  padding-bottom: 20px;
  flex-direction: column;
  gap: 20px;
}

.home-editorial > * {
  margin-top: 0;
  margin-bottom: 0;
}

.home-editorial h1,
.home-editorial > h2 {
  line-height: 1;
}

.home-editorial > p,
.home-editorial .editorial-module > p,
.home-editorial .search-query {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.home-editorial .editorial-module h2 {
  margin: 0 0 20px;
}

.home-editorial .editorial-module ul {
  margin: 0 0 30px 60px;
  padding: 0;
  list-style: disc;
}

.home-editorial .editorial-module li {
  font-size: 20px;
  line-height: 1.65;
}

.home-editorial .editorial-module li strong {
  color: var(--accent);
}

.home-editorial .editorial-module > :last-child {
  margin-bottom: 0;
}

.content-shell ul,
.content-shell ol {
  margin: 0 0 1.5em;
  padding-left: 2em;
}

.content-shell li + li {
  margin-top: 9px;
}

.lead {
  max-width: 950px;
  color: var(--white);
  font-size: 22px !important;
}

.note,
.verification-note {
  padding: 18px 21px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.07);
  color: var(--body);
}

.verification-note strong,
.note strong {
  color: var(--accent);
}

.fact-grid,
.card-grid,
.archive-grid {
  display: grid;
  margin: 24px 0 36px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fact-card,
.guide-card,
.archive-card {
  min-width: 0;
  padding: 25px;
  border: 1px solid rgba(209, 213, 219, 0.22);
  background: var(--panel-soft);
}

.fact-card h3,
.guide-card h3,
.archive-card h2,
.archive-card h3 {
  margin-top: 0;
}

.guide-card p,
.archive-card p,
.fact-card p {
  font-size: 17px;
}

.guide-card a,
.archive-card a {
  font-weight: 700;
}

.app-table-wrap {
  margin: 25px 0 40px;
  overflow-x: auto;
}

.app-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  background: rgba(17, 17, 17, 0.15);
}

.app-table th,
.app-table td {
  padding: 0.7em 1em;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-size: 18px;
  text-align: left;
}

.app-table th {
  color: var(--accent);
  background: rgba(17, 17, 17, 0.34);
  font-weight: 600;
}

.app-table thead th {
  text-align: center;
}

.steps {
  list-style: none;
  counter-reset: install-step;
  padding: 0 !important;
}

.steps li {
  position: relative;
  min-height: 54px;
  padding: 8px 0 14px 70px;
  counter-increment: install-step;
}

.steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--accent);
  content: counter(install-step);
  font-weight: 800;
}

.game-list {
  display: block;
  padding-left: 1.2em !important;
}

.faq-list {
  margin: 24px 0 42px;
  border-top: 1px solid rgba(209, 213, 219, 0.38);
}

.faq-list details {
  border-bottom: 1px solid rgba(209, 213, 219, 0.38);
  background: rgba(17, 17, 17, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 20px 58px 20px 20px;
  color: var(--accent);
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq-answer {
  padding: 0 20px 19px;
}

.faq-answer p {
  margin: 0;
  font-size: 18px;
}

.topic-chips {
  display: flex;
  margin: 24px 0 0;
  padding: 0 !important;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.topic-chips li {
  margin: 0;
  font-size: 15px;
}

.topic-chips a {
  display: block;
  padding: 8px 12px;
  border: 1px solid rgba(251, 242, 110, 0.4);
  background: rgba(17, 17, 17, 0.2);
  text-decoration: none;
}

.download-panel {
  display: grid;
  margin-top: 58px;
  padding: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(120deg, rgba(138, 55, 55, 0.82), rgba(69, 46, 152, 0.92));
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.download-panel h2 {
  margin: 0 0 8px;
}

.download-panel p {
  margin: 0;
  font-size: 17px;
}

.text-download-cta {
  display: inline-flex;
  min-height: 52px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  border: 2px solid #111;
  border-radius: 5px;
  color: #111;
  background: var(--accent);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.text-download-cta:hover {
  color: #111;
  background: #fff76c;
  transform: translateY(-2px);
}

.responsible-band {
  padding: 0;
  color: var(--accent);
  background: var(--chrome);
  font-size: 12px;
  line-height: 1.55;
}

.responsible-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 10px;
}

.site-footer {
  min-height: 101px;
  padding: 20px;
  border-top: 1px solid var(--dark-border);
  background: var(--chrome);
}

.footer-inner {
  display: flex;
  width: min(100%, 1200px);
  min-height: 60px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  text-align: center;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--accent);
}

.footer-inner a:hover {
  color: #ff8c00;
}

.mobile-download-bar {
  display: none;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 17, 17, 0.88);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top::before {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.not-found {
  min-height: calc(100vh - 224px);
  text-align: center;
}

@media (max-width: 1100px) {
  .desktop-nav > a,
  .desktop-nav .nav-parent-link {
    padding-inline: 14px;
    font-size: 18px;
  }

  .header-download {
    flex-basis: 170px;
  }

  .header-download img {
    width: 170px;
  }
}

@media (max-width: 921px) {
  .site-header,
  .header-inner {
    min-height: 120.15625px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .brand-logo {
    width: 90px;
    height: 90px;
  }

  .desktop-nav,
  .header-download {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 43.875px;
    height: 43.875px;
    margin-left: auto;
    padding: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 3px;
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    position: absolute;
    left: 0;
  }

  .menu-icon::before {
    top: -7px;
  }

  .menu-icon::after {
    top: 7px;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-nav {
    position: static;
    display: block;
    width: 100%;
    max-height: none;
    overflow: visible;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav-list,
  .mobile-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav-row {
    display: flex;
    min-height: 43.78125px;
    align-items: stretch;
    border-bottom: 1px solid rgba(51, 65, 85, 0.14);
  }

  .mobile-nav-row > a {
    display: flex;
    min-width: 0;
    padding: 9px 20px;
    flex: 1 1 auto;
    align-items: center;
    color: var(--slate-700);
    line-height: 1.35;
    text-decoration: none;
  }

  .mobile-nav-row > a:hover,
  .mobile-nav-row > a[aria-current="page"] {
    color: var(--blue);
    background: var(--body);
  }

  .submenu-toggle {
    width: 50px;
    flex: 0 0 50px;
    border: 0;
    border-left: 1px solid rgba(51, 65, 85, 0.14);
    color: var(--slate-700);
    background: transparent;
    cursor: pointer;
  }

  .submenu-toggle::before {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .submenu-toggle[aria-expanded="true"]::before {
    transform: translateY(3px) rotate(225deg);
  }

  .mobile-submenu[hidden] {
    display: none;
  }

  .mobile-submenu a {
    display: block;
    min-height: 43.78125px;
    padding: 9px 20px 9px 42px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.14);
    color: var(--slate-700);
    background: #f8fafc;
    line-height: 1.35;
    text-decoration: none;
  }

  .page-hero-inner {
    min-height: 260px;
    padding: 38px 25px;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 30px;
  }

  .page-hero-media img {
    height: 210px;
  }

  .content-shell {
    padding-inline: 10px;
  }

  .home-hero {
    min-height: 293px;
  }

  .hero-logo {
    width: min(calc((100vw - 15px) * 0.15), 171px);
    height: min(calc((100vw - 15px) * 0.15), 171px);
  }

  .content-shell h1 {
    font-size: 30px;
  }

  .content-shell h2 {
    font-size: 25px;
  }

  .content-shell h3 {
    font-size: 20px;
  }

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

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

}

@media (max-width: 767px) {
  .site-header,
  .header-inner {
    min-height: 85.15625px;
  }

  .brand-logo {
    width: 55px;
    height: 55px;
  }

  .home-hero {
    min-height: 0;
    padding: 50px 0;
  }

  .hero-stack {
    width: 100%;
    gap: 20px;
  }

  .hero-logo {
    width: min(30%, 128px);
    height: auto;
  }

  .image-download-cta {
    width: min(60%, 240px);
    height: auto;
    min-height: 48px;
  }

  .image-download-cta img {
    width: 100%;
    height: auto;
  }

  .page-hero-inner {
    min-height: 0;
    padding: 34px 15px 38px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .page-hero-media {
    display: none;
  }

  .app-masthead-inner {
    min-height: 0;
    padding: 42px 15px;
  }

  .app-masthead-icon {
    width: 128px;
    height: 128px;
  }

  .app-masthead h1,
  .archive-heading h1 {
    font-size: 34px;
  }

  .classic-band h2 {
    font-size: 24px;
  }

  .post-featured {
    padding: 24px 15px 0;
  }

  .post-navigation,
  .comments-area {
    padding-inline: 15px;
  }

  .archive-heading {
    padding: 38px 15px;
  }

  .source-archive-grid,
  .image-game-grid {
    grid-template-columns: 1fr;
  }

  .source-archive-grid {
    padding: 40px 15px 62px;
  }

  .content-shell {
    padding: 58px 15px 68px;
  }

  .home-hero + .content-shell {
    padding-top: 15px;
  }

  .home-editorial h1 {
    font-size: 36px;
  }

  .content-shell p,
  .content-shell li {
    font-size: 20px;
  }

  .lead {
    font-size: 20px !important;
  }

  .content-shell h2 {
    margin-top: 46px;
  }

  .fact-grid,
  .card-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .app-table th,
  .app-table td {
    min-width: 145px;
    padding: 0.65em 0.75em;
    font-size: 16px;
  }

  .download-panel {
    padding: 27px 22px;
    grid-template-columns: 1fr;
  }

  .text-download-cta {
    width: 100%;
  }

  .mobile-download-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: flex;
    width: 100%;
    min-height: 0;
    padding: 10px;
    align-items: center;
    justify-content: center;
    background: transparent;
    text-decoration: none;
  }

  .mobile-download-bar img {
    width: 60%;
    max-height: none;
    object-fit: contain;
  }

  .scroll-top {
    right: 12px;
    bottom: 84px;
  }
}

@media (max-width: 544px) {
  .header-inner {
    padding-inline: 20px;
  }

  .mobile-nav {
    background: var(--slate-900);
  }

  .mobile-nav-row,
  .mobile-submenu a {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .mobile-nav-row > a,
  .submenu-toggle,
  .mobile-submenu a {
    color: var(--white);
  }

  .submenu-toggle {
    border-left-color: rgba(255, 255, 255, 0.12);
  }

  .mobile-nav-row > a:hover,
  .mobile-nav-row > a[aria-current="page"],
  .mobile-submenu a:hover,
  .mobile-submenu a[aria-current="page"] {
    color: var(--white);
    background: #111827;
  }

  .mobile-submenu a {
    background: #273449;
  }

  .content-shell h1 {
    line-height: 1.18;
  }

  .footer-inner {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .mobile-download-bar,
  .scroll-top,
  .responsible-band,
  .site-footer {
    display: none !important;
  }

  body {
    padding: 0;
    color: #111;
    background: #fff;
  }

  .content-shell h1,
  .content-shell h2,
  .content-shell h3 {
    color: #111;
  }
}
