:root {
  --page-bg: #050505;
  --page-surface: rgba(255, 255, 255, 0.055);
  --page-surface-strong: rgba(255, 255, 255, 0.078);
  --page-line: rgba(255, 255, 255, 0.12);
  --page-text: #f7f7f5;
  --page-muted: #aaaab0;
  --page-muted-strong: #d0d0d3;
  --page-orange: #ff8f14;
  --page-red: #ff4337;
  --catalog-likely: #72e08c;
  --catalog-caveat: #ff9f1a;
  --catalog-incompatible: #ff5b52;
  --page-radius: 26px;
  --page-wrap: 1120px;
}

html {
  background: var(--page-bg);
  color-scheme: dark;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--page-text);
  background:
    radial-gradient(circle at 14% -8%, rgba(255, 142, 33, 0.13), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(255, 67, 55, 0.07), transparent 34rem),
    var(--page-bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 50% 16%, rgba(255, 132, 22, 0.055), transparent 32rem);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

img,
video,
iframe { max-width: 100%; }

.wrap,
.nav,
main,
.site-footer .inner {
  width: min(var(--page-wrap), calc(100% - 48px));
  max-width: var(--page-wrap);
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border: 0;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: none;
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.site-header .nav {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 720;
  text-decoration: none;
}

.logo,
.logo-ix,
.cta-logo {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96);
  color: #050505;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name { font-weight: 720; }
.beta-tag { color: var(--page-muted); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 26px); }
.nav-links a:not(.nav-cta) { color: var(--page-muted-strong); font-size: 0.87rem; font-weight: 560; text-decoration: none; }
.nav-links a:not(.nav-cta):hover { color: #fff; text-decoration: none; }

.nav-cta,
.btn-primary,
.button,
.game-conversion-buy {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(110deg, var(--page-orange), var(--page-red));
  box-shadow: 0 14px 36px rgba(255, 83, 43, 0.22);
  color: #fff !important;
  font-weight: 740;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.nav-cta { min-height: 44px; padding: 11px 20px; }
.nav-cta:hover,
.btn-primary:hover,
.button:hover,
.game-conversion-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(255, 83, 43, 0.3);
  filter: saturate(1.08);
}

main { padding: 0; }

.doc-page,
.article,
.cat-hero,
main > article {
  padding-top: clamp(74px, 9vw, 126px);
  padding-bottom: clamp(88px, 10vw, 142px);
}

.doc-page > .wrap,
.article,
.cat-hero > .wrap {
  max-width: 920px;
}

.doc-page > .wrap > h1,
.doc-page > .wrap > .doc-lede,
.article > .kicker,
.article > h1,
.article > .lede,
.cat-hero > .wrap > .section-kicker,
.cat-hero > .wrap > h1,
.cat-hero > .wrap > p:first-of-type {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h1,
h2,
h3 {
  color: var(--page-text);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.doc-page h1,
.article h1,
.cat-hero h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  font-weight: 720;
}

.article h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); }
.doc-lede,
.lede,
.cat-hero > .wrap > p:first-of-type {
  max-width: 760px;
  margin-bottom: clamp(54px, 7vw, 78px);
  color: var(--page-muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.7;
}

.section-kicker,
.kicker {
  color: var(--page-muted-strong);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

p,
li,
dd,
.article p,
.article li { color: var(--page-muted); }
strong,
dt { color: var(--page-text); }

.doc-card,
.receipt-card,
.video-card,
.cta,
.game-conversion-card,
.proof-summary,
.install-checks > div,
.install-path,
.install-buy-panel {
  border: 1px solid var(--page-line);
  border-radius: var(--page-radius);
  background: var(--page-surface);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.doc-card {
  margin-bottom: 22px;
  padding: clamp(26px, 4vw, 42px);
}

.doc-card h2,
.doc-card h3 { text-align: left; }
.doc-card h2 { margin: 0 0 18px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.doc-card h3 { margin: 32px 0 10px; }
.doc-card p,
.doc-card li { color: var(--page-muted); font-size: 1rem; line-height: 1.75; }
.doc-card a { color: #fff; }

.support-contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 93, 48, 0.11), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.036));
}

.support-contact-card::before {
  position: absolute;
  top: 0;
  right: clamp(30px, 8vw, 96px);
  left: clamp(30px, 8vw, 96px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 143, 20, 0.9), rgba(255, 67, 55, 0.9), transparent);
  content: "";
}

.support-contact-intro { max-width: 720px; }
.support-contact-intro > p:last-child { margin-bottom: 0; }
.support-contact-kicker {
  margin: 0 0 12px;
  color: #ffad55 !important;
  font-size: 0.72rem !important;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  margin-top: clamp(28px, 4vw, 42px);
  gap: 22px;
}

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

.contact-form .field {
  display: grid;
  min-width: 0;
  gap: 9px;
}

.contact-form label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--page-text) !important;
  font-size: 0.88rem;
  font-weight: 650;
}

