@font-face {
  font-family: "High Noon";
  src: url("assets/high-noon-western.woff2") format("woff2");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #050403;
  --black-soft: #11100d;
  --iron: #1f2424;
  --wood: #4d3726;
  --dust: #d9c39a;
  --paper: #f2dfb8;
  --red: #e10f13;
  --red-dark: #8f0d10;
  --gold: #c7943f;
  --smoke: rgba(255, 244, 218, 0.68);
  --line: rgba(242, 223, 184, 0.2);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(225, 15, 19, 0.12), transparent 28rem),
    linear-gradient(180deg, #090704 0%, #050403 58%, #080604 100%);
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}

body.nav-open,
body.is-loading {
  overflow: hidden;
}

body.is-leaving {
  cursor: wait;
}

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

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

button {
  font: inherit;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  transform: translateX(-105%);
  background:
    linear-gradient(90deg, rgba(225, 15, 19, 0.9), rgba(5, 4, 3, 0.96) 34%, #050403);
}

body.is-leaving .page-transition {
  animation: pageWipe 520ms cubic-bezier(0.72, 0, 0.2, 1) forwards;
}

@keyframes pageWipe {
  0% {
    transform: translateX(-105%);
  }

  100% {
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.2, 0.9, 0.18, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050403;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  inset: 0;
}

.loader::before {
  inset: -22px;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.34), rgba(5, 4, 3, 0.88)),
    url("assets/hn-gunslinger-loading.jpg") center / cover;
  filter: blur(2.8px) grayscale(1) contrast(1.12);
  transform: scale(1.04);
  animation: loaderDrift 11s ease-in-out infinite;
}

.loader::after {
  background:
    radial-gradient(circle at 50% 48%, rgba(225, 15, 19, 0.2), transparent 18rem),
    linear-gradient(90deg, rgba(5, 4, 3, 0.9), transparent 48%, rgba(5, 4, 3, 0.88)),
    linear-gradient(180deg, rgba(5, 4, 3, 0.12), #050403);
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.88);
}

.loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(88vw, 480px);
  gap: 13px;
  justify-items: center;
  overflow: hidden;
  padding: 34px 30px 28px;
  border: 1px solid rgba(242, 223, 184, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(242, 223, 184, 0.08), rgba(5, 4, 3, 0.2)),
    rgba(7, 5, 4, 0.78);
  box-shadow:
    0 32px 92px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 244, 218, 0.06);
  backdrop-filter: blur(15px);
}

.loader-card::before,
.loader-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.loader-card::before {
  inset: 10px;
  border: 1px solid rgba(199, 148, 63, 0.28);
  border-radius: calc(var(--radius) - 2px);
}

.loader-card::after {
  inset: 0;
  background: linear-gradient(112deg, transparent 0 36%, rgba(242, 223, 184, 0.14) 48%, transparent 60% 100%);
  transform: translateX(-120%);
  animation: loaderShine 2.8s ease-in-out infinite;
}

.loader-card img {
  position: relative;
  z-index: 1;
  width: min(58vw, 220px);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.58));
}

.loader-card span {
  position: relative;
  z-index: 1;
  color: var(--paper);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(2.1rem, 8vw, 4.2rem);
  letter-spacing: 3px;
  line-height: 0.9;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.72);
  text-transform: uppercase;
}

.loader-card strong {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-family: "High Noon", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 2.8px;
  line-height: 1;
  text-transform: uppercase;
}

.loader-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--smoke);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.loader-track {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border: 1px solid rgba(242, 223, 184, 0.36);
  border-radius: 0;
  background:
    repeating-linear-gradient(90deg, rgba(242, 223, 184, 0.08) 0 8px, transparent 8px 16px),
    rgba(242, 223, 184, 0.1);
}

.loader-track i {
  display: block;
  width: 46%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), #fff4d8);
  box-shadow: 0 0 22px rgba(225, 15, 19, 0.38);
  animation: loadTrail 1.25s ease-in-out infinite;
}

.loader-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 14px;
}

.loader-meta em {
  color: rgba(242, 223, 184, 0.72);
  font-family: "High Noon", Georgia, serif;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

@keyframes loadTrail {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(260%);
  }
}

@keyframes loaderDrift {
  0%,
  100% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.08) translate3d(-10px, 6px, 0);
  }
}

@keyframes loaderShine {
  0%,
  45% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  border-color: var(--line);
  background: rgba(5, 4, 3, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  order: 1;
  display: inline-flex;
  align-items: center;
  width: 150px;
  min-width: 0;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.site-nav {
  order: 2;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  margin-left: auto;
}

.site-nav a {
  color: var(--paper);
  font-family: "High Noon", Georgia, serif;
  font-size: 0.96rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
  transition: color 160ms ease;
}

.site-nav a:nth-child(even),
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--red);
  outline: none;
}

.language-switcher {
  position: relative;
  order: 3;
  z-index: 35;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 72px;
  min-height: 42px;
  border: 1px solid rgba(231, 210, 167, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 166, 74, 0.18), transparent 2rem),
    rgba(5, 4, 3, 0.66);
  color: var(--paper);
  cursor: pointer;
  font-family: "High Noon", Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(212, 166, 74, 0.08), 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-switcher.is-open .language-toggle {
  border-color: rgba(212, 166, 74, 0.76);
  background:
    linear-gradient(145deg, rgba(212, 166, 74, 0.18), rgba(193, 18, 31, 0.12)),
    rgba(5, 4, 3, 0.76);
  color: #fff4d8;
  outline: none;
  transform: translateY(-1px);
}

.language-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.language-switcher.is-open .language-toggle svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(220px, calc(100vw - 24px));
  overflow: hidden;
  border: 1px solid rgba(231, 210, 167, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 16, 13, 0.98), rgba(5, 4, 3, 0.96)),
    var(--black);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.46), inset 0 0 0 1px rgba(212, 166, 74, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-menu button {
  min-height: 42px;
  padding: 11px 14px;
  border: 0;
  border-bottom: 1px solid rgba(231, 210, 167, 0.1);
  background: transparent;
  color: rgba(242, 223, 184, 0.84);
  cursor: pointer;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-align: left;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, padding 160ms ease;
}

.language-menu button:last-child {
  border-bottom: 0;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
  background:
    linear-gradient(90deg, rgba(193, 18, 31, 0.22), rgba(212, 166, 74, 0.1)),
    rgba(231, 210, 167, 0.04);
  color: #fff4d8;
  outline: none;
  padding-left: 18px;
}

.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .site-nav {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
  transform-origin: top left;
}

html[dir="rtl"] .language-menu button {
  text-align: right;
}

html[dir="rtl"] .language-menu button:hover,
html[dir="rtl"] .language-menu button:focus-visible,
html[dir="rtl"] .language-menu button.is-active {
  padding-right: 18px;
  padding-left: 14px;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .download-copy > p:not(.eyebrow),
html[dir="rtl"] .support-card p,
html[dir="rtl"] .policy-content p,
html[dir="rtl"] .policy-content li {
  text-align: right;
}

html[dir="rtl"] .character-hero {
  direction: ltr;
}

html[dir="rtl"] .character-copy {
  direction: rtl;
  width: min(45vw, 620px);
  margin-right: max(32px, calc((100vw - var(--max)) / 2));
  margin-left: auto;
  align-items: flex-start;
  text-align: right;
}

html[dir="rtl"] .character-copy h1 {
  max-width: min(43vw, 620px);
  font-size: clamp(3.25rem, 8.4vw, 7.25rem);
  line-height: 0.9;
}

html[dir="rtl"] .character-stage {
  right: auto;
  left: max(2vw, calc((100vw - var(--max)) / 2));
  width: min(48vw, 720px);
  direction: ltr;
}

html[dir="rtl"] .character-name-wall {
  direction: ltr;
}

.nav-toggle {
  order: 4;
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.62);
  color: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  --hero-accent: #c2191d;
  --hero-dark: #260806;
}

.hero picture,
.hero-bg,
.hero-bg-layer,
.hero-grain,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-bg-layer {
  background:
    radial-gradient(circle at 68% 38%, color-mix(in srgb, var(--hero-accent), transparent 8%) 0 12rem, transparent 28rem),
    radial-gradient(circle at 18% 70%, color-mix(in srgb, var(--hero-dark), transparent 10%) 0 18rem, transparent 32rem),
    linear-gradient(120deg, var(--hero-dark), #050403 50%, color-mix(in srgb, var(--hero-accent), #050403 70%));
  transition: background 520ms ease;
}

.hero-bg-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 4, 3, 0.56), rgba(5, 4, 3, 0.72)),
    url("assets/hn-gunslinger-saloon.jpeg") center / cover;
  opacity: 0.56;
  mix-blend-mode: luminosity;
}

