@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas-neue-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Bebas Neue Fallback";
  src: local("Arial Narrow"), local("Arial");
  size-adjust: 84.23%;
  ascent-override: 112.79%;
  descent-override: 41.55%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "IBM Plex Sans Fallback";
  src: local("Segoe UI"), local("Arial");
  font-weight: 400;
  size-adjust: 101.72%;
  ascent-override: 101.26%;
  descent-override: 27.53%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "IBM Plex Sans Fallback";
  src: local("Segoe UI"), local("Arial");
  font-weight: 500;
  size-adjust: 101.03%;
  ascent-override: 101.95%;
  descent-override: 27.71%;
  line-gap-override: 0%;
}

:root {
  --page-max: 1200px;
  --reading-max: 760px;

  --space-1: .5rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  --radius-sm: 2px;
  --radius-md: 2px;
  --radius-lg: 4px;

  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;

  --font-display: "Bebas Neue", "Bebas Neue Fallback", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", "IBM Plex Sans Fallback", "Segoe UI", sans-serif;

  --ink: #e8e2d4;
  --muted: #9a927f;
  --paper: #151a13;
  --panel: #1c2219;
  --rule: #2f382c;
  --header: #0e110d;
  --header-text: #e8e2d4;
  --accent: #c4a35a;
  --accent-hover: #d4b56a;
  --accent-2: #6b8f71;
  --on-accent: #0e110d;
  --focus: #6b8f71;
  --game-accent: var(--accent);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 50% at 10% -10%, rgba(107, 143, 113, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 40% at 90% 0%, rgba(196, 163, 90, 0.12), transparent 50%),
    linear-gradient(180deg, #121610 0%, var(--header) 40%, #10140f 100%);
  background-attachment: fixed;
  overflow-x: clip;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: var(--space-3);
  top: -100%;
  z-index: 30;
  padding: var(--space-2) var(--space-3);
  background: var(--panel);
  color: var(--ink);
}

.skip-link:focus {
  top: var(--space-2);
}

.mockup-banner {
  margin: 0;
  padding: 0.55rem 1rem;
  background: var(--header);
  color: var(--muted);
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}

.page-container {
  width: min(100% - 2rem, var(--page-max));
  margin-inline: auto;
}

.reading-width {
  max-width: var(--reading-max);
}

section {
  padding-block: clamp(3rem, 6vw, 6rem);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 var(--space-3);
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 4.75rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.1;
}

p {
  margin: 0 0 var(--space-3);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 var(--space-3);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--game-accent);
}

.lede,
.hero-summary {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}

.site-header {
  background: linear-gradient(180deg, rgba(20, 26, 18, 0.95), rgba(14, 17, 13, 0.78));
  color: var(--header-text);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 4.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.site-logo img {
  display: block;
  height: 3.25rem;
  width: calc(3.25rem * 203 / 65);
  max-width: min(13.5rem, 58vw);
  aspect-ratio: 203 / 65;
  object-fit: contain;
}

.site-logo:hover {
  opacity: 0.88;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

.nav-list {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent);
}

.nav-list a[aria-current="page"] {
  box-shadow: inset 0 -1px 0 var(--accent);
}

.hero,
.page-hero {
  background: transparent;
  color: var(--header-text);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.hero h1,
.page-hero h1,
.hero .hero-summary,
.page-hero .hero-summary {
  color: var(--ink);
}

.page-hero .eyebrow,
.hero .eyebrow {
  color: var(--accent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: var(--space-6);
  align-items: center;
}

.hero-summary {
  max-width: 36rem;
  margin-bottom: var(--space-5);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-actions .button,
.card-cta .button,
.final-cta .button,
.runtime-panel .button {
  max-width: 100%;
}

.hero-visual,
.media-frame {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.hero-visual picture,
.media-frame picture,
.game-card picture,
.related-card picture {
  display: block;
}

.hero-visual img,
.media-frame img,
.game-card img,
.related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--header);
  border: 1px solid var(--rule);
}

.game-card.game-card--mark img {
  width: 6.5rem;
  max-width: 6.5rem;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent;
  border: 0;
}

.game-card--mark .game-card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
}

.hero-visual figcaption {
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 0.8125rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: center;
  max-width: 100%;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.button-primary {
  background: var(--accent);
  color: var(--on-accent);
}

.button-primary:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
}

.button-primary:active {
  background: #a88b48;
  color: var(--on-accent);
}

.button-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.button-secondary:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.button-secondary:active {
  background: var(--accent-hover);
  color: var(--on-accent);
}

.ink-panel .button-secondary,
.section-plain .button-secondary {
  color: var(--accent);
}

.trust-badges {
  background: var(--panel);
  border-bottom: 1px solid var(--rule);
  padding-block: var(--space-4);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.9375rem;
}

.trust-list li {
  position: relative;
}

.trust-list strong {
  font-weight: 500;
}

.quick-facts {
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--rule);
}

.facts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
}