.contact-form .field-meta {
  color: var(--page-muted);
  font-size: 0.68rem;
  font-weight: 580;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"],
.contact-form textarea,
.cat-search {
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"],
.contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  border-radius: 14px;
  outline: none;
  background: rgba(0, 0, 0, 0.28);
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"] {
  min-height: 54px;
  padding: 0 17px;
}

.contact-form textarea {
  min-height: 168px;
  padding: 15px 17px;
  line-height: 1.55;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #77777e; opacity: 1; }

.contact-form input:focus,
.contact-form textarea:focus,
.cat-search:focus {
  border-color: rgba(255, 143, 20, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 143, 20, 0.13);
}

.contact-form input:focus,
.contact-form textarea:focus { background: rgba(255, 255, 255, 0.075); }

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-form-actions .btn-primary {
  min-width: 168px;
  cursor: pointer;
  gap: 10px;
}

.contact-form-note {
  margin: 0;
  color: var(--page-muted) !important;
  font-size: 0.78rem !important;
  line-height: 1.5 !important;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.article { max-width: 760px; }
.article.video-watch-page { max-width: 980px; }
.article h2 { margin-top: 58px; font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.article h3 { margin-top: 36px; }
.article a { color: #fff; }
.byline,
.breadcrumbs,
.breadcrumbs a { color: var(--page-muted); }

.article-hero-image,
.video-frame,
.video-card img {
  overflow: hidden;
  border: 1px solid var(--page-line);
  border-radius: var(--page-radius);
  background: #111;
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.36);
}

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

.video-card,
.receipt-card { overflow: hidden; }
.video-card img { display: block; width: 100%; border: 0; border-radius: 0; box-shadow: none; }
.video-card-body,
.receipt-card { padding: 26px; }
.video-card h2,
.receipt-card h3 { margin: 14px 0 10px; font-size: 1.45rem; }
.video-card p,
.receipt-card p { color: var(--page-muted); line-height: 1.65; }
.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 143, 20, 0.12);
  color: #ffb15c;
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-summary { padding: 28px; }
.proof-summary > div { border-color: rgba(255, 255, 255, 0.08) !important; }

.cta,
.game-conversion-card { padding: clamp(28px, 4vw, 44px); text-align: center; }
.article > .cta {
  display: grid;
  justify-items: center;
  gap: 18px;
}
.article > .cta .cta-logo { margin: 0 0 8px; }
.article > .cta h2 {
  max-width: 720px;
  margin: 0;
  text-wrap: balance;
}
.article > .cta > p,
.article > .cta .cta-fine { margin-top: 0; margin-bottom: 0; }
.article > .cta .button { margin-top: 4px; }
.cta h2,
.cta p { margin-right: auto; margin-left: auto; }
.cta p { max-width: 620px; }

.cat-hero {
  padding-top: clamp(84px, 9vw, 116px);
  padding-bottom: clamp(42px, 5vw, 64px);
}
.catalog-page {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}
.cat-hero > .wrap {
  display: grid;
  width: min(var(--page-wrap), calc(100% - 48px));
  max-width: var(--page-wrap);
  justify-items: center;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.cat-hero > .wrap > h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  text-wrap: balance;
}
.cat-hero > .wrap > p:first-of-type {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.6;
}
.cat-note { max-width: 760px; margin: 22px auto 0; color: var(--page-muted); text-align: center; }
.legend {
  width: fit-content;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
.legend i,
.g-dot {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.045);
}
.legend .status-likely,
.v-will .g-dot { background: var(--catalog-likely) !important; }
.legend .status-caveat,
.v-maybe .g-dot { background: var(--catalog-caveat) !important; }
.legend .status-incompatible,
.v-wont .g-dot { background: var(--catalog-incompatible) !important; }
.receipt-links { margin: 72px auto 96px; }
.receipt-links > h2,
.receipt-links > p,
.receipt-links > p:last-child { text-align: center; }
.cat-tools {
  position: sticky;
  z-index: 12;
  top: 80px;
  border: 0;
  background: rgba(5, 5, 5, 0.86);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.cat-tools .wrap { align-items: center; }
.cat-search {
  border-color: rgba(255, 255, 255, 0.11) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  color: var(--page-text);
}
.cat-search::placeholder { color: rgba(255, 255, 255, 0.38); }
.cat-search:focus {
  border-color: rgba(255, 143, 20, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(255, 143, 20, 0.13) !important;
}
.seg {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.055) !important;
}
.seg button {
  color: var(--page-muted);
  transition: color 160ms ease, background-color 160ms ease;
}
.seg button:hover { color: var(--page-text); }
.seg button.on { background: rgba(255, 255, 255, 0.94); color: #050505; }
.cat-count { color: var(--page-muted-strong) !important; }
.cat-list { padding-top: 32px; padding-bottom: 110px; }
.game-row,
.g-row,
.cat-row,
.game-item {
  border-color: rgba(255, 255, 255, 0.09) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--page-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
.g-row {
  transition: border-color 160ms ease, background-color 160ms ease,
    box-shadow 160ms ease, transform 160ms ease;
}
.g-row:hover {
  border-color: rgba(255, 143, 64, 0.28) !important;
  background: rgba(255, 255, 255, 0.065) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}
.g-name { color: var(--page-text); }
.g-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.g-details { color: var(--page-muted); }
.g-status {
  display: inline-flex;
  flex: none;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
}
.v-will .g-status {
  border-color: rgba(114, 224, 140, 0.3);
  background: rgba(114, 224, 140, 0.12);
  color: #9af0ae;
}
.v-maybe .g-status {
  border-color: rgba(255, 159, 26, 0.34);
  background: rgba(255, 159, 26, 0.13);
  color: #ffbd61;
}
.v-wont .g-status {
  border-color: rgba(255, 91, 82, 0.34);
  background: rgba(255, 91, 82, 0.13);
  color: #ff8d86;
}
.g-reason { color: var(--page-muted); }
.g-reason strong { color: var(--page-muted-strong); }
.search-answer {
  border-color: rgba(255, 255, 255, 0.09) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
.search-answer h2 { color: var(--page-text); }
.search-answer p { color: var(--page-muted); }
.search-answer a,
.receipt-card a { color: #fff; }

.install-hero { text-align: center; }
.install-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 14px;
}
.hero-fineprint {
  max-width: 760px;
  margin: 0 auto;
  color: var(--page-muted);
  text-align: center;
}
.install-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 38px auto 28px;
  padding: 0;
  border: 0;
  background: transparent;
}
.install-checks > div {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--page-line);
  border-radius: 18px;
  background: var(--page-surface);
  text-align: left;
}
.install-checks strong,
.install-checks span { display: block; }
.install-checks strong { margin-bottom: 5px; color: var(--page-text); }
.install-checks span { color: var(--page-muted); font-size: 0.9rem; line-height: 1.45; }
.install-buy-panel {
  display: grid;
  gap: clamp(34px, 4vw, 52px);
  margin-top: clamp(54px, 7vw, 84px);
  padding: clamp(38px, 5vw, 68px);
  text-align: center;
}
.install-buy-panel .proof-purchase-copy {
  display: grid;
  justify-items: center;
}
.install-buy-panel .proof-purchase-kicker {
  margin: 0 0 20px;
  color: var(--page-muted-strong);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.4;
}
.install-buy-panel h2 {
  max-width: 1440px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 7rem);
  line-height: 0.98;
  text-wrap: balance;
}
.install-buy-panel .proof-purchase-copy > p:last-child {
  max-width: 960px;
  margin: clamp(24px, 3vw, 34px) 0 0;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}
.install-buy-panel .proof-purchase-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
}
.install-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.install-steps li { border-color: rgba(255, 255, 255, 0.09); }
.install-steps span { color: var(--page-muted); }

table { border-color: var(--page-line); color: var(--page-muted); }
th { color: var(--page-text); }
td,
th { border-color: rgba(255, 255, 255, 0.09) !important; }
code { background: rgba(255, 255, 255, 0.08); color: #ffd3a5; }
hr { border-color: rgba(255, 255, 255, 0.09); }

.site-footer {
  margin: 0;
  padding: 64px 0 44px;
  border: 0;
  background: #040404;
  color: var(--page-muted);
}

.site-footer .wrap,
.site-footer .inner { text-align: center; }
.footer-top { justify-content: center; }
.footer-brand { justify-content: center; }
.footer-links { justify-content: center; padding: 0; }
.footer-links a,
.site-footer a { color: var(--page-muted-strong); }
.footer-legal { max-width: 760px; margin: 24px auto 0; padding: 0; border: 0; }

.page-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2,.72,.2,1), transform 700ms cubic-bezier(.2,.72,.2,1);
}

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

@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .video-grid,
  .receipt-grid { grid-template-columns: 1fr; }
  .doc-page,
  .article,
  .cat-hero { padding-top: 72px; }
  .install-checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .wrap,
  .nav,
  main,
  .site-footer .inner { width: min(100% - 28px, var(--page-wrap)); }
  .site-header .nav { min-height: 68px; }
  .nav-cta { padding: 10px 15px; font-size: 0.84rem; }
  .doc-card { padding: 24px 20px; }
  .support-contact-card { padding: 28px 20px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .contact-form-actions .btn-primary { width: 100%; }
  .cat-tools { top: 68px; }
  .cat-hero > .wrap > h1 { font-size: clamp(2.55rem, 12vw, 3.7rem); }
  .cat-hero > .wrap { width: min(100% - 28px, var(--page-wrap)); }
  .g-row { grid-template-columns: 10px minmax(0, 1fr); align-items: start; }
  .g-meta {
    grid-column: 2;
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
  }
  .g-reason { grid-column: 2; }
  .install-checks,
  .install-grid { grid-template-columns: 1fr; }
  .install-actions .btn-primary,
  .install-actions .btn-quiet { width: 100%; justify-content: center; }
  .install-buy-panel {
    gap: 28px;
    padding: 32px 20px;
  }
  .install-buy-panel h2 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .install-buy-panel .proof-purchase-actions,
  .install-buy-panel .proof-purchase-actions a { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .page-reveal { opacity: 1; transform: none; transition: none; }
}