.character-hero .hero-bg-layer {
  background:
    radial-gradient(circle at 54% 39%, color-mix(in srgb, var(--hero-accent), transparent 60%) 0 12rem, transparent 34rem),
    radial-gradient(circle at 24% 78%, color-mix(in srgb, var(--hero-dark), transparent 28%) 0 15rem, transparent 30rem),
    linear-gradient(120deg, #050403 0%, var(--hero-dark) 48%, #050403 100%);
}

.character-hero .hero-bg-layer::before {
  inset: -18px;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.72) 0%, rgba(5, 4, 3, 0.34) 40%, rgba(5, 4, 3, 0.6) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.08) 0%, rgba(5, 4, 3, 0.76) 100%),
    url("assets/hn-gunslinger-collage.jpg") center / cover;
  background-attachment: fixed;
  filter: blur(3px) saturate(0.86) contrast(1.05);
  opacity: 0.96;
  mix-blend-mode: normal;
  transform: scale(1.03);
  transform-origin: center;
}

.character-hero .hero-bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 64% 42%, color-mix(in srgb, var(--hero-accent), transparent 34%) 0 9rem, transparent 30rem),
    radial-gradient(circle at 48% 82%, color-mix(in srgb, var(--hero-accent), transparent 70%) 0 13rem, transparent 34rem),
    linear-gradient(120deg, color-mix(in srgb, var(--hero-dark), transparent 18%), transparent 52%);
  mix-blend-mode: screen;
  opacity: 0.44;
  transition: background 520ms ease, opacity 520ms ease;
  animation: heroAura 4.6s ease-in-out infinite;
}

.character-hero .hero-vignette {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.88) 0%, rgba(5, 4, 3, 0.52) 32%, rgba(5, 4, 3, 0.18) 62%, rgba(5, 4, 3, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.18) 0%, rgba(5, 4, 3, 0.1) 48%, #050403 100%);
}

@keyframes heroAura {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(1);
  }

  50% {
    opacity: 0.54;
    transform: scale(1.03);
  }
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grain {
  z-index: 1;
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mix-blend-mode: overlay;
}

.hero-vignette {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94) 0%, rgba(5, 4, 3, 0.7) 32%, rgba(5, 4, 3, 0.24) 68%, rgba(5, 4, 3, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.36) 0%, rgba(5, 4, 3, 0.12) 52%, #050403 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(100% - 32px, var(--max));
  min-height: 100svh;
  margin-inline: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 120px 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(0.98rem, 2vw, 1.3rem);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1,
.intro-copy h2,
.section-heading h2 {
  margin: 0;
  font-family: "High Noon", Georgia, serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  color: #fff4d8;
  font-size: clamp(3.8rem, 11vw, 9.2rem);
  line-height: 0.86;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.26),
    0 24px 46px rgba(0, 0, 0, 0.58);
}

.character-hero {
  display: grid;
}

.character-copy {
  width: min(48vw, 660px);
  z-index: 6;
  margin-inline: max(32px, calc((100vw - var(--max)) / 2)) auto;
}

.character-mobile-space {
  display: none;
  order: 5;
  width: 100%;
  pointer-events: none;
}

.character-copy.is-changing h1,
.character-copy.is-changing .character-role,
.character-copy.is-changing .hero-copy {
  animation: copySwap 420ms ease both;
}

@keyframes copySwap {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.character-role {
  margin: 10px 0 0;
  color: var(--hero-accent);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.58);
  transition: color 420ms ease;
}

.rating {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}

.rating span {
  width: 18px;
  height: 18px;
  background: var(--paper);
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 80% 92%, 50% 70%, 20% 92%, 32% 55%, 2% 34%, 39% 34%);
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.42));
}

.character-name-wall {
  position: absolute;
  inset: 8vh 0 auto;
  z-index: 1;
  color: color-mix(in srgb, var(--hero-accent), transparent 62%);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(7rem, 20vw, 20rem);
  letter-spacing: 12px;
  line-height: 0.72;
  opacity: 0.35;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(0) scale(1);
  transition: color 520ms ease, opacity 520ms ease;
  user-select: none;
  white-space: nowrap;
}

.character-name-wall.is-changing {
  animation: wallSwap 520ms cubic-bezier(0.2, 0.9, 0.18, 1) both;
}

.character-mode-toggle {
  position: absolute;
  inset: 106px max(18px, calc((100vw - var(--max)) / 2)) auto auto;
  z-index: 12;
  display: grid;
  min-width: 138px;
  gap: 2px;
  padding: 11px 14px 10px;
  border: 1px solid color-mix(in srgb, var(--hero-accent), var(--paper) 28%);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--hero-accent), transparent 84%), rgba(5, 4, 3, 0.72)),
    rgba(5, 4, 3, 0.68);
  color: var(--paper);
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  transition: border-color 220ms ease, background 420ms ease, transform 180ms ease, color 220ms ease;
}

.character-mode-toggle:hover,
.character-mode-toggle:focus-visible {
  border-color: var(--hero-accent);
  transform: translateY(-2px);
  outline: none;
}

.character-mode-toggle span {
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.character-mode-toggle strong {
  color: var(--hero-accent);
  font-family: "High Noon", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1;
}

@keyframes wallSwap {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.92);
  }

  100% {
    opacity: 0.35;
    transform: translateY(0) scale(1);
  }
}

.character-stage {
  position: absolute;
  inset: 18vh max(2vw, calc((100vw - var(--max)) / 2)) 6vh auto;
  z-index: 4;
  width: min(54vw, 780px);
  pointer-events: none;
}

.character-ring {
  position: relative;
  height: min(70vh, 690px);
  cursor: grab;
  pointer-events: auto;
  touch-action: pan-y;
}

.character-ring:active {
  cursor: grabbing;
}

.character-card {
  position: absolute;
  inset: auto auto 0 50%;
  width: clamp(132px, 16vw, 245px);
  opacity: 0;
  transform: translateX(-50%) translateX(var(--x, 0)) translateY(var(--y, 0)) scale(var(--scale, 0.78));
  transform-origin: 50% 100%;
  transition:
    opacity 480ms ease,
    filter 480ms ease,
    transform 620ms cubic-bezier(0.2, 0.9, 0.18, 1);
  pointer-events: none;
}

