:root {
  --red: #d91624;
  --red-bright: #ff3442;
  --red-dark: #8f0d18;
  --maroon: #5d070f;
  --ink: #08090d;
  --ink-2: #121319;
  --panel: #1b1d24;
  --saffron: #ff9f1c;
  --gold: #f4c64e;
  --ivory: #fff8ed;
  --ivory-2: #f7eddd;
  --teal: #0f8b8d;
  --blue: #1d5fd2;
  --text: #17171b;
  --muted: #6f6c69;
  --line: rgba(27, 20, 20, 0.13);
  --white: #fff;
  --shadow: 0 18px 50px rgba(68, 6, 13, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand strong,
.button {
  letter-spacing: -0.025em;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h2 span,
h1 span {
  color: var(--red);
}

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

.sr-only {
  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: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 9px 22px rgba(217, 22, 36, 0.26);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ff4652, #ad0d1a);
}

.button-secondary {
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header-h);
  color: var(--white);
  background: rgba(8, 9, 13, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  width: 43px;
  height: 43px;
  padding: 6px;
  object-fit: contain;
  background: linear-gradient(145deg, #2b2d34, #090a0e);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 950;
}

.brand small {
  margin-top: 4px;
  color: #bcbcc2;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.menu-button {
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 12px;
  display: grid;
  align-content: center;
  gap: 5px;
  background: #202127;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  width: 22px;
  height: 2px;
  margin-inline: auto;
  display: block;
  background: #fff;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: absolute;
  width: 100%;
  color: #fff;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
}

.mobile-links {
  padding-top: 12px;
  padding-bottom: 18px;
  display: grid;
}

.mobile-links > a:not(.button) {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px;
  color: #e8e8eb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-weight: 750;
}

.mobile-links > a[aria-current="page"] {
  color: var(--gold);
}

.mobile-links .button {
  margin-top: 14px;
}

.eyebrow {
  margin-bottom: 9px;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 52, 66, 0.27), transparent 33%),
    linear-gradient(145deg, #06070a 0 56%, #2b050a 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 42%, rgba(255, 255, 255, 0.08) 43% 44%, transparent 45%),
    linear-gradient(150deg, transparent 42%, rgba(255, 255, 255, 0.06) 43% 44%, transparent 45%);
  background-size: 42px 72px;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 0;
}

.home-hero-copy {
  position: relative;
  z-index: 3;
}

.official-badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  color: #ffe8e9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 760;
}

.official-badge i {
  width: 8px;
  height: 8px;
  background: var(--red-bright);
  border: 2px solid #ff8c95;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 52, 66, 0.13);
}

.hero-kicker {
  margin: 24px 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 720px;
  margin-bottom: 17px;
  font-size: clamp(2.35rem, 13vw, 6.7rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-hero h1 em {
  color: var(--red-bright);
  font-style: normal;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 22px;
  color: #c8c8cd;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero .button-secondary,
.section-dark .button-secondary,
.section-help .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-facts {
  max-width: 620px;
  margin-top: 27px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts span {
  min-width: 0;
  padding-inline: 10px;
  display: grid;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts small {
  color: #999aa1;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.hero-facts strong {
  font-size: 0.92rem;
}

.fact-note {
  max-width: 610px;
  margin: 9px 0 0;
  color: #83848a;
  font-size: 0.7rem;
}

.home-hero-art {
  position: relative;
  min-height: 390px;
  margin: 14px -16px 0;
  isolation: isolate;
}

.home-hero-art img {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(100%, 570px);
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.sun-disc {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -95px;
  width: min(100vw, 490px);
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--saffron), var(--red));
  border: 14px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(217, 22, 36, 0.35);
}

.floating-tag {
  position: absolute;
  z-index: 4;
  min-width: 118px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(12, 13, 17, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  font-size: 0.7rem;
  font-weight: 750;
}

.floating-tag b {
  margin-right: 4px;
  color: var(--gold);
  font-size: 0.95rem;
}

.tag-one {
  top: 45px;
  left: 8px;
}

.tag-two {
  right: 10px;
  bottom: 23px;
}

.quick-strip {
  color: #fff;
  background: var(--red);
  overflow: hidden;
}

.quick-strip .container {
  width: max-content;
  min-width: 100%;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.quick-strip span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-strip span::after {
  content: "◆";
  margin-inline: 11px;
  color: var(--gold);
  font-size: 0.48rem;
}

.quick-strip span:last-child::after {
  display: none;
}

.section {
  padding: 64px 0;
}

.section-ivory {
  background: var(--ivory);
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(217, 22, 36, 0.14) 72%),
    var(--ink-2);
}

.section-saffron {
  color: #1c1207;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(135deg, #ffb11d, #ff8717);
}

.section-steps {
  background: #f1e5d3;
}

.section-help {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 80%, rgba(255, 159, 28, 0.2), transparent 35%),
    linear-gradient(135deg, var(--maroon), var(--ink) 65%);
}

.section-head {
  margin-bottom: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-head h2,
.steps-shell h2,
.help-shell h2,
.resource-banner h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 9vw, 4.3rem);
  font-weight: 950;
  letter-spacing: -0.055em;
}

.section-dark .section-head h2 span {
  color: var(--gold);
}

.section-saffron .section-head h2 span {
  color: var(--maroon);
}

.section-dark .eyebrow {
  color: var(--gold);
}

.section-saffron .eyebrow {
  color: var(--maroon);
}

.text-link {
  min-height: 44px;
  flex: 0 0 auto;
  display: none;
  align-items: center;
  color: var(--red);
  font-weight: 850;
}

.section-dark .text-link {
  color: var(--gold);
}

.section-intro {
  max-width: 760px;
  margin: -12px 0 27px;
  color: var(--muted);
}

.campaign-rail,
.creative-rail {
  margin-inline: -16px;
  padding: 3px 16px 16px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.campaign-rail::-webkit-scrollbar,
.creative-rail::-webkit-scrollbar {
  display: none;
}

.campaign-card {
  width: min(78vw, 280px);
  flex: 0 0 auto;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.campaign-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #160407;
}

.campaign-card span {
  min-height: 54px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  color: #bdbdc3;
  font-size: 0.69rem;
}

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

.game-tile {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  isolation: isolate;
  background: #202129;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
}

.game-tile::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(4, 4, 7, 0.95));
}

.game-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.game-tile > span {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 17px 13px;
  display: grid;
}

.game-tile strong {
  font-size: 1rem;
}

.game-tile small {
  color: #b6b7bd;
  font-size: 0.7rem;
}

.creative-card {
  width: 158px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(76, 29, 0, 0.18);
}

.creative-card img {
  width: 100%;
  aspect-ratio: 345 / 520;
  object-fit: cover;
  object-position: top;
}

.creative-card span {
  min-height: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  font-size: 0.83rem;
  font-weight: 850;
}

.steps-shell {
  display: grid;
  gap: 34px;
}

.steps-host {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, var(--red-bright), var(--maroon) 65%);
  border-radius: 28px;
}

.steps-host::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
}

.steps-host img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96%;
  margin: auto;
  object-fit: contain;
  object-position: center bottom;
}

.steps-shell h2 span {
  color: var(--red);
}

.steps-list {
  margin: 27px 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps-list li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.steps-list li > b {
  color: var(--red);
  font-size: 1.2rem;
  font-style: italic;
}

.steps-list strong {
  font-size: 1.05rem;
}

.steps-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.guide-grid {
  display: grid;
  gap: 14px;
}

.guide-card {
  min-height: 270px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(43, 27, 20, 0.06);
}

.guide-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 13px;
  font-weight: 900;
}

.guide-card small {
  margin: 23px 0 8px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin-bottom: 9px;
  font-size: 1.38rem;
}

.guide-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-card b {
  margin-top: auto;
  color: var(--red);
  font-size: 0.85rem;
}

.help-shell {
  display: grid;
  align-items: end;
}

.help-shell > div {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

.help-shell h2 {
  margin-bottom: 16px;
}

.help-shell > div > p:not(.eyebrow) {
  max-width: 650px;
  color: #c7c7cc;
}

.help-shell img {
  width: 250px;
  max-height: 380px;
  margin: 20px auto -64px;
  object-fit: contain;
  object-position: center bottom;
}

.page-hero {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 52, 66, 0.28), transparent 34%),
    linear-gradient(145deg, #090a0e, #26060a);
}

.page-hero-grid {
  min-height: 470px;
  padding-top: 35px;
  display: grid;
  align-items: center;
  gap: 20px;
}

.page-hero h1,
.article-hero h1 {
  max-width: 780px;
  margin-bottom: 17px;
  font-size: clamp(2.8rem, 12vw, 6rem);
  font-weight: 950;
  letter-spacing: -0.065em;
}

.page-hero .lede,
.article-hero .lede {
  max-width: 680px;
  color: #c8c8cd;
  font-size: 1rem;
}

.page-hero .hero-actions {
  margin-top: 23px;
}

.page-hero-art {
  height: 330px;
  position: relative;
}

.page-hero-art::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -110px;
  left: 0;
  width: min(100%, 390px);
  aspect-ratio: 1;
  margin: auto;
  background: linear-gradient(135deg, var(--saffron), var(--red));
  border-radius: 50%;
  box-shadow: 0 0 65px rgba(217, 22, 36, 0.3);
}