.facts-list li + li::before {
  content: "";
}

.game-grid,
.feature-grid,
.related-grid,
.media-grid {
  display: grid;
  gap: var(--space-5);
}

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

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

.game-card,
.related-card {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.game-card img,
.related-card img,
.media-frame img {
  border: 1px solid var(--rule);
}

.game-card-body,
.related-card-body {
  padding: var(--space-3) 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.game-card .card-cta,
.related-card .card-cta {
  margin-top: auto;
  padding-top: var(--space-3);
}

.game-card h3,
.related-card h3,
.feature-card h3 {
  margin: 0;
}

.game-card h3 a,
.related-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.game-card h3 a:hover,
.related-card h3 a:hover {
  color: var(--accent);
}

.card-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.card-cta {
  margin-top: var(--space-3);
}

.feature-card {
  padding: 0;
  border-top: 1px solid var(--rule);
  padding-top: var(--space-4);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.media-frame {
  display: block;
}

.howto-list {
  display: grid;
  gap: var(--space-5);
}

.howto-list article h3 {
  margin-bottom: var(--space-2);
}

.faq details {
  border-top: 1px solid var(--rule);
  padding-block: var(--space-3);
}

.faq details:last-child {
  border-bottom: 1px solid var(--rule);
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
}

.faq details p {
  margin-top: var(--space-2);
  color: var(--muted);
}

.final-cta {
  background: rgba(14, 17, 13, 0.45);
  color: var(--header-text);
}

.final-cta h2,
.final-cta p {
  color: inherit;
}

.final-cta .reading-width,
.final-cta .page-container > p {
  max-width: 36rem;
}

.final-cta p {
  margin-bottom: var(--space-5);
  color: var(--muted);
}

.group-label {
  margin: 0 0 var(--space-4);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.catalog-block + .catalog-block {
  padding-top: 0;
}

.site-footer {
  background: var(--header);
  color: var(--muted);
  padding-block: var(--space-7);
  padding-bottom: max(var(--space-7), env(safe-area-inset-bottom));
  border-top: 1px solid var(--rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.footer-logo {
  display: inline-block;
  margin: 0 0 var(--space-3);
  text-decoration: none;
}

.footer-logo img {
  display: block;
  height: 3.5rem;
  width: calc(3.5rem * 203 / 65);
  max-width: min(14rem, 100%);
  aspect-ratio: 203 / 65;
  object-fit: contain;
}

.site-footer a.footer-logo:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.88;
}

.footer-copy {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--rule);
  font-size: 0.8125rem;
}

.runtime-shell {
  min-height: calc(100vh - 8rem);
  display: grid;
  place-items: center;
  padding: var(--space-8) 0;
  background: transparent;
  color: var(--ink);
}

.runtime-panel {
  width: min(100% - 2rem, 34rem);
  text-align: left;
}

.runtime-panel h1 {
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.runtime-panel p {
  color: var(--muted);
}

.contact-block .button-secondary {
  color: var(--accent);
}

.contact-block .button-secondary:hover,
.contact-block .button-secondary:active {
  background: var(--accent);
  color: var(--on-accent);
}

.contact-block .hero-actions {
  margin-top: var(--space-4);
}

.review-byline {
  color: var(--muted);
  font-size: 0.9375rem;
}

.rule-top {
  border-top: 1px solid var(--rule);
}

.posts-list article + article {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule);
}

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

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .game-grid,
  .feature-grid,
  .related-grid,
  .media-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-block: clamp(2.5rem, 8vw, 4rem);
  }

  .trust-list {
    justify-content: flex-start;
    gap: var(--space-3);
  }

  .runtime-shell {
    min-height: 0;
    padding: var(--space-6) 0;
  }
}

@media (max-width: 720px) {
  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .card-cta .button,
  .final-cta .button,
  .runtime-panel .button {
    width: 100%;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
  }

  .nav-toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    -webkit-tap-highlight-color: transparent;
  }

  .nav-toggle-label::before {
    content: "";
    width: 1.05rem;
    height: 1px;
    background: var(--ink);
    box-shadow: 0 -5px 0 var(--ink), 0 5px 0 var(--ink);
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .primary-nav {
    display: none;
    width: 100%;
    padding-bottom: var(--space-3);
  }

  .nav-toggle:checked ~ .primary-nav,
  .nav-toggle:focus-visible ~ .primary-nav {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--rule);
  }
}

@media (max-width: 480px) {
  .page-container {
    width: auto;
    max-width: var(--page-max);
    margin-left: max(0.75rem, env(safe-area-inset-left, 0px));
    margin-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .site-logo img {
    height: 2.65rem;
    width: calc(2.65rem * 203 / 65);
  }

  .mockup-banner {
    padding: 0.55rem 0.75rem;
    text-wrap: pretty;
  }

  .hero-summary {
    font-size: 1.05rem;
  }

  .trust-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