.character-card.is-group-hidden {
  opacity: 0;
  visibility: hidden;
}

.character-card::before {
  content: "";
  position: absolute;
  inset: 20% -34% 2%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--hero-accent), transparent 40%) 0%, transparent 66%);
  filter: blur(24px);
  opacity: 0;
  transition: opacity 480ms ease, transform 620ms cubic-bezier(0.2, 0.9, 0.18, 1);
}

.character-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(64vh, 680px);
  object-fit: contain;
  object-position: bottom center;
}

.character-card.is-active {
  --x: 0px;
  --y: 0px;
  --scale: 1.06;
  z-index: 5;
  opacity: 1;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.62));
}

.character-card.is-active::before {
  opacity: 0.56;
  animation: characterGlow 3.4s ease-in-out infinite;
}

@keyframes characterGlow {
  0%,
  100% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.08);
  }
}

.character-card.is-prev {
  --x: -220px;
  --y: 38px;
  --scale: 0.76;
  z-index: 3;
  opacity: 0.82;
  filter: saturate(0.72) brightness(0.68) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
}

.character-card.is-next {
  --x: 220px;
  --y: 38px;
  --scale: 0.76;
  z-index: 3;
  opacity: 0.82;
  filter: saturate(0.72) brightness(0.68) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
}

.character-card.is-far-prev {
  --x: -372px;
  --y: 78px;
  --scale: 0.52;
  z-index: 2;
  opacity: 0.42;
  filter: saturate(0.5) brightness(0.48);
}

.character-card.is-far-next {
  --x: 372px;
  --y: 78px;
  --scale: 0.52;
  z-index: 2;
  opacity: 0.42;
  filter: saturate(0.5) brightness(0.48);
}

.carousel-arrow {
  z-index: 8;
  display: grid;
  width: 54px;
  height: 38px;
  place-items: center;
  border: 2px solid rgba(242, 223, 184, 0.6);
  border-radius: 999px;
  background: rgba(5, 4, 3, 0.58);
  color: var(--paper);
  cursor: pointer;
  pointer-events: auto;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: var(--hero-accent);
  background: rgba(5, 4, 3, 0.84);
  transform: translateY(-2px);
  outline: none;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.character-controls {
  order: 7;
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.62);
  color: var(--paper);
  backdrop-filter: blur(10px);
}

.character-controls span {
  color: var(--hero-accent);
  font-family: "High Noon", Georgia, serif;
  letter-spacing: 2px;
  min-width: 72px;
  text-align: center;
  transition: color 420ms ease;
}

.character-controls strong {
  font-size: 0.88rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.character-copy .eyebrow {
  color: var(--hero-accent);
  transition: color 420ms ease;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--smoke);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  order: 6;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "High Noon", Georgia, serif;
  letter-spacing: 1.4px;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff6df;
  box-shadow: 0 18px 36px rgba(143, 13, 16, 0.34);
}

.btn-secondary {
  border-color: rgba(242, 223, 184, 0.34);
  background: rgba(5, 4, 3, 0.52);
  color: var(--paper);
  backdrop-filter: blur(8px);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  outline: none;
}

.text-link {
  display: inline-flex;
  width: max-content;
  margin-top: 24px;
  color: var(--red);
  font-family: "High Noon", Georgia, serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.wanted-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 720px);
  margin-top: 54px;
  border: 1px solid var(--line);
  background: rgba(7, 5, 4, 0.58);
  backdrop-filter: blur(8px);
}

.wanted-strip div {
  min-height: 92px;
  padding: 16px;
  border-inline-start: 1px solid var(--line);
}

.wanted-strip div:first-child {
  border-inline-start: 0;
}

.wanted-strip span,
.world-panel span,
.poster-top,
.media-grid figcaption {
  color: var(--red);
  font-family: "High Noon", Georgia, serif;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.wanted-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--paper);
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
}

.section {
  padding-block: clamp(64px, 9vw, 112px);
}

.preorder-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(64px, 7vw, 104px);
  scroll-margin-top: 112px;
  background: #080808;
  --mx: 0;
  --my: 0;
}

.preorder-bg,
.preorder-fog,
.preorder-dust,
.preorder-ghost-scene {
  position: absolute;
  pointer-events: none;
}

.preorder-bg {
  inset: -3%;
  z-index: -5;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.68) 42%, rgba(8, 8, 8, 0.88) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.76) 78%, #080808 100%),
    url("assets/preorder/preorder-bg-wide.jpeg") center / cover;
  filter: saturate(0.88) contrast(1.08);
  transform: scale(1.06) translate3d(calc(var(--mx, 0) * -10px), calc(var(--my, 0) * -8px), 0);
  animation: preorderBgZoom 15s ease-in-out infinite;
}

.preorder-fog {
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 64% 44%, rgba(212, 166, 74, 0.16), transparent 24rem),
    radial-gradient(circle at 20% 76%, rgba(193, 18, 31, 0.18), transparent 22rem),
    linear-gradient(110deg, rgba(8, 8, 8, 0.7), transparent 55%, rgba(8, 8, 8, 0.8));
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translate3d(calc(var(--mx, 0) * 16px), calc(var(--my, 0) * 10px), 0);
}

.preorder-dust {
  inset: 0;
  z-index: -2;
  opacity: 0.48;
  background-image:
    radial-gradient(circle, rgba(231, 210, 167, 0.24) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(212, 166, 74, 0.16) 0 1px, transparent 1.8px);
  background-position: 0 0, 34px 68px;
  background-size: 120px 120px, 170px 170px;
  animation: dustFloat 16s linear infinite;
}

.preorder-ghost-scene {
  right: -5vw;
  bottom: -9vh;
  z-index: -3;
  width: min(38vw, 560px);
  max-width: none;
  border: 1px solid rgba(231, 210, 167, 0.08);
  filter: grayscale(0.88) brightness(0.62) contrast(1.12);
  opacity: 0.24;
  transform: rotate(-2deg) translate3d(calc(var(--mx, 0) * 18px), calc(var(--my, 0) * 14px), 0);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.7);
}

.preorder-section::before,
.preorder-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.preorder-section::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.86) 0 2px, transparent 2px 86px),
    linear-gradient(rgba(231, 210, 167, 0.05) 1px, transparent 1px);
  background-size: 86px 86px, 100% 8px;
  mix-blend-mode: overlay;
  opacity: 0.2;
}

.preorder-section::after {
  inset: 0;
  z-index: 0;
  box-shadow: inset 0 0 170px rgba(0, 0, 0, 0.9);
}

.preorder-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.preorder-copy {
  max-width: 790px;
  transform: translate3d(calc(var(--mx, 0) * -8px), calc(var(--my, 0) * -4px), 0);
}

.preorder-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 24px;
  padding: 8px 13px;
  border: 1px solid rgba(212, 166, 74, 0.54);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(193, 18, 31, 0.2), rgba(17, 17, 17, 0.76)),
    rgba(8, 8, 8, 0.7);
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(231, 210, 167, 0.06), 0 18px 38px rgba(0, 0, 0, 0.26);
}

.preorder-copy h2 {
  max-width: 880px;
  margin: 0;
  color: var(--paper);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(3rem, 5.45vw, 5.85rem);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow:
    0 6px 0 rgba(0, 0, 0, 0.22),
    0 28px 58px rgba(0, 0, 0, 0.68);
  overflow-wrap: break-word;
  animation: preorderTitleIn 900ms cubic-bezier(0.2, 0.9, 0.18, 1) both;
}

