: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;
  }
}

/* Visual system v2 — independent editorial guide */
:root {
  --page: #f4f1e9;
  --chrome: #101427;
  --panel: #fffdf8;
  --panel-soft: #ece7dc;
  --gradient-start: #171a35;
  --gradient-end: #5d3fb2;
  --accent: #f39a3d;
  --body: #292c3c;
  --white: #ffffff;
  --link: #6048bd;
  --link-hover: #c76224;
  --border: #d8d1c5;
  --dark-border: #343a58;
  --slate-900: #15192d;
  --slate-700: #3b4057;
  --blue: #6048bd;
  --focus: #ee8731;
  --content: 1120px;
  --header-content: 1280px;
  color-scheme: light;
}

html,
body {
  background: var(--page);
}

body {
  color: var(--body);
  font-size: 17px;
  line-height: 1.72;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  min-height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(16, 20, 39, 0.97);
  box-shadow: 0 10px 32px rgba(16, 20, 39, 0.16);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 91px;
  padding-inline: 28px;
  gap: 24px;
}

.brand-link {
  gap: 12px;
}

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

.brand-copy {
  display: flex;
  color: var(--white);
  flex-direction: column;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: #d8cfe9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.desktop-nav > a,
.desktop-nav .nav-parent-link {
  min-height: 91px;
  padding-inline: 17px;
  color: #e8e4f1;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.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: #ffb36d;
}

.desktop-submenu {
  top: 91px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 14px 14px;
  background: #171b31;
  box-shadow: 0 22px 45px rgba(7, 9, 20, 0.28);
}

.desktop-submenu a {
  min-height: 54px;
  padding: 14px 18px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: #f3eef8;
  font-size: 15px;
  line-height: 1.45;
}

.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: 54px;
}

