:root {
  color-scheme: dark;
  /* In-game menu palette — sourced from MenuColorPalette.cs so the site stays
     visually coherent with the game's UI. */
  --bg: #050403;
  --panel-fill: rgb(10, 8, 6);
  --panel-fill-mini: rgb(14, 11, 8);
  --slot-fill: rgb(18, 15, 12);
  --slot-inner: rgb(37, 30, 22);
  --slot-border: rgb(43, 34, 23);
  --panel-border: rgb(94, 73, 38);
  --panel-border-dim: rgb(58, 46, 30);
  --title: rgb(246, 192, 66);
  --body: rgb(225, 221, 214);
  --header-text: rgb(235, 231, 222);
  --muted: rgb(198, 190, 178);
  --footer-text: rgb(201, 194, 184);
  --warm-glow: rgb(255, 191, 72);
  --lower-glow: rgb(255, 139, 61);
  --positive: rgb(96, 214, 88);
  --shadow: rgba(0, 0, 0, 0.65);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--body);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 139, 61, 0.18), transparent 45%),
    radial-gradient(circle at 50% 120%, rgba(94, 73, 38, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(18, 13, 9, 0.94), rgba(5, 4, 3, 0.98)),
    var(--bg);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, transparent 60%, rgba(0, 0, 0, 0.55) 100%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 2px, transparent 2px 4px);
}

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

a {
  color: var(--warm-glow);
}

a:hover,
a:focus-visible {
  color: var(--lower-glow);
}

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.hero {
  padding: 48px 0 28px;
}

.hero__inner,
.panel,
.footer {
  background: linear-gradient(180deg, var(--panel-fill-mini), var(--panel-fill));
  border: 1px solid var(--panel-border);
  box-shadow:
    0 24px 60px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 28px rgba(255, 191, 72, 0.06);
  border-radius: 22px;
}

.hero__inner {
  text-align: center;
  padding: 36px 24px 40px;
  overflow: hidden;
  position: relative;
}

.hero__inner::before,
.panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(246, 192, 66, 0.08);
  pointer-events: none;
}

.hero__eyebrow,
.status-pill,
.hero__actions a,
.section-heading a,
.footer a,
.comparison__tag {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__eyebrow {
  margin: 0 0 18px;
  color: var(--title);
  font-weight: 700;
  font-size: 0.78rem;
}

.hero__title {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.hero__logo {
  width: min(100%, 820px);
  margin: 0 auto 22px;
  height: auto;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 22px rgba(255, 191, 72, 0.18));
}

.hero__subtitle {
  width: min(100%, 720px);
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--header-text);
}

.hero__note {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.hero__actions a,
.section-heading a,
.footer a {
  text-decoration: none;
}

.hero__actions a,
.section-heading a {
  border: 1px solid rgba(246, 192, 66, 0.4);
  background: linear-gradient(180deg, rgba(94, 73, 38, 0.55), rgba(43, 34, 23, 0.85));
  color: var(--warm-glow);
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hero__actions a:hover,
.hero__actions a:focus-visible,
.section-heading a:hover,
.section-heading a:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 191, 72, 0.85);
  color: var(--warm-glow);
  box-shadow: 0 0 22px rgba(255, 139, 61, 0.25);
}

.content {
  display: grid;
  gap: 20px;
}

.panel {
  position: relative;
  padding: 28px 24px;
}

.panel h2,
.footer p {
  margin-top: 0;
}

.panel h2 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--title);
  text-shadow: 0 0 18px rgba(255, 191, 72, 0.18);
}

.panel p,
.footer p {
  margin-bottom: 0;
  color: var(--body);
  line-height: 1.75;
  font-size: 1rem;
}

.panel p strong {
  color: var(--header-text);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--warm-glow);
  box-shadow: 0 0 8px rgba(255, 191, 72, 0.6);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(246, 192, 66, 0.32);
  background: rgba(255, 191, 72, 0.08);
  color: var(--title);
  font-size: 0.78rem;
  font-weight: 700;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.comparison__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison__item img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--slot-border);
  background: #000;
  box-shadow:
    0 16px 36px var(--shadow),
    inset 0 0 0 1px rgba(255, 191, 72, 0.04);
}

.comparison__item figcaption {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.comparison__tag {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(246, 192, 66, 0.32);
  background: rgba(255, 191, 72, 0.08);
  color: var(--title);
  font-size: 0.72rem;
  font-weight: 700;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--slot-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.watch__caption {
  margin-top: 14px !important;
  color: var(--muted) !important;
  font-size: 0.95rem !important;
}

.footer {
  margin-top: 20px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  align-items: center;
}

.footer p {
  color: var(--footer-text);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: var(--warm-glow);
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 18px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero__inner,
  .panel,
  .footer {
    border-radius: 18px;
  }

  .hero__inner,
  .panel,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions a,
  .section-heading a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section-heading {
    align-items: flex-start;
  }

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