.preorder-copy > p:not(.preorder-badge) {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(231, 210, 167, 0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
  animation: preorderFadeUp 900ms 120ms ease both;
}

.preorder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: preorderFadeUp 900ms 220ms ease both;
}

.preorder-btn {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 56px;
  padding: 14px 24px;
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 1.8px;
  line-height: 1;
  overflow: hidden;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.preorder-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 0 38%, rgba(255, 244, 218, 0.28) 50%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.preorder-btn:hover,
.preorder-btn:focus-visible {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
  outline: none;
}

.preorder-btn:hover::after,
.preorder-btn:focus-visible::after {
  transform: translateX(120%);
}

.preorder-btn-primary {
  border: 0;
  background: url("assets/preorder/preorder-button.png") center / 100% 100% no-repeat;
  color: #1a0b02;
  text-shadow: 0 1px 0 rgba(255, 244, 218, 0.45);
  box-shadow: 0 18px 42px rgba(212, 166, 74, 0.22);
}

.preorder-btn-secondary {
  border: 1px solid rgba(231, 210, 167, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(231, 210, 167, 0.07), rgba(8, 8, 8, 0.62)),
    rgba(8, 8, 8, 0.54);
  box-shadow: inset 0 0 0 1px rgba(212, 166, 74, 0.08);
  backdrop-filter: blur(10px);
}

.preorder-btn-secondary:hover,
.preorder-btn-secondary:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(212, 166, 74, 0.16), inset 0 0 0 1px rgba(212, 166, 74, 0.18);
}

.preorder-poster-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 440px);
  perspective: 1100px;
  animation: posterEntrance 900ms 120ms cubic-bezier(0.2, 0.9, 0.18, 1) both;
}

.poster-hanger {
  position: absolute;
  inset: -22px 10% auto;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.poster-hanger span {
  width: 18px;
  height: 46px;
  border: 1px solid rgba(212, 166, 74, 0.4);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(231, 210, 167, 0.9), rgba(84, 52, 21, 0.92));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.46);
}

.preorder-poster {
  position: relative;
  display: grid;
  min-height: 610px;
  overflow: visible;
  transform:
    rotateX(calc(var(--my, 0) * -3deg))
    rotateY(calc(var(--mx, 0) * 4deg))
    translate3d(calc(var(--mx, 0) * 12px), calc(var(--my, 0) * 10px), 0);
  transform-style: preserve-3d;
  animation: wantedFloat 6.8s ease-in-out infinite;
}

.preorder-poster::before,
.preorder-poster::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.preorder-poster::before {
  inset: 7% 3% 5%;
  z-index: -1;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.68);
  filter: blur(22px);
  transform: translate(22px, 30px);
}

.preorder-poster::after {
  inset: 5.5% 6% 7%;
  z-index: 2;
  border: 1px solid rgba(75, 39, 15, 0.46);
  box-shadow:
    inset 0 0 0 2px rgba(212, 166, 74, 0.14),
    inset 0 0 44px rgba(57, 25, 8, 0.42);
}

.poster-paper {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  filter: drop-shadow(0 34px 52px rgba(0, 0, 0, 0.62));
}

.poster-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 610px;
  padding: 58px 54px 50px;
  color: #1d1208;
  text-align: center;
}

.poster-wanted {
  margin: 0 0 14px;
  color: var(--red);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  letter-spacing: 5px;
  line-height: 1;
  text-transform: uppercase;
}

.poster-portrait {
  display: grid;
  width: min(100%, 260px);
  height: 290px;
  margin: 0 auto 18px;
  place-items: start center;
  overflow: hidden;
  border: 2px solid rgba(29, 18, 8, 0.48);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 28%, rgba(231, 210, 167, 0.42), transparent 55%),
    rgba(17, 17, 17, 0.1);
  box-shadow: inset 0 0 36px rgba(57, 25, 8, 0.28), 0 16px 26px rgba(57, 25, 8, 0.16);
}

.poster-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(0 16px 14px rgba(57, 25, 8, 0.36));
  transform: scale(1.2);
  transform-origin: center top;
}

.poster-content h3 {
  margin: 0;
  color: #1a1009;
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(2rem, 2.7vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 0.9;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.poster-content strong {
  margin-top: 10px;
  color: var(--red);
  font-family: "High Noon", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.poster-content p:last-child {
  max-width: 300px;
  margin: 12px 0 0;
  color: rgba(29, 18, 8, 0.76);
  font-weight: 800;
  line-height: 1.35;
}

@keyframes preorderBgZoom {
  0%,
  100% {
    transform: scale(1.06) translate3d(calc(var(--mx, 0) * -10px), calc(var(--my, 0) * -8px), 0);
  }

  50% {
    transform: scale(1.1) translate3d(calc(var(--mx, 0) * -10px - 10px), calc(var(--my, 0) * -8px + 4px), 0);
  }
}

@keyframes dustFloat {
  0% {
    background-position: 0 0, 34px 68px;
  }

  100% {
    background-position: 0 -420px, 34px -320px;
  }
}

@keyframes preorderTitleIn {
  0% {
    opacity: 0;
    transform: translateX(-64px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes preorderFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes posterEntrance {
  0% {
    opacity: 0;
    transform: translateX(72px) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes wantedFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: -0.7deg;
  }

  50% {
    translate: 0 -12px;
    rotate: 0.7deg;
  }
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(225, 15, 19, 0.07), transparent 70%),
    var(--black);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.52fr);
  gap: 34px;
  align-items: center;
}

.intro-copy h2,
.section-heading h2 {
  max-width: 820px;
  color: var(--paper);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.intro-copy p:not(.eyebrow),
.world-panel p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--smoke);
}

.wanted-card {
  display: grid;
  justify-items: center;
  padding: 28px 22px;
  border: 1px solid rgba(77, 55, 38, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 223, 184, 0.92), rgba(199, 148, 63, 0.78)),
    var(--paper);
  color: #1a1009;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.wanted-card img {
  width: min(80%, 250px);
  margin-block: 16px 10px;
}

.wanted-card h3 {
  margin: 0;
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.wanted-card p {
  margin: 10px 0 0;
  color: #4f281a;
  font-weight: 800;
  text-align: center;
}

.world-section {
  background:
    linear-gradient(rgba(5, 4, 3, 0.8), rgba(5, 4, 3, 0.9)),
    url("assets/hn-gunslinger-saloon.jpeg") center / cover fixed;
}

.world-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.world-panel {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.84);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.world-panel-main {
  grid-row: span 2;
  display: grid;
  padding: 0;
  overflow: hidden;
}

.world-panel-main img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.world-panel-main div {
  padding: 24px;
}

.world-panel.accent {
  background:
    linear-gradient(135deg, rgba(225, 15, 19, 0.2), rgba(17, 16, 13, 0.88)),
    var(--black-soft);
}

.world-panel h3 {
  margin: 8px 0 0;
  color: var(--paper);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.style-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(240px, 0.86fr);
  gap: 18px;
  min-height: 380px;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(212, 166, 74, 0.22), transparent 15rem),
    radial-gradient(circle at 26% 76%, rgba(193, 18, 31, 0.18), transparent 13rem),
    linear-gradient(135deg, rgba(17, 16, 13, 0.96), rgba(8, 8, 8, 0.9));
}

.style-panel::before,
.style-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.style-panel::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(231, 210, 167, 0.07) 0 1px, transparent 1px 52px),
    linear-gradient(rgba(231, 210, 167, 0.04) 1px, transparent 1px);
  background-size: 52px 52px, 100% 10px;
  opacity: 0.22;
  mask-image: linear-gradient(90deg, transparent, #000 32%, #000 100%);
}

.style-panel::after {
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), transparent);
  opacity: 0.7;
}

