:root {
  color-scheme: light;
  --bg: #f4f2eb;
  --surface: #fffdf8;
  --tint: #eaece6;
  --text: #171d22;
  --muted: #4f5b60;
  --line: #cdd2ce;
  --accent: #2457e6;
  --accent-hover: #173db0;
  --max: 1160px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--accent);
  text-underline-offset: 3px;
}
a:hover {
  color: var(--accent-hover);
}
button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
  border-radius: 3px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  font-weight: 750;
}
h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 720;
}
h3 {
  font-size: 1.25rem;
  font-weight: 680;
  letter-spacing: -0.02em;
}
p {
  color: var(--muted);
}
strong {
  color: var(--text);
  font-weight: 650;
}
section[id],
h2[id],
h3[id],
p[id],
main[id] {
  scroll-margin-top: 100px;
}
.wrap {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 10px 18px;
  background: var(--surface);
  font-weight: 700;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 235, 0.97);
}
.nav-wrap {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 750;
  letter-spacing: -0.035em;
}
.brand:hover {
  color: var(--text);
}
.brand img {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
}
.desktop-nav a:hover {
  color: var(--accent);
}
.nav-download {
  background: var(--text);
  color: var(--surface);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.85rem;
  padding: 9px 17px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nav-download:hover {
  background: var(--accent);
  color: white;
}
.mobile-menu {
  display: none;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 13px 22px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  line-height: 1.5;
  transition:
    background-color 0.15s,
    box-shadow 0.15s;
}
.button:hover {
  color: white;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 5px 16px #173db018;
}
.button.secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}
.button.secondary:hover {
  background: var(--surface);
  border-color: #8a9690;
}
.hero {
  padding-top: 70px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(3.7rem, 7.8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 22px auto 26px;
}
.hero h1 span {
  color: var(--accent);
}
.hero-lede {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  max-width: 690px;
  margin-inline: auto;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.download-meta {
  font-size: 0.78rem;
  margin-top: 12px;
}
.milestone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.86rem;
  margin: 26px 0 34px;
  color: var(--text);
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: var(--accent);
  flex-shrink: 0;
}
.screenshot {
  min-width: 0;
  margin: 0;
}
.screenshot a {
  display: block;
  border: 1px solid #333c43;
  border-radius: 11px;
  overflow: hidden;
  background: #0e1013;
}
.screenshot img {
  width: 100%;
}
.hero .screenshot a {
  box-shadow: 0 24px 70px -30px #19224465;
  border-radius: 13px;
}
.screenshot figcaption {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}
.section {
  padding-block: 84px;
}
.section-tint {
  background: var(--tint);
  border-block: 1px solid var(--line);
}
.section-heading {
  margin-bottom: 34px;
  max-width: 750px;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.section-heading h2 + p,
.section-heading h1 + p {
  font-size: 1.08rem;
  margin-top: 16px;
  max-width: 670px;
}
.heading-row {
  max-width: none;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: end;
}
.text-link {
  font-weight: 650;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.text-link:hover {
  text-decoration: underline;
}
.heading-row > a {
  flex-shrink: 0;
  padding-bottom: 4px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 32px;
}
.feature {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 15px;
  line-height: 1;
}
.feature p {
  margin-top: 12px;
  font-size: 0.95rem;
}
.screenshots-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.section-note {
  margin-top: 24px;
  font-size: 0.9rem;
  max-width: 850px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.support-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}
.support-heading h3 {
  font-size: 1.35rem;
}
.support-heading div > span {
  font-size: 0.82rem;
  color: var(--muted);
  display: block;
  margin-top: 5px;
}
.provider-logo {
  flex: 0 0 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ecede7;
}
.provider-logo img {
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
}
.provider-logo.steam {
  background: #142535;
}
.provider-logo.xbox {
  background: #ecf3e5;
}
.support-card > p {
  margin-top: 20px;
  font-size: 0.96rem;
}
.support-card > a {
  margin-top: 20px;
  font-size: 0.9rem;
}
.import-explainer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin-top: 30px;
}
.import-explainer h3 {
  font-size: 1.03rem;
}
.import-explainer p {
  font-size: 0.9rem;
  margin-top: 9px;
}
.steps {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.steps li > span {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 18px;
}
.steps li {
  border-top: 1px solid #b7c0b7;
  padding-top: 20px;
}
.steps p {
  margin-top: 12px;
  font-size: 0.95rem;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.guide-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  transition:
    border-color 0.15s,
    background-color 0.15s;
}
.guide-card:hover {
  background: #fff;
  color: var(--text);
  border-color: var(--accent);
}
.guide-card h3 {
  margin: 12px 0 24px;
  font-size: 1.19rem;
  line-height: 1.3;
}
.guide-card .eyebrow {
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}
.card-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 650;
  margin-top: auto;
}
.faq-section {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  padding: 20px 34px 20px 0;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  position: absolute;
  right: 4px;
  top: 15px;
  color: var(--accent);
  font-weight: 400;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details > div {
  padding: 0 28px 22px 0;
  font-size: 0.95rem;
}
.download-section {
  border-top: 1px solid var(--line);
  padding-block: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.download-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: 10px;
}
.download-section h2 + p {
  margin-top: 14px;
}
.download-block {
  flex-shrink: 0;
  text-align: center;
}
.download-block > p {
  margin: 12px 0 2px;
  font-size: 0.76rem;
}
.download-block > p a,
.small-link {
  color: var(--muted);
}
.small-link {
  font-size: 0.74rem;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 40px max(32px, calc((100% - var(--max)) / 2)) 24px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}
.footer-top > p {
  font-size: 0.84rem;
}
.footer-top > nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: auto;
  font-size: 0.82rem;
}
.site-footer nav a {
  text-decoration: none;
  color: var(--muted);
}
.site-footer a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
}
.trademarks {
  font-size: 0.7rem;
  margin-top: 14px;
}
.article-wrap {
  width: min(850px, calc(100% - 64px));
  margin: 0 auto;
  padding: 40px 0 72px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 38px;
}
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}
.article-header .eyebrow {
  margin-bottom: 16px;
}
.article-header h1 {
  font-size: clamp(2.2rem, 4.7vw, 3.35rem);
  max-width: 820px;
}
.article-answer {
  font-size: 1.13rem;
  line-height: 1.75;
  margin-top: 24px;
  color: #35424a;
}
.article-meta {
  font-size: 0.79rem;
  margin-top: 22px;
}
.article-meta a {
  color: var(--muted);
}
.contents {
  margin: 32px 0 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 20px 24px;
  font-size: 0.92rem;
}
.contents ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.contents li {
  margin-top: 5px;
}
.contents a {
  text-decoration: none;
}
.contents a:hover {
  text-decoration: underline;
}
.article-body section + section {
  margin-top: 42px;
}
.article-body h2 {
  font-size: 1.7rem;
  margin: 0 0 18px;
  line-height: 1.25;
}
.article-body h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
}
.article-body p {
  margin-bottom: 16px;
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin: 14px 0 20px;
  color: var(--muted);
}
.article-body li {
  margin-bottom: 10px;
  padding-left: 3px;
}
.article-body .screenshot {
  margin-top: 24px;
}
.article-body .screenshot figcaption {
  margin-bottom: 24px;
}
.article-body code {
  font-family: Consolas, monospace;
  font-size: 0.92em;
  padding: 2px 5px;
  background: #e3e7df;
  border-radius: 4px;
  overflow-wrap: anywhere;
}
.table-wrap {
  overflow-x: auto;
  margin-block: 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: left;
}
th,
td {
  padding: 16px;
  vertical-align: top;
}
th {
  background: var(--tint);
  font-weight: 650;
}
td {
  border-top: 1px solid var(--line);
}
.article-body .sources {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.sources h2 {
  font-size: 1.05rem;
}
.sources ul {
  font-size: 0.84rem;
}
.article-download {
  background: #e6ebfc;
  border: 1px solid #c3cff3;
  padding: 26px;
  margin-top: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.article-download h2 {
  font-size: 1.45rem;
}
.article-download p {
  margin-top: 8px;
  font-size: 0.9rem;
}
.article-download .button {
  flex-shrink: 0;
  font-size: 0.9rem;
  gap: 12px;
}
.related {
  margin-top: 48px;
}
.related > h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.related > a {
  margin-top: 22px;
  font-size: 0.9rem;
}
.related .guide-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.guide-index {
  padding-block: 66px 88px;
}
.guide-index .section-heading {
  margin-bottom: 26px;
}
.guide-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 42px;
}
.guide-categories a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.86rem;
  padding: 7px 14px;
  text-decoration: none;
}
.guide-category + .guide-category {
  margin-top: 44px;
}
.guide-category > h2 {
  margin-bottom: 20px;
  font-size: 1.7rem;
}
.legal {
  padding-top: 54px;
  max-width: 800px;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.legal > h1 {
  margin-bottom: 14px;
}
.legal h2 {
  margin-top: 40px;
}
.legal address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 20px;
}
.legal .lede {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  color: var(--accent);
}
.legal .updated,
.legal .lang-jump {
  font-size: 0.86rem;
}
.legal .note {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.legal .divider {
  margin-block: 48px;
  border: 0;
  border-top: 1px solid var(--line);
}
.not-found {
  padding-block: 100px 140px;
  text-align: center;
  min-height: 60vh;
}
.not-found h1 {
  margin: 16px 0 24px;
}
.not-found p {
  max-width: 580px;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .nav-wrap {
    gap: 22px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-top > nav {
    margin-left: 0;
  }
  .footer-top > p {
    flex-basis: calc(100% - 230px);
  }
  .feature-grid {
    column-gap: 26px;
  }
}
@media (max-width: 760px) {
  .wrap,
  .nav-wrap,
  .article-wrap {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    min-height: 66px;
    gap: 16px;
  }
  .brand {
    font-size: 1.1rem;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .desktop-nav,
  .nav-download {
    display: none;
  }
  .mobile-menu {
    display: block;
    margin-left: auto;
  }
  .mobile-menu summary {
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 7px 12px;
    font-weight: 600;
    font-size: 0.84rem;
  }
  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 20px;
    left: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 14px 25px #171d221a;
    padding: 10px;
    border-radius: 9px;
  }
  .mobile-menu nav a {
    color: var(--text);
    padding: 11px 14px;
    font-weight: 600;
    text-decoration: none;
  }
  .mobile-menu nav a:hover {
    background: var(--tint);
  }
  .hero {
    padding-top: 48px;
  }
  .hero h1 {
    font-size: clamp(3.65rem, 11.5vw, 5.5rem);
  }
  .hero .eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.1em;
  }
  .desktop-break {
    display: none;
  }
  .hero-lede {
    font-size: 1.03rem;
    max-width: 470px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .milestone {
    margin-top: 22px;
    font-size: 0.8rem;
  }
  .section {
    padding-block: 56px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading h2 + p {
    font-size: 1rem;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
  .feature h3 {
    font-size: 1.14rem;
  }
  .screenshots-grid {
    gap: 18px;
  }
  .support-grid,
  .import-explainer {
    gap: 18px;
  }
  .support-card {
    padding: 22px;
  }
  .support-heading {
    align-items: flex-start;
    gap: 12px;
  }
  .support-heading h3 {
    font-size: 1.14rem;
  }
  .provider-logo {
    flex-basis: 46px;
    height: 46px;
    border-radius: 8px;
  }
  .provider-logo img {
    max-width: 34px;
    max-height: 34px;
  }
  .steps {
    gap: 22px;
  }
  .steps h3 {
    font-size: 1.1rem;
  }
  .guide-card {
    padding: 20px;
  }
  .guide-card h3 {
    font-size: 1.08rem;
  }
  .faq-section {
    display: block;
    padding-top: 0;
  }
  .faq-section .section-heading {
    margin-bottom: 26px;
  }
  .download-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-block: 42px;
  }
  .download-block {
    text-align: left;
  }
  .site-footer {
    padding: 30px 20px 24px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .article-wrap {
    padding-top: 28px;
  }
  .breadcrumbs {
    margin-bottom: 30px;
  }
  .article-answer {
    font-size: 1.05rem;
  }
  .article-body h2 {
    font-size: 1.5rem;
  }
  .article-download {
    flex-direction: column;
    align-items: flex-start;
  }
  .guide-index {
    padding-top: 44px;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: clamp(3.25rem, 13vw, 4.1rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    margin-inline: auto;
  }
  .hero .button {
    justify-content: space-between;
  }
  .milestone {
    gap: 7px;
    font-size: 0.76rem;
  }
  .screenshot figcaption {
    font-size: 0.64rem;
  }
  .screenshot a,
  .hero .screenshot a {
    border-radius: 6px;
  }
  .feature-grid {
    gap: 26px 22px;
  }
  .feature-mark {
    margin-bottom: 12px;
  }
  .feature p {
    font-size: 0.88rem;
  }
  .screenshots-grid,
  .support-grid,
  .import-explainer,
  .steps,
  .guide-grid,
  .related .guide-grid {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    gap: 22px;
    margin-top: 30px;
  }
  .import-explainer {
    gap: 24px;
  }
  .steps {
    gap: 26px;
  }
  .steps li {
    padding-top: 15px;
  }
  .steps li > span {
    margin-bottom: 10px;
  }
  .heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .guide-card h3 {
    margin-bottom: 18px;
    font-size: 1.16rem;
  }
  .contents {
    padding: 18px;
    font-size: 0.86rem;
  }
  .article-header h1 {
    font-size: 2.25rem;
  }
  .article-body {
    font-size: 0.96rem;
  }
  .article-meta {
    font-size: 0.73rem;
  }
  .article-download {
    padding: 22px;
  }
  th,
  td {
    padding: 11px;
  }
  table {
    font-size: 0.81rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