.page-hero-art img {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center bottom;
}

.breadcrumbs {
  min-height: 34px;
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #999aa1;
  font-size: 0.73rem;
  font-weight: 720;
}

.breadcrumbs a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.article-hero {
  padding: 60px 0;
  color: #fff;
  background: linear-gradient(145deg, var(--ink), var(--maroon));
}

.article-hero .breadcrumbs {
  color: #aaaab0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.article-meta span {
  min-height: 34px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  color: #dddde0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.7rem;
}

.content-layout {
  display: grid;
  gap: 35px;
}

.article {
  min-width: 0;
}

.article > h2 {
  margin: 45px 0 15px;
  font-size: clamp(1.7rem, 7vw, 2.7rem);
  font-weight: 920;
}

.article > h2:first-child {
  margin-top: 0;
}

.article > h3 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
}

.article p,
.article li {
  color: #464340;
}

.article a:not(.button) {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.coming-banner {
  padding: 19px;
  display: grid;
  align-items: center;
  gap: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--maroon));
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.coming-banner > span {
  width: max-content;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coming-banner strong {
  font-size: 1.15rem;
}

.coming-banner p {
  margin: 3px 0 0;
  color: #bbbcc2;
  font-size: 0.84rem;
}

.spec-grid,
.info-grid,
.feature-list,
.support-grid {
  display: grid;
  gap: 12px;
}

.spec {
  min-height: 110px;
  padding: 18px;
  display: grid;
  align-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.spec small {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec strong {
  margin-top: 3px;
  font-size: 1.05rem;
}

.spec strong.pending {
  color: var(--red);
}

.notice {
  margin: 24px 0;
  padding: 17px 18px;
  color: #5b3b03 !important;
  background: #fff1c7;
  border-left: 4px solid var(--saffron);
  border-radius: 0 14px 14px 0;
}

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

.check-list li {
  position: relative;
  margin-bottom: 9px;
  padding: 13px 14px 13px 43px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.article-cta {
  margin-top: 42px;
  padding: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 159, 28, 0.25), transparent 37%),
    linear-gradient(135deg, var(--red-dark), var(--ink));
  border-radius: 22px;
}

.article-cta h3 {
  margin-bottom: 9px;
  font-size: 1.6rem;
}

.article-cta p {
  color: #d0d0d4;
}

.article-cta .button {
  margin-top: 5px;
}

.related-aside {
  display: grid;
  align-content: start;
  gap: 14px;
}

.aside-card,
.aside-note {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.aside-card h2 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.aside-card > a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.87rem;
  font-weight: 790;
}

.aside-card > a span {
  color: var(--red);
}

.aside-note {
  color: #fff;
  background: var(--ink);
  border: 0;
}

.aside-note strong {
  color: var(--gold);
}

.aside-note p {
  margin: 8px 0 0;
  color: #b5b5ba;
  font-size: 0.85rem;
}

.install-timeline {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.install-timeline li {
  position: relative;
  padding: 0 0 27px 57px;
}

.install-timeline li::before {
  content: "";
  position: absolute;
  top: 43px;
  bottom: 3px;
  left: 20px;
  width: 2px;
  background: #e4c4c7;
}

.install-timeline li:last-child::before {
  display: none;
}

.install-timeline li > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 900;
}

.install-timeline h3 {
  margin-bottom: 6px;
  font-size: 1.17rem;
}

.install-timeline p {
  margin-bottom: 0;
}

.info-grid > div,
.feature-list > div {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.info-grid b,
.feature-list span,
.support-grid b {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-grid h3,
.feature-list h3 {
  margin: 9px 0 7px;
  font-size: 1.13rem;
}

.info-grid p,
.feature-list p {
  margin: 0;
  font-size: 0.88rem;
}

.support-grid a {
  min-height: 180px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 14px 28px rgba(43, 27, 20, 0.05);
}

.support-grid h2 {
  margin: 12px 0 8px;
  color: var(--text);
  font-size: 1.35rem;
}

.support-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-layout {
  display: grid;
  gap: 45px;
}

.faq-group h2 {
  margin-bottom: 17px;
  font-size: 2rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 64px;
  padding: 15px 0;
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 820;
  list-style: none;
}

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

.faq-list summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  font-size: 1.15rem;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -2px 42px 20px 0;
  color: var(--muted);
}

.resource-banner {
  padding: 28px;
  display: grid;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(217, 22, 36, 0.45), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 23px;
}

.resource-banner h2 {
  margin-bottom: 12px;
}

.resource-banner p:not(.eyebrow) {
  margin-bottom: 0;
  color: #c5c5ca;
}

.not-found {
  min-height: calc(100svh - var(--header-h));
  padding: 70px 0;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(217, 22, 36, 0.33), transparent 38%),
    var(--ink);
}

.not-found img {
  width: 90px;
  margin: auto;
}

.error-code {
  margin: 16px 0 -4px;
  color: var(--red-bright);
  font-size: clamp(4.8rem, 24vw, 9rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 1;
}

.not-found h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 10vw, 4rem);
}

.not-found p:not(.error-code) {
  color: #bcbcc2;
}

.not-found .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 55px 0 22px;
  color: #fff;
  background: #050609;
}