.style-copy {
  position: relative;
  z-index: 2;
  padding: 24px 0 24px 24px;
}

.skin-showcase {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-left: 1px solid rgba(231, 210, 167, 0.13);
  perspective: 900px;
}

.skin-showcase::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(212, 166, 74, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 166, 74, 0.18), transparent 9rem),
    rgba(5, 4, 3, 0.28);
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.48);
}

.skin-showcase::after {
  content: "";
  position: absolute;
  inset: 18px;
  background: linear-gradient(115deg, transparent 0 36%, rgba(231, 210, 167, 0.18) 49%, transparent 62% 100%);
  opacity: 0.55;
  transform: translateX(-120%);
  animation: shopSweep 5.2s ease-in-out infinite;
}

.skin-item {
  position: absolute;
  z-index: 1;
  display: grid;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(231, 210, 167, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(231, 210, 167, 0.08), rgba(8, 8, 8, 0.56)),
    rgba(5, 4, 3, 0.46);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(212, 166, 74, 0.08);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  animation: skinFloat 4.8s ease-in-out infinite;
}

.skin-item img {
  max-width: 88%;
  max-height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 15px 16px rgba(0, 0, 0, 0.48));
}

.skin-item:hover {
  z-index: 5;
  border-color: rgba(212, 166, 74, 0.72);
  box-shadow: 0 22px 52px rgba(212, 166, 74, 0.18), inset 0 0 0 1px rgba(231, 210, 167, 0.16);
  filter: brightness(1.08);
  transform: translateY(-8px) rotateZ(0deg) scale(1.05);
}

.skin-hat-one {
  top: 34px;
  left: 22px;
  width: 38%;
  height: 25%;
  rotate: -7deg;
  animation-delay: -0.4s;
}

.skin-hat-two {
  top: 24px;
  right: 20px;
  width: 41%;
  height: 27%;
  rotate: 6deg;
  animation-delay: -1.2s;
}

.skin-shirt {
  left: 24px;
  bottom: 30px;
  width: 36%;
  height: 49%;
  rotate: -3deg;
  animation-delay: -2.1s;
}

.skin-jacket {
  right: 22px;
  bottom: 30px;
  width: 44%;
  height: 58%;
  rotate: 3deg;
  animation-delay: -0.9s;
}

.skin-belt {
  left: 39%;
  bottom: 16px;
  width: 30%;
  height: 22%;
  rotate: 1deg;
  animation-delay: -1.7s;
}

@keyframes skinFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes shopSweep {
  0%,
  45% {
    transform: translateX(-120%);
  }

  78%,
  100% {
    transform: translateX(120%);
  }
}

.media-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 96px;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.48), rgba(5, 4, 3, 0.86) 72%, #050403),
    url("assets/media-train-frontier.jpeg") center / cover fixed;
}

.media-section::before,
.media-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.media-section::before {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(231, 210, 167, 0.32), transparent 18rem),
    radial-gradient(circle at 78% 34%, rgba(212, 166, 74, 0.2), transparent 20rem),
    linear-gradient(90deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.34) 48%, rgba(5, 4, 3, 0.88));
  mix-blend-mode: multiply;
}

.media-section::after {
  z-index: 0;
  opacity: 0.62;
  background-image:
    radial-gradient(circle, rgba(231, 210, 167, 0.34) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(212, 166, 74, 0.22) 0 1px, transparent 2px),
    linear-gradient(112deg, transparent 0 42%, rgba(231, 210, 167, 0.16) 50%, transparent 58% 100%);
  background-position: 0 0, 58px 84px, 0 0;
  background-size: 118px 118px, 176px 176px, 100% 100%;
  animation: mediaDustDrift 18s linear infinite;
}

.media-section .section-heading,
.media-section .media-grid {
  position: relative;
  z-index: 1;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  margin-bottom: 10px;
}

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

.media-grid figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 210, 167, 0.26);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.7);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(212, 166, 74, 0.07);
  backdrop-filter: blur(8px);
}

.media-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.media-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 4, 3, 0.86));
}

.media-grid figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

.media-grid figcaption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  color: var(--paper);
  font-size: 1.12rem;
}

@keyframes mediaDustDrift {
  0% {
    background-position: 0 0, 58px 84px, 0 0;
  }

  100% {
    background-position: 0 -360px, 58px -270px, 0 0;
  }
}

.download-page {
  background:
    radial-gradient(circle at 15% 10%, rgba(193, 18, 31, 0.14), transparent 25rem),
    radial-gradient(circle at 86% 22%, rgba(212, 166, 74, 0.2), transparent 25rem),
    #050403;
}

.download-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-block: 126px 70px;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(5, 4, 3, 0.48) 54%, rgba(5, 4, 3, 0.9)),
    linear-gradient(180deg, rgba(5, 4, 3, 0.18), #050403 100%),
    url("assets/download/download-showcase.png") center / cover;
}

.download-hero::before,
.download-hero::after,
.download-dust {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.download-hero::before {
  z-index: -3;
  background: url("assets/download/download-showcase.png") center / cover;
  filter: blur(28px) saturate(0.8) brightness(0.46);
  opacity: 0.72;
  transform: scale(1.12);
  animation: downloadBackdropDrift 16s ease-in-out infinite;
}

.download-hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 22% 30%, rgba(231, 210, 167, 0.18), transparent 18rem),
    radial-gradient(circle at 78% 26%, rgba(193, 18, 31, 0.2), transparent 15rem),
    linear-gradient(180deg, rgba(5, 4, 3, 0.06), #050403 92%);
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.82);
}

.download-dust {
  z-index: -2;
  opacity: 0.64;
  background-image:
    radial-gradient(circle, rgba(231, 210, 167, 0.46) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(212, 166, 74, 0.28) 0 1px, transparent 2px),
    linear-gradient(115deg, transparent 0 39%, rgba(231, 210, 167, 0.16) 50%, transparent 61% 100%);
  background-position: 0 0, 70px 40px, 0 0;
  background-size: 120px 120px, 210px 210px, 100% 100%;
  mix-blend-mode: screen;
  animation: downloadDust 22s linear infinite;
}

.download-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(330px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.download-shell > * {
  min-width: 0;
}

.download-copy {
  max-width: 760px;
  min-width: 0;
}

.download-copy h1 {
  margin: 0;
  max-width: 700px;
  color: var(--paper);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(4rem, 9.2vw, 7.8rem);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 0.88;
  overflow-wrap: break-word;
  text-transform: uppercase;
  text-shadow: 0 28px 70px rgba(0, 0, 0, 0.74);
}

.download-copy h1 span {
  display: block;
}

.download-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(242, 223, 184, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.download-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 34px;
  min-width: 0;
}

.download-platform {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 96px;
  overflow: hidden;
  padding: 18px 20px;
  border: 1px solid rgba(231, 210, 167, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(231, 210, 167, 0.1), rgba(8, 8, 8, 0.68)),
    rgba(5, 4, 3, 0.72);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(212, 166, 74, 0.12);
  transform: translateZ(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.download-platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 35%, rgba(231, 210, 167, 0.18) 49%, transparent 63% 100%),
    radial-gradient(circle at 82% 16%, rgba(212, 166, 74, 0.24), transparent 5.5rem);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 180ms ease, transform 360ms ease;
}

.download-platform:hover,
.download-platform:focus-visible {
  border-color: rgba(212, 166, 74, 0.78);
  background:
    linear-gradient(145deg, rgba(212, 166, 74, 0.22), rgba(193, 18, 31, 0.15)),
    rgba(8, 8, 8, 0.72);
  box-shadow: 0 28px 62px rgba(212, 166, 74, 0.18), inset 0 0 0 1px rgba(242, 223, 184, 0.12);
  outline: none;
  transform: translateY(-4px) scale(1.015);
}

.download-platform:hover::before,
.download-platform:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.platform-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(231, 210, 167, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 26%, rgba(231, 210, 167, 0.18), transparent 1.8rem),
    rgba(5, 4, 3, 0.74);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(212, 166, 74, 0.12);
}