.header-download {
  flex-basis: 168px;
  padding: 4px;
  border: 1px solid rgba(255, 179, 109, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.header-download img {
  width: 160px;
  height: 40px;
}

.home-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  padding: 78px 28px 82px;
  background:
    radial-gradient(circle at 78% 40%, rgba(141, 92, 235, 0.34), transparent 28%),
    radial-gradient(circle at 16% 12%, rgba(243, 154, 61, 0.16), transparent 27%),
    linear-gradient(135deg, #101427 0%, #1b1d3c 54%, #32255d 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 80px;
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: #ffb36d;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.4vw, 76px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero-summary {
  max-width: 680px;
  margin: 28px 0 0;
  color: #d8d9e6;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.home-hero .image-download-cta {
  width: 232px;
  padding: 4px;
  border: 1px solid rgba(255, 179, 109, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.home-hero .image-download-cta img {
  width: 224px;
  height: 56px;
}

.hero-secondary {
  color: #f6efe7;
  font-size: 14px;
  font-weight: 750;
  text-decoration-color: rgba(246, 239, 231, 0.4);
}

.hero-secondary:hover {
  color: #ffb36d;
}

.hero-signals {
  display: flex;
  margin: 32px 0 0;
  padding: 0;
  color: #c6c7d6;
  flex-wrap: wrap;
  gap: 12px 26px;
  list-style: none;
  font-size: 13px;
}

.hero-signals li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 230px;
  filter: drop-shadow(0 24px 34px rgba(7, 7, 18, 0.42));
  transform: rotate(2deg);
}

.hero-orbit {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 80px rgba(111, 77, 190, 0.25);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(243, 154, 61, 0.5);
  content: "";
}

.hero-orbit::before {
  top: 37px;
  right: 42px;
  width: 12px;
  height: 12px;
}

.hero-orbit::after {
  bottom: 58px;
  left: 27px;
  width: 8px;
  height: 8px;
}

.hero-visual > p {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  min-width: 210px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #d9d9e5;
  background: rgba(11, 14, 30, 0.8);
  box-shadow: 0 18px 34px rgba(5, 6, 14, 0.24);
  backdrop-filter: blur(12px);
}

.hero-visual > p span,
.hero-visual > p small {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual > p strong {
  margin: 2px 0;
  color: var(--white);
  font-size: 25px;
}

.page-hero {
  border-bottom: 1px solid var(--border);
  background: #e9e3f3;
}

.page-hero-inner {
  min-height: 380px;
  padding: 58px 28px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 70px;
}

.eyebrow {
  color: #7b56bd;
}

.page-hero h1,
.archive-heading h1,
.content-shell h1,
.content-shell h2,
.content-shell h3,
.content-shell h4,
.comments-area h2 {
  color: #201b36;
  font-family: Georgia, "Times New Roman", serif;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.page-hero p:not(.eyebrow) {
  color: #4b4d5f;
}

.page-hero-media {
  min-height: 250px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px 30px 8px 30px;
  background: #d7cee8;
  box-shadow: 0 24px 50px rgba(40, 29, 69, 0.14);
  transform: rotate(1.5deg);
}

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

.app-masthead {
  background:
    radial-gradient(circle at 12% 15%, rgba(243, 154, 61, 0.18), transparent 25%),
    linear-gradient(125deg, #11152a, #2d2456);
}

.app-masthead-inner {
  display: grid;
  min-height: 500px;
  padding: 70px 28px;
  grid-template-columns: 230px minmax(0, 1fr);
  grid-template-rows: auto auto auto auto auto;
  column-gap: 64px;
  text-align: left;
}

.app-masthead-icon {
  width: 210px;
  height: 210px;
  grid-column: 1;
  grid-row: 1 / 6;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 38px;
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.3);
}

.app-rating,
.app-masthead h1,
.app-masthead p,
.app-masthead .image-download-cta {
  grid-column: 2;
}

.app-rating {
  color: #ffb36d;
}

.app-masthead h1 {
  max-width: 800px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.app-masthead p:not(.app-rating) {
  margin-top: 12px;
  color: #d8d9e6;
}

.app-masthead .image-download-cta {
  width: 230px;
  margin-top: 22px;
}

.classic-band {
  padding: 22px 20px;
  border-color: var(--border);
  background: #e7deef;
}

.classic-band h2 {
  color: #372a5e;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.content-shell {
  padding: 76px 28px 92px;
}

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

.content-shell h2 {
  margin-top: 66px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.content-shell h3 {
  color: #3d315f;
  font-size: 25px;
  font-weight: 500;
}

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

.home-editorial {
  width: min(100%, 1020px);
  padding-top: 74px;
  padding-bottom: 92px;
  gap: 24px;
}

.home-editorial > p,
.home-editorial .editorial-module > p,
.home-editorial .search-query,
.home-editorial .editorial-module li {
  font-size: 18px;
  line-height: 1.75;
}

.home-editorial > h2,
.home-editorial .editorial-module h2 {
  margin-top: 40px;
  font-size: 36px;
  line-height: 1.12;
}

.home-editorial .editorial-module {
  margin: 16px 0;
  padding: 32px 38px;
  border-left: 5px solid var(--accent);
  background: #fffaf1;
  box-shadow: 0 12px 34px rgba(54, 47, 76, 0.06);
}

.home-editorial .editorial-module li strong {
  color: #6d48ad;
}

.lead {
  color: #46495d;
}

.note,
.verification-note {
  border-left-color: var(--accent);
  color: #343748;
  background: #fff6e9;
}

.verification-note strong,
.note strong {
  color: #8b4a1c;
}

.fact-card,
.guide-card,
.archive-card {
  padding: 26px 0;
  border: 0;
  border-top: 3px solid #7d60bd;
  background: transparent;
}

.image-game-grid article,
.source-archive-card {
  border: 1px solid var(--border);
  border-radius: 20px 20px 6px 20px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(39, 34, 58, 0.07);
}

.image-game-grid article > img,
.source-archive-card > a img {
  border-radius: 14px;
}

.article-meta,
.article-shell figcaption,
.archive-taxonomy {
  color: #6a6d7d;
}

.archive-heading {
  padding: 64px 28px;
  background: #171b31;
}

.archive-heading h1 {
  color: var(--white);
  font-size: 54px;
  font-weight: 500;
}

.archive-heading p:last-child {
  color: #d3d4df;
}

.category-intro {
  padding-bottom: 12px;
}

.category-brief,
.decision-strip,
.route-conclusion {
  padding: 34px 38px;
  border-left: 5px solid var(--accent);
  background: #fffaf1;
}

.category-brief h2,
.decision-strip h2,
.route-conclusion h2 {
  margin: 0 0 12px;
}

.category-brief p:last-child,
.decision-strip p:last-child,
.route-conclusion p:last-child {
  margin-bottom: 0;
}

.source-archive-grid {
  padding-top: 42px;
}

.source-archive-card h2 {
  color: #2b2442;
}

.app-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(39, 34, 58, 0.05);
}

.app-table th,
.app-table td {
  border-color: var(--border);
  color: #323544;
}

.app-table th {
  color: #2a2148;
  background: #eee8f5;
}

.app-table thead th {
  color: var(--white);
  background: #312650;
}

.steps li::before {
  border-radius: 12px 12px 3px 12px;
  color: var(--white);
  background: #6244ad;
}

.faq-list {
  border-top-color: var(--border);
}

.faq-list details {
  border-bottom-color: var(--border);
  background: var(--panel);
}

.faq-list summary {
  color: #302746;
}

.topic-chips a {
  border-color: #b6a5db;
  background: #f0eaf8;
}

.query-map {
  margin-top: 58px;
  padding: 42px;
  border-radius: 24px 24px 6px 24px;
  color: #f0edf7;
  background: #1d213a;
}

.query-map h2 {
  margin: 0 0 28px;
  color: var(--white);
}

.query-map .eyebrow {
  color: #ffb36d;
}

.query-map ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.query-map li {
  display: grid;
  padding: 18px 0;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 50px 1fr;
  gap: 18px;
}

.query-map li span {
  color: #ffb36d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.query-map li p,
.query-next {
  margin: 0;
  color: #e2e1ea;
}

.query-next {
  margin-top: 24px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reading-path,
.query-list {
  margin: 24px 0 44px !important;
  padding: 0 !important;
  list-style: none;
}

.reading-path li {
  display: grid;
  padding: 20px 0;
  align-items: baseline;
  border-top: 1px solid var(--border);
  grid-template-columns: 54px minmax(0, 0.8fr) minmax(220px, 1fr);
  gap: 22px;
}

.reading-path li:last-child {
  border-bottom: 1px solid var(--border);
}

.reading-path span {
  color: #9a6a35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.reading-path a {
  font-weight: 750;
}

.reading-path small {
  color: #696b79;
  font-size: 14px;
}

.download-panel {
  padding: 40px;
  border: 0;
  border-radius: 26px 26px 7px 26px;
  background: linear-gradient(125deg, #171b31, #342963);
  box-shadow: 0 24px 50px rgba(34, 27, 59, 0.15);
}

.download-panel h2,
.download-panel p {
  color: var(--white);
}

.text-download-cta {
  border: 0;
  border-radius: 12px 12px 3px 12px;
  color: #21172e;
  background: #ffad63;
}

.responsible-band {
  color: #5f523e;
  background: #ede2cf;
  font-size: 12px;
}

.responsible-inner {
  padding: 18px 28px;
}

.site-footer {
  min-height: 0;
  padding: 54px 28px 30px;
  border-top: 0;
  background: #101427;
}

.footer-inner {
  display: grid;
  min-height: 0;
  grid-template-columns: 1fr auto;
  gap: 34px 70px;
  color: #e9e7f0;
  font-size: 15px;
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.5;
}

.footer-brand strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.footer-brand span {
  color: #bdbdcb;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-links a,
.footer-inner a {
  color: #efc08f;
}

.footer-copyright {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-column: 1 / -1;
  color: #999baa;
  text-align: center;
}

.scroll-top {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: #242947;
}

@media (max-width: 1100px) {
  .brand-copy {
    display: none;
  }

  .home-hero-inner {
    gap: 40px;
  }
}

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

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

  .brand-copy {
    display: flex;
  }

  .menu-toggle {
    border-color: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
  }

  .mobile-nav {
    background: #171b31;
  }

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

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

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

  .home-hero {
    min-height: 560px;
    padding: 62px 24px;
  }

  .home-hero-inner {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-logo {
    width: 185px;
    height: 185px;
  }

  .hero-orbit {
    width: 270px;
    height: 270px;
  }

  .page-hero-inner {
    padding-inline: 28px;
  }
}

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

  .header-inner {
    padding-inline: 16px;
  }

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

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .home-hero {
    min-height: 0;
    padding: 40px 18px 38px;
  }

  .home-hero-inner {
    position: relative;
    display: block;
  }

  .hero-copy h1 {
    max-width: calc(100% - 105px);
    font-size: clamp(35px, 10.5vw, 44px);
    line-height: 1.01;
  }

  .hero-eyebrow {
    margin-bottom: 13px;
    font-size: 10px !important;
  }

  .hero-summary {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 12px 18px;
  }

  .home-hero .image-download-cta {
    width: 194px;
    min-height: 0;
  }

  .home-hero .image-download-cta img {
    width: 186px;
    height: auto;
  }

  .hero-secondary {
    font-size: 12px;
  }

  .hero-signals {
    margin-top: 22px;
    gap: 6px 14px;
    font-size: 11px;
  }

  .hero-visual {
    position: absolute;
    top: 16px;
    right: 0;
    min-height: 0;
  }

  .hero-logo {
    width: 92px;
    height: 92px;
  }

  .hero-orbit {
    width: 112px;
    height: 112px;
    box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.025);
  }

  .hero-orbit::before,
  .hero-orbit::after,
  .hero-visual > p {
    display: none;
  }

  .page-hero-inner {
    padding: 46px 20px 50px;
    grid-template-columns: 1fr;
  }

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

  .app-masthead-inner {
    display: flex;
    padding: 48px 20px 54px;
    text-align: center;
  }

  .app-masthead-icon {
    width: 132px;
    height: 132px;
    border-radius: 25px;
  }

  .app-masthead h1 {
    font-size: 40px;
  }

  .archive-heading {
    padding: 48px 20px;
  }

  .archive-heading h1 {
    font-size: 42px;
  }

  .content-shell,
  .home-editorial {
    padding: 56px 20px 72px;
  }

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

  .content-shell h2,
  .home-editorial > h2,
  .home-editorial .editorial-module h2 {
    margin-top: 48px;
    font-size: 30px;
  }

  .content-shell p,
  .content-shell li,
  .home-editorial > p,
  .home-editorial .editorial-module > p,
  .home-editorial .search-query,
  .home-editorial .editorial-module li {
    font-size: 17px;
  }

  .home-editorial .editorial-module,
  .category-brief,
  .decision-strip,
  .route-conclusion {
    padding: 26px 24px;
  }

  .query-map {
    padding: 30px 24px;
    border-radius: 18px 18px 5px 18px;
  }

  .reading-path li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .reading-path small {
    grid-column: 2;
  }

  .download-panel {
    padding: 30px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-copyright {
    grid-column: 1;
  }

  .mobile-download-bar {
    padding: 8px 12px;
    background: rgba(16, 20, 39, 0.93);
    box-shadow: 0 -10px 30px rgba(16, 20, 39, 0.2);
    backdrop-filter: blur(12px);
  }

  .mobile-download-bar img {
    width: min(58%, 220px);
  }
}

@media (max-width: 420px) {
  .brand-copy {
    display: none;
  }

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

  .hero-secondary {
    display: block;
    width: 100%;
  }

  .hero-signals li:last-child {
    display: none;
  }
}

@media print {
  body {
    color: #111;
    background: #fff;
  }
}

/* Featured game guides */
.game-list li a {
  display: flex;
  padding: 5px 0;
  align-items: center;
  justify-content: space-between;
  color: #5b3c93;
  font-weight: 700;
}

.game-list li a span {
  margin-left: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  color: #8c451d;
  background: #ffead8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-game-guides {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.featured-game-guides article {
  position: relative;
  padding: 26px 28px;
  overflow: hidden;
  border: 1px solid #d9d0e7;
  border-radius: 18px 18px 5px 18px;
  background: #f3edf9;
}

.featured-game-guides article::after {
  position: absolute;
  right: -22px;
  bottom: -36px;
  width: 100px;
  height: 100px;
  border: 18px solid rgba(123, 86, 189, 0.08);
  border-radius: 50%;
  content: "";
}

.featured-game-guides h3 {
  margin: 6px 0 10px;
  font-size: 25px;
}

.featured-game-guides p {
  margin: 0 0 18px;
}

.featured-game-guides .guide-arrow {
  position: relative;
  z-index: 1;
  color: #6d48ad;
  font-size: 14px;
  font-weight: 800;
}

.game-guide-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 84% 22%, rgba(243, 154, 61, 0.2), transparent 28%),
    linear-gradient(125deg, #101427, #241d4b 66%, #3a2458);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.andar-guide-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 84% 22%, rgba(123, 86, 189, 0.28), transparent 30%),
    linear-gradient(125deg, #11172a, #342345 68%, #3f2037);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.game-guide-hero-inner {
  display: grid;
  width: min(100%, var(--content));
  min-height: 580px;
  margin: 0 auto;
  padding: 78px 28px;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 70px;
}

.game-guide-hero-copy {
  max-width: 750px;
}

.game-guide-hero .hero-eyebrow {
  color: #ffad6a;
}

.game-guide-hero h1 {
  margin: 16px 0 22px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.game-guide-hero-copy > p:not(.hero-eyebrow) {
  max-width: 690px;
  margin: 0;
  color: #d8d9e6;
  font-size: 19px;
}

.guide-proof-points {
  display: flex;
  margin: 28px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.guide-proof-points li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #e9e6f0;
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.game-guide-visual {
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42px 42px 12px 42px;
  background: rgba(7, 10, 24, 0.43);
  box-shadow: 0 32px 70px rgba(4, 5, 13, 0.36);
  backdrop-filter: blur(14px);
}

.playing-card {
  display: inline-grid;
  width: 78px;
  height: 108px;
  place-items: center;
  border: 1px solid #d7d1c6;
  border-radius: 10px;
  color: #1e2740;
  background: #fffdf7;
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
}

.red-card {
  color: #bd3c4a;
}

.rummy-card-stack {
  display: grid;
  padding: 42px 24px 32px;
  align-content: center;
  gap: 22px;
}

.rummy-card-stack > div {
  display: flex;
  justify-content: center;
}

.rummy-card-stack .playing-card + .playing-card {
  margin-left: -18px;
}

.rummy-card-stack > div:first-child .playing-card:nth-child(1) {
  transform: rotate(-7deg) translateY(5px);
}

.rummy-card-stack > div:first-child .playing-card:nth-child(3) {
  transform: rotate(7deg) translateY(5px);
}

.rummy-card-stack > p {
  display: flex;
  margin: 0;
  justify-content: center;
  gap: 9px;
  color: #d7d5e2;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rummy-card-stack > p strong {
  color: #ffad6a;
}

.andar-table-visual {
  display: grid;
  padding: 38px 24px;
  place-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 15px;
}

.andar-table-visual .side-label {
  display: grid;
  text-align: center;
}

.andar-table-visual .side-label span {
  color: #ffad6a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.andar-table-visual .side-label strong {
  color: #aaa9ba;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.andar-table-visual .middle-card {
  width: 92px;
  height: 128px;
  border: 4px solid #f3a05a;
  transform: rotate(3deg);
}

.andar-table-visual > p {
  margin: 10px 0 0;
  grid-column: 1 / -1;
  color: #d7d5e2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-guide-shell {
  width: min(100%, 1100px);
  padding-top: 70px;
}

.game-guide-shell > section {
  scroll-margin-top: 110px;
}

.quick-answer {
  margin-bottom: 30px;
  padding: 34px 40px;
  border-left: 6px solid #f39a3d;
  border-radius: 0 18px 18px 0;
  background: #fff9ed;
  box-shadow: 0 14px 34px rgba(54, 47, 76, 0.07);
}

.quick-answer h2 {
  margin: 5px 0 12px;
  font-size: 35px;
}

.quick-answer p:last-child {
  margin-bottom: 0;
}

.article-toc {
  display: grid;
  margin: 34px 0 76px;
  padding: 22px 26px;
  border-top: 1px solid #d5cddd;
  border-bottom: 1px solid #d5cddd;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
}

.article-toc > p {
  margin: 0;
  color: #2b2442;
  font-weight: 800;
}

.article-toc ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 22px;
  list-style-position: inside;
}

.article-toc li,
.article-toc a {
  font-size: 14px;
}

.article-toc a {
  color: #65439d;
  font-weight: 700;
}

.game-guide-shell .section-kicker {
  margin-bottom: 8px;
}

.game-guide-shell > section > h2,
.two-column-lessons h2 {
  max-width: 820px;
  margin-top: 6px;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
}

.editorial-note {
  margin: 28px 0 0;
  padding: 20px 24px;
  border: 1px solid #d8cce6;
  border-radius: 13px;
  color: #474054;
  background: #f2ecf8;
  font-size: 16px;
}

.game-rule-flow {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid #d8d0dc;
  list-style: none;
}

.game-rule-flow li {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid #d8d0dc;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
}

.game-rule-flow li > span {
  color: #b85f28;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.game-rule-flow h3 {
  margin: 0 0 4px;
  font-size: 25px;
}

.game-rule-flow p {
  margin: 0;
}

.guide-table-wrap {
  margin: 30px 0 22px;
  overflow-x: auto;
  border: 1px solid #d5ceda;
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: 0 15px 35px rgba(44, 35, 64, 0.05);
}

.guide-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.guide-table th,
.guide-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e2dce5;
  color: #484451;
  text-align: left;
  vertical-align: top;
}

.guide-table thead th {
  color: #fff;
  background: #24203f;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.guide-table tbody th {
  width: 18%;
  color: #35284f;
  font-weight: 800;
}

.guide-table tbody tr:last-child th,
.guide-table tbody tr:last-child td {
  border-bottom: 0;
}

.two-column-lessons {
  display: grid;
  margin-top: 70px;
  align-items: start;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 50px;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid #ded8df;
}

.check-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: #7b56bd;
  content: "✓";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.decision-panel {
  padding: 30px;
  border-radius: 22px 22px 6px 22px;
  color: #d8d9e6;
  background: #191a33;
  box-shadow: 0 24px 45px rgba(30, 26, 50, 0.18);
}

.decision-panel h3 {
  margin: 7px 0 12px;
  color: #fff;
  font-size: 29px;
  line-height: 1.16;
}

.decision-panel p:last-child {
  margin: 0;
  color: #d8d9e6;
  font-size: 16px;
}

.rule-card-grid {
  display: grid;
  margin: 30px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rule-card-grid article {
  padding: 27px;
  border-top: 4px solid #f39a3d;
  background: #fffdf8;
  box-shadow: 0 13px 30px rgba(44, 35, 64, 0.06);
}

.rule-card-grid article > span {
  color: #7b56bd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rule-card-grid h3 {
  margin: 8px 0 11px;
  font-size: 24px;
  line-height: 1.18;
}

.rule-card-grid p {
  margin: 0;
  font-size: 16px;
}

.example-round {
  display: grid;
  margin: 30px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #d6cedd;
  border-radius: 18px;
  overflow: hidden;
}

.example-round > div {
  padding: 26px;
  background: #fffdf8;
}

.example-round > div + div {
  border-left: 1px solid #d6cedd;
}

.example-round span {
  display: block;
  color: #7b56bd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.example-round strong {
  display: block;
  margin: 7px 0;
  color: #2b2442;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.example-round p {
  margin: 0;
  font-size: 15px;
}

.term-list {
  margin: 24px 0 0;
}

.term-list > div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid #ded8df;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
}

.term-list dt {
  color: #35284f;
  font-weight: 800;
}

.term-list dd {
  margin: 0;
  color: #55505d;
}

.related-game-section {
  padding-top: 10px;
}

@media (max-width: 921px) {
  .game-guide-hero-inner {
    min-height: 0;
    padding: 66px 24px;
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
    gap: 34px;
  }

  .game-guide-hero h1 {
    font-size: 50px;
  }

  .game-guide-visual {
    min-height: 310px;
  }

  .playing-card {
    width: 64px;
    height: 90px;
    font-size: 22px;
  }

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

  .rule-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .featured-game-guides,
  .two-column-lessons,
  .example-round {
    grid-template-columns: 1fr;
  }

  .featured-game-guides article {
    padding: 23px;
  }

  .game-guide-hero-inner {
    padding: 48px 20px 54px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .game-guide-hero h1 {
    margin-top: 12px;
    font-size: clamp(38px, 12vw, 48px);
  }

  .game-guide-hero-copy > p:not(.hero-eyebrow) {
    font-size: 17px;
  }

  .guide-proof-points {
    margin-top: 22px;
  }

  .game-guide-visual {
    min-height: 280px;
    border-radius: 28px 28px 8px 28px;
  }

  .rummy-card-stack {
    padding: 30px 20px 25px;
  }

  .andar-table-visual {
    padding: 34px 16px;
  }

  .andar-table-visual .side-label span {
    font-size: 23px;
  }

  .andar-table-visual .middle-card {
    width: 75px;
    height: 105px;
  }

  .game-guide-shell {
    padding-top: 44px;
  }

  .quick-answer {
    padding: 26px 24px;
  }

  .quick-answer h2,
  .game-guide-shell > section > h2,
  .two-column-lessons h2 {
    font-size: 31px;
  }

  .article-toc {
    margin-bottom: 56px;
    padding: 20px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-toc ol {
    grid-template-columns: 1fr;
  }

  .game-rule-flow li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }

  .game-rule-flow li > span {
    font-size: 23px;
  }

  .guide-table th,
  .guide-table td {
    padding: 15px 16px;
  }

  .two-column-lessons {
    gap: 28px;
  }

  .example-round > div + div {
    border-top: 1px solid #d6cedd;
    border-left: 0;
  }

  .term-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