.footer-top {
  display: grid;
  gap: 38px;
}

.footer-brand p {
  max-width: 410px;
  margin: 17px 0;
  color: #999aa1;
  font-size: 0.85rem;
}

.official-chip {
  min-height: 32px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  color: #f4d5d7;
  background: rgba(217, 22, 36, 0.16);
  border: 1px solid rgba(255, 52, 66, 0.22);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
}

.footer-groups h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-groups a {
  min-height: 34px;
  display: flex;
  align-items: center;
  color: #92939a;
  font-size: 0.8rem;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #686970;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
}

.coming-dialog {
  width: min(430px, calc(100% - 28px));
  max-width: 430px;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  border-radius: 23px;
}

.coming-dialog::backdrop {
  background: rgba(2, 3, 5, 0.82);
}

.coming-card {
  position: relative;
  padding: 31px 24px 25px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 100% 0, rgba(217, 22, 36, 0.17), transparent 37%),
    var(--ivory);
  border-radius: 23px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.coming-card > img {
  width: 72px;
  height: 72px;
  margin: 0 auto 17px;
  padding: 9px;
  object-fit: contain;
  background: var(--ink);
  border-radius: 18px;
}

.coming-card h2 {
  margin-bottom: 10px;
  font-size: 2.1rem;
}