.platform-icon svg {
  width: 30px;
  height: 30px;
}

.download-platform span:last-child {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  min-width: 0;
}

.download-platform small {
  color: rgba(242, 223, 184, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
}

.download-platform strong {
  color: var(--paper);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(1.6rem, 3.6vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 0.95;
  text-transform: uppercase;
}

.download-platform-android {
  border-color: rgba(212, 166, 74, 0.48);
}

.download-platform-ios {
  border-color: rgba(193, 18, 31, 0.48);
}

.download-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.download-specs span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(231, 210, 167, 0.24);
  border-radius: var(--radius);
  padding: 7px 12px;
  background: rgba(5, 4, 3, 0.52);
  color: rgba(242, 223, 184, 0.74);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.download-showcase {
  position: relative;
  justify-self: center;
  width: min(100%, 390px);
  perspective: 1000px;
}

.download-showcase::before,
.download-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.download-showcase::before {
  inset: 18px -24px -18px;
  z-index: -2;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 45%, rgba(212, 166, 74, 0.32), transparent 16rem);
  filter: blur(12px);
}

.download-showcase::after {
  inset: -18px 13% auto;
  z-index: -1;
  height: 38px;
  border: 1px solid rgba(231, 210, 167, 0.32);
  border-bottom: 0;
  background:
    linear-gradient(90deg, transparent 12%, rgba(212, 166, 74, 0.7) 13% 15%, transparent 16% 84%, rgba(212, 166, 74, 0.7) 85% 87%, transparent 88%),
    rgba(5, 4, 3, 0.44);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

.download-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(231, 210, 167, 0.44);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(231, 210, 167, 0.1), rgba(5, 4, 3, 0.5)),
    #090704;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.58),
    0 0 0 8px rgba(5, 4, 3, 0.42),
    inset 0 0 0 1px rgba(212, 166, 74, 0.14);
  transform: rotateY(-5deg) rotateZ(1deg);
  animation: downloadPosterFloat 5.8s ease-in-out infinite;
}

.download-frame::before,
.download-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.download-frame::before {
  border: 1px solid rgba(212, 166, 74, 0.42);
  margin: 10px;
  border-radius: calc(var(--radius) - 2px);
}

.download-frame::after {
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 244, 218, 0.2) 49%, transparent 58% 100%),
    linear-gradient(180deg, transparent 58%, rgba(5, 4, 3, 0.22));
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translateX(-100%);
  animation: downloadPosterShine 4.4s ease-in-out infinite;
}

.download-frame img {
  width: 100%;
  max-height: min(78svh, 720px);
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.download-page .site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(193, 18, 31, 0.12), transparent 22rem),
    radial-gradient(circle at 78% 0%, rgba(212, 166, 74, 0.13), transparent 24rem),
    #050403;
}

.download-page .footer-inner {
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand copy links";
}

.download-page .footer-inner p,
.download-page .footer-links {
  align-self: center;
  margin-top: 0;
}

@keyframes downloadBackdropDrift {
  0%,
  100% {
    transform: scale(1.12) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.16) translate3d(-12px, 8px, 0);
  }
}

@keyframes downloadDust {
  0% {
    background-position: 0 0, 70px 40px, 0 0;
  }

  100% {
    background-position: 0 -430px, 70px -310px, 0 0;
  }
}

@keyframes downloadPosterFloat {
  0%,
  100% {
    transform: rotateY(-5deg) rotateZ(1deg) translateY(0);
  }

  50% {
    transform: rotateY(-2deg) rotateZ(-0.5deg) translateY(-12px);
  }
}

@keyframes downloadPosterShine {
  0%,
  44% {
    transform: translateX(-120%);
  }

  78%,
  100% {
    transform: translateX(120%);
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 148, 63, 0.11), transparent 28rem),
    linear-gradient(180deg, rgba(5, 4, 3, 0.94), var(--black));
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  grid-template-areas:
    "brand socials copy"
    "brand socials links";
  align-items: center;
  gap: 26px;
}

.footer-brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  width: 150px;
}

.footer-brand img {
  width: 130px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.46));
}

.footer-socials {
  grid-area: socials;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-socials a {
  position: relative;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(231, 210, 167, 0.56);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(231, 210, 167, 0.18), transparent 1.55rem),
    linear-gradient(145deg, rgba(212, 166, 74, 0.18), rgba(8, 8, 8, 0.82)),
    rgba(17, 17, 17, 0.92);
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(212, 166, 74, 0.18), 0 16px 34px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-socials a::after {
  content: attr(data-label);
  position: absolute;
  inset: auto auto calc(100% + 10px) 50%;
  padding: 5px 8px;
  border: 1px solid rgba(199, 148, 63, 0.36);
  border-radius: 6px;
  background: rgba(5, 4, 3, 0.92);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: var(--gold);
  background:
    linear-gradient(145deg, rgba(199, 148, 63, 0.22), rgba(193, 18, 31, 0.14)),
    rgba(8, 8, 8, 0.78);
  color: #fff;
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(199, 148, 63, 0.18), inset 0 0 0 1px rgba(242, 223, 184, 0.12);
}

.footer-socials a:hover::after,
.footer-socials a:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.footer-socials svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-inner p {
  grid-area: copy;
  margin: 0;
  color: var(--smoke);
  font-size: 0.94rem;
  text-align: right;
  align-self: end;
}

.footer-links {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: start;
  gap: 14px;
  margin-top: 8px;
}

.footer-links a {
  color: var(--red);
  font-family: "High Noon", Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.subpage {
  min-height: 100svh;
  background:
    linear-gradient(rgba(5, 4, 3, 0.88), rgba(5, 4, 3, 0.96)),
    url("assets/hn-gunslinger-west.jpeg") center / cover fixed;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 150px 74px;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.62), rgba(5, 4, 3, 0.92)),
    url("assets/hn-gunslinger-saloon.jpeg") center / cover;
  opacity: 0.9;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--paper);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(3rem, 9vw, 7.4rem);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 0.88;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--smoke);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.page-shell {
  padding-block: clamp(54px, 7vw, 90px);
}

.policy-layout,
.support-page-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.page-sidebar,
.policy-content,
.support-card,
.support-form,
.support-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 8, 6, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.page-sidebar {
  position: sticky;
  top: 108px;
  padding: 20px;
}

.page-sidebar img {
  width: 150px;
  margin-bottom: 18px;
}

.page-sidebar p {
  margin: 0 0 14px;
  color: var(--smoke);
}

.page-sidebar a,
.policy-content a,
.support-card a {
  color: var(--red);
  font-weight: 800;
}

.page-sidebar dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.page-sidebar dt {
  color: var(--red);
  font-family: "High Noon", Georgia, serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.page-sidebar dd {
  margin: 0;
  color: var(--paper);
}

.policy-content {
  padding: clamp(20px, 4vw, 42px);
}

.policy-content section {
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.policy-content section:first-child {
  padding-top: 0;
}

.policy-content section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-content h2,
.support-card h2,
.support-form h2,
.support-feature h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-family: "High Noon", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.support-feature h2 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  text-transform: none;
}

.policy-content h3 {
  margin: 22px 0 8px;
  color: var(--gold);
  font-size: 1.05rem;
}

.policy-content p,
.policy-content li,
.support-card p,
.support-feature p,
.support-form label {
  color: var(--smoke);
}

.policy-content ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding-left: 22px;
}

.support-page-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.support-stack {
  display: grid;
  gap: 18px;
}

.support-card,
.support-form,
.support-feature {
  padding: clamp(20px, 4vw, 34px);
}

.support-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.support-methods a {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.58);
  font-family: "High Noon", Georgia, serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.support-methods a::after {
  content: ">";
  color: var(--gold);
}

.support-form form {
  display: grid;
  gap: 14px;
}

.support-form input,
.support-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 223, 184, 0.34);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.72);
  color: var(--paper);
  font: inherit;
}

.support-form textarea {
  min-height: 150px;
  resize: vertical;
}

.support-form button {
  justify-self: start;
  cursor: pointer;
}

.support-feature {
  display: grid;
  gap: 16px;
}