.coming-card > p:not(.eyebrow) {
  margin-bottom: 20px;
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #5d5753;
  background: #eee4d7;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
}

.coming-card > .button {
  position: static;
  width: 100%;
  border-radius: 12px;
  font-size: 0.93rem;
}

@media (min-width: 600px) {
  .container {
    width: min(1160px, calc(100% - 48px));
  }

  .section {
    padding: 78px 0;
  }

  .text-link {
    display: inline-flex;
  }

  .campaign-rail,
  .creative-rail {
    margin-inline: 0;
    padding-inline: 0;
  }

  .campaign-card {
    width: 300px;
  }

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

  .guide-grid,
  .info-grid,
  .feature-list,
  .support-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coming-banner {
    grid-template-columns: max-content 1fr;
  }

  .coming-banner .button {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 599px) {
  .home-hero .hero-actions,
  .page-hero .hero-actions,
  .not-found .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero .hero-actions .button,
  .page-hero .hero-actions .button,
  .not-found .hero-actions .button {
    width: 100%;
  }
}

@media (min-width: 800px) {
  :root {
    --header-h: 78px;
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .desktop-nav a {
    min-height: 44px;
    padding: 11px 10px;
    display: inline-flex;
    align-items: center;
    color: #bfc0c5;
    border-radius: 9px;
    font-size: 0.76rem;
    font-weight: 780;
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
  }

  .header-cta {
    display: inline-flex;
    min-height: 44px;
    margin-left: 6px;
    padding: 11px 15px;
    font-size: 0.79rem;
  }

  .menu-button,
  .mobile-panel {
    display: none !important;
  }

  .home-hero-grid {
    min-height: calc(100svh - var(--header-h));
    padding-top: 70px;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
    align-items: center;
  }

  .home-hero-art {
    min-height: 620px;
    margin: 0 -5vw 0 -80px;
    align-self: end;
  }

  .sun-disc {
    right: 1vw;
    bottom: -100px;
    width: min(48vw, 580px);
  }

  .tag-one {
    top: 120px;
    left: 180px;
  }

  .tag-two {
    right: 20px;
    bottom: 55px;
  }

  .quick-strip .container {
    width: min(1160px, calc(100% - 48px));
    justify-content: space-between;
  }

  .steps-shell,
  .help-shell {
    grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.22fr);
    gap: 70px;
  }

  .steps-host {
    min-height: 570px;
  }

  .help-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  }

  .help-shell img {
    width: 340px;
    max-height: 490px;
    margin-bottom: -78px;
  }

  .page-hero-grid {
    min-height: 560px;
    padding-top: 40px;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  }

  .page-hero-art {
    height: 490px;
    align-self: end;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 55px;
  }

  .related-aside {
    position: sticky;
    top: calc(var(--header-h) + 22px);
  }

  .resource-banner {
    grid-template-columns: 1fr max-content;
    padding: 42px;
  }

  .footer-top {
    grid-template-columns: 0.9fr 1.45fr;
    gap: 70px;
  }

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

@media (min-width: 1080px) {
  .desktop-nav {
    gap: 8px;
  }

  .desktop-nav a {
    padding-inline: 13px;
    font-size: 0.81rem;
  }

  .home-hero-art img {
    width: 640px;
  }

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

  .game-tile {
    min-height: 245px;
  }

  .campaign-card {
    width: 330px;
  }

  .coming-banner {
    grid-template-columns: max-content 1fr max-content;
  }

  .coming-banner .button {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