.support-feature img {
  width: 104px;
}

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

  .brand {
    width: 128px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .language-toggle {
    min-width: 64px;
    min-height: 40px;
    padding-inline: 11px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    margin-left: 0;
    padding: 14px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 4, 3, 0.96);
    transform: translateY(-120%);
    transition: transform 190ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 52px;
    border-bottom: 1px solid rgba(242, 223, 184, 0.12);
    display: flex;
    align-items: center;
  }

  html[dir="rtl"] .language-switcher {
    margin-right: auto;
    margin-left: 0;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(5, 4, 3, 0.92) 0%, rgba(5, 4, 3, 0.62) 100%),
      linear-gradient(180deg, rgba(5, 4, 3, 0.32) 0%, #050403 100%);
  }

  .character-copy {
    width: min(100%, 520px);
  }

  .character-stage {
    inset: auto 0 4vh;
    width: 100%;
    height: 48vh;
  }

  .character-ring {
    height: 100%;
  }

  .character-card {
    width: clamp(118px, 30vw, 220px);
  }

  .character-card img {
    height: 48vh;
  }

  .character-card.is-active {
    --scale: 1.08;
  }

  .character-card.is-prev {
    --x: -170px;
    --scale: 0.74;
  }

  .character-card.is-next {
    --x: 170px;
    --scale: 0.74;
  }

  .character-card.is-far-prev {
    --x: -290px;
    --scale: 0.5;
  }

  .character-card.is-far-next {
    --x: 290px;
    --scale: 0.5;
  }

  .character-controls {
    width: max-content;
  }

  html[dir="rtl"] .character-copy {
    width: min(100%, 520px);
    margin-inline: auto;
    align-items: flex-start;
    text-align: right;
  }

  html[dir="rtl"] .character-copy h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 10vw, 6.3rem);
  }

  html[dir="rtl"] .character-stage {
    inset: auto 0 4vh;
    width: 100%;
  }

  .intro-layout,
  .preorder-layout,
  .world-grid,
  .policy-layout,
  .support-page-grid {
    grid-template-columns: 1fr;
  }

  .preorder-section {
    min-height: auto;
    padding-block: 96px 88px;
  }

  .preorder-bg {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.52) 48%, rgba(8, 8, 8, 0.94) 100%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.9)),
      url("assets/preorder/preorder-bg-wide.jpeg") center / cover;
  }

  .preorder-layout {
    gap: 42px;
  }

  .preorder-copy {
    max-width: 720px;
  }

  .preorder-copy h2 {
    font-size: clamp(4rem, 12vw, 7.2rem);
  }

  .preorder-ghost-scene {
    right: -12vw;
    bottom: 8%;
    width: min(78vw, 540px);
    opacity: 0.16;
  }

  .preorder-poster-wrap {
    width: min(100%, 440px);
  }

  .page-sidebar {
    position: static;
  }

  .world-panel-main {
    grid-row: auto;
  }

  .style-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
  }

  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .download-hero {
    min-height: auto;
    padding-block: 112px 64px;
  }

  .download-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .download-copy {
    max-width: 720px;
  }

  .download-showcase {
    width: min(100%, 430px);
  }

  .download-frame {
    transform: none;
  }

  .download-frame img {
    max-height: 680px;
  }

  .download-page .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "links";
    justify-items: center;
    text-align: center;
  }

  .download-page .footer-inner p,
  .download-page .footer-links {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .loader-card {
    width: calc(100% - 28px);
    gap: 12px;
    padding: 28px 18px 24px;
  }

  .loader-card img {
    width: min(64vw, 190px);
  }

  .loader-card span {
    font-size: clamp(2.35rem, 12vw, 3.05rem);
    text-align: center;
  }

  .loader-card strong {
    font-size: 0.94rem;
  }

  .loader-card p {
    font-size: 0.8rem;
    text-align: center;
  }

  .loader-meta em {
    font-size: 0.66rem;
  }

  .character-hero .hero-bg-layer::before {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.22) 0%, rgba(5, 4, 3, 0.38) 48%, rgba(5, 4, 3, 0.82) 100%),
      url("assets/hn-gunslinger-collage.jpg") center top / cover;
    background-attachment: fixed;
    filter: blur(2.5px) saturate(0.92) contrast(1.08);
    opacity: 1;
  }

  .character-hero .hero-bg-layer::after {
    background:
      radial-gradient(circle at 50% 34%, color-mix(in srgb, var(--hero-accent), transparent 28%) 0 7.5rem, transparent 19rem),
      radial-gradient(circle at 50% 73%, color-mix(in srgb, var(--hero-accent), transparent 58%) 0 10rem, transparent 26rem),
      linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--hero-dark), transparent 28%) 100%);
    opacity: 0.58;
  }

  .character-hero .hero-vignette {
    background:
      linear-gradient(90deg, rgba(5, 4, 3, 0.58) 0%, rgba(5, 4, 3, 0.1) 50%, rgba(5, 4, 3, 0.58) 100%),
      linear-gradient(180deg, rgba(5, 4, 3, 0.08) 0%, rgba(5, 4, 3, 0.04) 46%, #050403 100%);
  }

  .container,
  .hero-content {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    min-height: 68px;
    padding-inline: 12px;
  }

  .site-nav {
    inset-block-start: 68px;
  }

  .brand {
    width: 116px;
  }

  .download-hero {
    padding-block: 94px 52px;
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.68), rgba(5, 4, 3, 0.92) 62%, #050403),
      url("assets/download/download-showcase.png") center top / cover;
  }

  .download-shell {
    gap: 30px;
  }

  .download-copy h1 {
    font-size: clamp(2.45rem, 11.5vw, 3rem);
    line-height: 0.92;
    overflow-wrap: normal;
  }

  .download-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .download-platforms {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .download-platform {
    min-height: 82px;
    padding: 14px;
  }

  .platform-icon {
    width: 50px;
    height: 50px;
  }

  .download-specs {
    gap: 8px;
  }

  .download-specs span {
    min-height: 32px;
    font-size: 0.68rem;
  }

  .download-showcase {
    width: min(100%, 318px);
  }

  .download-frame img {
    max-height: 560px;
  }

  .download-showcase::after {
    inset-inline: 18%;
  }

  .character-mode-toggle {
    position: fixed;
    top: 78px;
    right: 12px;
    bottom: auto;
    left: auto;
    z-index: 32;
    width: 92px;
    min-width: 0;
    max-width: none;
    padding: 8px 9px 7px;
    text-align: center;
  }

  .character-mode-toggle span {
    font-size: 0.56rem;
    letter-spacing: 1.1px;
  }

  .character-mode-toggle strong {
    font-size: 0.94rem;
  }

  .hero-content {
    min-height: 94svh;
    padding-block: 104px 36px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(2.6rem, 13.4vw, 3.65rem);
    line-height: 0.94;
  }

  .character-hero {
    min-height: 104svh;
  }

  .character-copy {
    width: min(100% - 24px, var(--max));
    justify-content: flex-start;
    margin-inline: auto;
    min-height: 104svh;
    padding-block: 76px 34px;
  }

  .character-copy > .eyebrow,
  .character-copy > h1,
  .character-copy > .character-role,
  .character-copy > .rating,
  .character-copy > .hero-copy {
    order: 2;
  }

  .character-mobile-space {
    display: block;
    order: 1;
    height: clamp(430px, 55svh, 520px);
  }

  .character-name-wall {
    display: block;
    inset-block-start: 12svh;
    color: color-mix(in srgb, var(--hero-accent), transparent 48%);
    font-size: clamp(6rem, 30vw, 9.6rem);
    letter-spacing: 6px;
    opacity: 0.16;
    mix-blend-mode: screen;
  }

  .character-role {
    font-size: 1rem;
  }

  .rating span {
    width: 15px;
    height: 15px;
  }

  .character-stage {
    inset-inline: 0;
    top: clamp(82px, 11svh, 112px);
    bottom: auto;
    height: clamp(420px, 52svh, 510px);
  }

  html[dir="rtl"] .character-copy {
    width: min(100% - 24px, var(--max));
    margin-inline: auto;
    align-items: flex-start;
    text-align: right;
  }

  html[dir="rtl"] .character-copy h1 {
    max-width: 360px;
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: 0.95;
  }

  html[dir="rtl"] .character-stage {
    inset-inline: 0;
    top: clamp(82px, 11svh, 112px);
    bottom: auto;
  }

  .character-card {
    width: clamp(132px, 45vw, 220px);
  }

  .character-card img {
    height: clamp(410px, 52svh, 500px);
  }

  .character-card.is-active {
    --scale: 1;
  }

  .character-card.is-active::before {
    opacity: 0.46;
  }

  .character-card.is-prev {
    --x: -126px;
    --y: 26px;
    --scale: 0.7;
  }

  .character-card.is-next {
    --x: 126px;
    --y: 26px;
    --scale: 0.7;
  }

  .character-card.is-far-prev,
  .character-card.is-far-next {
    opacity: 0;
  }

  .carousel-arrow {
    width: 48px;
    height: 48px;
  }

  .character-controls {
    position: absolute;
    inset: clamp(286px, 34svh, 330px) auto auto 50%;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    gap: 0;
    width: min(270px, 76vw);
    margin-top: 0;
    padding: 0 2px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .character-controls .carousel-arrow {
    background: rgba(5, 4, 3, 0.56);
    border-color: rgba(242, 223, 184, 0.7);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.34);
    pointer-events: auto;
  }

  .character-controls span {
    display: none;
  }

  .character-controls strong {
    display: none;
  }

  .character-controls .carousel-arrow-right {
    grid-column: auto;
  }

  .hero-copy {
    margin-top: 22px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-actions {
    display: none;
  }

  .preorder-section {
    padding-block: 74px 72px;
  }

  .preorder-bg {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.48) 48%, rgba(8, 8, 8, 0.95) 100%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.24), rgba(8, 8, 8, 0.86)),
      url("assets/preorder/preorder-bg-wide.jpeg") center / cover;
  }

  .preorder-fog {
    opacity: 0.56;
  }

  .preorder-layout {
    gap: 30px;
  }

  .preorder-badge {
    margin-bottom: 18px;
    font-size: 0.82rem;
  }

  .preorder-copy h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: 0.88;
    letter-spacing: 1px;
  }

  .preorder-copy > p:not(.preorder-badge) {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .preorder-actions,
  .preorder-btn {
    width: 100%;
  }

  .preorder-btn {
    min-height: 54px;
  }

  .preorder-ghost-scene {
    right: 50%;
    bottom: 6%;
    width: min(88vw, 390px);
    opacity: 0.13;
    transform: translateX(50%) rotate(-2deg);
  }

  .preorder-poster-wrap {
    width: min(100%, 350px);
  }

  .poster-hanger {
    inset: -18px 13% auto;
  }

  .poster-hanger span {
    width: 15px;
    height: 38px;
  }

  .preorder-poster {
    min-height: 516px;
  }

  .poster-content {
    min-height: 516px;
    padding: 46px 36px 38px;
  }

  .poster-wanted {
    margin-bottom: 12px;
    font-size: 1.3rem;
    letter-spacing: 4px;
  }

  .poster-portrait {
    width: min(100%, 218px);
    height: 242px;
    margin-bottom: 16px;
  }

  .poster-content h3 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    letter-spacing: 1.4px;
  }

  .poster-content strong {
    font-size: 0.92rem;
    letter-spacing: 1.5px;
  }

  .poster-content p:last-child {
    max-width: 240px;
    font-size: 0.9rem;
  }

  .wanted-strip,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .wanted-strip div,
  .wanted-strip div:first-child {
    border-inline-start: 0;
    border-bottom: 1px solid var(--line);
  }

  .wanted-strip div:last-child {
    border-bottom: 0;
  }

  .wanted-card {
    transform: none;
  }

  .world-panel,
  .world-panel-main div {
    padding: 18px;
  }

  .style-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .style-copy {
    padding: 18px 18px 0;
  }

  .skin-showcase {
    min-height: 318px;
    border-top: 1px solid rgba(231, 210, 167, 0.13);
    border-left: 0;
  }

  .skin-showcase::before,
  .skin-showcase::after {
    inset: 14px;
  }

  .skin-hat-one {
    top: 28px;
    left: 18px;
    width: 41%;
    height: 24%;
  }

  .skin-hat-two {
    top: 25px;
    right: 16px;
    width: 42%;
    height: 25%;
  }

  .skin-shirt {
    left: 17px;
    bottom: 31px;
    width: 38%;
    height: 50%;
  }

  .skin-jacket {
    right: 17px;
    bottom: 31px;
    width: 45%;
    height: 56%;
  }

  .skin-belt {
    left: 36%;
    bottom: 15px;
    width: 34%;
    height: 20%;
  }

  .world-panel-main img,
  .media-grid figure,
  .media-grid img {
    min-height: 250px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "socials"
      "copy"
      "links";
    justify-items: center;
    gap: 18px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-socials {
    max-width: 330px;
  }

  .footer-inner p,
  .footer-links {
    justify-content: center;
    text-align: center;
  }

  .page-hero {
    padding-block: 118px 54px;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 10.6vw, 3.35rem);
    line-height: 0.96;
  }

  .support-methods {
    grid-template-columns: 1fr;
  }
}
