:root {
  --ns-paper: #f7f8f4;
  --ns-paper-2: #eef1ea;
  --ns-card: #ffffff;
  --ns-ink: #16211c;
  --ns-body: #3f4a44;
  --ns-muted: #5d6a63;
  --ns-line: #dbe1d7;
  --ns-forest: #14472f;
  --ns-forest-soft: #e6efe8;
  --ns-gold: #8a5a00;
  --ns-gold-soft: #f6efdd;
  --ns-gold-bright: #e3b23c;
  --ns-warn: #8c3310;
  --ns-warn-soft: #fbeae2;
  --ns-max: 1060px;
  --ns-serif: 'Petrona', Georgia, 'Times New Roman', serif;
  --ns-sans: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ns-mono: 'Spline Sans Mono', ui-monospace, 'Cascadia Mono', monospace;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--ns-paper);
  color: var(--ns-body);
  font-family: var(--ns-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ns-gold); }
a:hover, a:focus-visible { color: var(--ns-forest); }
h1, h2, h3, h4 { color: var(--ns-ink); font-family: var(--ns-serif); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 2.6vw + 1rem, 3rem); letter-spacing: -.01em; margin: 0 0 14px; }
h2 { font-size: clamp(1.5rem, 1.4vw + 1rem, 2.05rem); margin: 0 0 12px; }
h3 { font-size: 1.25rem; margin: 26px 0 8px; }
h4 { font-size: 1.0625rem; margin: 18px 0 6px; }
p { margin: 0 0 16px; }
strong, b { color: var(--ns-ink); }
.ns-wrap { width: min(100% - 32px, var(--ns-max)); margin-inline: auto; }
.ns-skip { position: absolute; left: -999px; top: 8px; }
.ns-skip:focus { left: 8px; z-index: 99; padding: 8px 12px; background: var(--ns-forest); color: var(--ns-paper); }
:focus-visible { outline: 2px solid var(--ns-gold); outline-offset: 2px; }
.ns-top { background: var(--ns-card); border-bottom: 1px solid var(--ns-line); }
.ns-top-in { display: flex; align-items: center; gap: 18px; padding-block: 12px; }
.ns-brand { display: inline-flex; flex: 0 0 auto; }
.ns-brand img { height: 46px; width: auto; border-radius: 10px; }
.ns-nav { display: flex; flex-wrap: wrap; gap: 2px 4px; margin-left: auto; }
.ns-nav a { padding: 6px 10px; border-radius: 8px; color: var(--ns-body); font-size: .9375rem; font-weight: 600; text-decoration: none; }
.ns-nav a:hover, .ns-nav a:focus-visible { background: var(--ns-forest-soft); color: var(--ns-forest); }
@media (max-width: 760px) { .ns-nav { width: 100%; margin-left: 0; overflow-x: auto; flex-wrap: nowrap; } }
.ns-hero { padding-block: 28px 8px; }
.ns-hero-art { border-radius: 18px; overflow: hidden; border: 1px solid var(--ns-line); }
.ns-hero-art img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.ns-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; align-items: start; margin-top: 24px; }
@media (max-width: 900px) { .ns-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; } }
.ns-kicker { display: inline-block; margin: 0 0 10px; padding: 4px 10px; border-radius: 999px;
  background: var(--ns-forest-soft); color: var(--ns-forest); font-family: var(--ns-mono); font-size: .75rem;
  letter-spacing: .08em; text-transform: uppercase; }
.ns-lede { font-size: 1.1875rem; line-height: 1.65; }
.ns-byline { margin: 0; font-size: .9375rem; color: var(--ns-muted); display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.ns-byline img { width: 38px; height: 38px; border-radius: 50%; }
.ns-byline a { color: var(--ns-ink); }
.ns-note-card { padding: 22px; border-radius: 16px; border: 1px solid var(--ns-line); background: var(--ns-card); }
.ns-note-n { display: flex; align-items: baseline; gap: 8px; font-family: var(--ns-serif); font-size: 3rem; line-height: 1; color: var(--ns-forest); margin: 0; }
.ns-note-n small { font-size: 1.125rem; color: var(--ns-muted); font-family: var(--ns-sans); }
.ns-note-card p { margin: 10px 0 0; font-size: .9375rem; }
.ns-note-badge { margin-top: 14px; }
.ns-note-badge img { width: 132px; height: auto; }
.ns-flag { margin: 20px 0 0; padding: 14px 16px; border-radius: 12px; border-left: 4px solid var(--ns-warn);
  background: var(--ns-warn-soft); color: #3a2317; font-size: .9375rem; }
.ns-flag strong { color: var(--ns-warn); }
.ns-access { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 16px; padding: 14px 16px; border-radius: 12px; border: 1px dashed var(--ns-line); background: var(--ns-card); }
.ns-access p { margin: 0; font-size: .9375rem; }
.ns-access strong::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px;
  border-radius: 50%; background: #2f8f56; }
.ns-btn, .ns-btn:link, .ns-btn:visited { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 22px; border-radius: 10px; background: var(--ns-forest); color: #ffffff;
  font-weight: 700; font-size: .9375rem; text-decoration: none; border: 1px solid var(--ns-forest); }
.ns-btn:hover, .ns-btn:focus-visible { background: #0f3624; color: #ffffff; }
.ns-btn--ghost, .ns-btn--ghost:link, .ns-btn--ghost:visited { background: transparent; color: var(--ns-forest); }
.ns-btn--ghost:hover, .ns-btn--ghost:focus-visible { background: var(--ns-forest-soft); color: var(--ns-forest); }
.ns-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 4px; }
.ns-sect { padding-block: 34px; border-top: 1px solid var(--ns-line); }
.ns-sect:first-of-type { border-top: 0; }
.ns-sect > .ns-wrap > p, .ns-sect > .ns-wrap > ul, .ns-sect > .ns-wrap > ol { max-width: 74ch; }
.ns-sect-alt { background: var(--ns-paper-2); }
.ns-lead { font-size: 1.0625rem; }
.ns-games { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: 0 0 18px; padding: 0; list-style: none; }
@media (max-width: 860px) { .ns-games { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .ns-games { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.ns-games > li { margin: 0; min-width: 0; }
.ns-game { display: flex; flex-direction: column; height: 100%; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--ns-line); background: var(--ns-card); color: var(--ns-ink); text-decoration: none; }
.ns-game img { width: 100%; aspect-ratio: 200 / 262; object-fit: cover; }
.ns-game b { display: block; padding: 8px 10px 2px; font-size: .9375rem; line-height: 1.3; }
.ns-game span { display: block; padding: 0 10px 10px; font-family: var(--ns-mono); font-size: .6875rem; color: var(--ns-muted); }
.ns-game:hover, .ns-game:focus-visible { border-color: var(--ns-forest); color: var(--ns-forest); }
.ns-provs { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 0; padding: 0; list-style: none; }
.ns-provs li { display: grid; place-items: center; height: 46px; padding: 6px 12px; border-radius: 10px;
  border: 1px solid var(--ns-line); background: var(--ns-card); }
.ns-provs img { max-height: 28px; width: auto; }
.ns-facts { width: 100%; border-collapse: collapse; margin: 6px 0 0; font-size: .9375rem;
  border: 1px solid var(--ns-line); border-radius: 12px; overflow: hidden; background: var(--ns-card); }
.ns-facts th, .ns-facts td { padding: 11px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--ns-line); }
.ns-facts th { width: 34%; color: var(--ns-ink); font-weight: 700; background: var(--ns-paper-2); }
.ns-facts tr:last-child > * { border-bottom: 0; }
.ns-table-wrap { overflow-x: auto; margin: 16px 0 0; border: 1px solid var(--ns-line); border-radius: 12px; background: var(--ns-card); }
.ns-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: .9375rem; }
.ns-table th, .ns-table td { padding: 11px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--ns-line); }
.ns-table thead th { background: var(--ns-forest); color: #ffffff; font-family: var(--ns-mono); font-size: .75rem;
  letter-spacing: .06em; text-transform: uppercase; }
.ns-table tbody tr:last-child td { border-bottom: 0; }
.ns-table td:first-child { color: var(--ns-ink); font-weight: 600; }
.ns-sw { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 8px; }
@media (max-width: 760px) { .ns-sw { grid-template-columns: minmax(0, 1fr); } }
.ns-sw-col { padding: 18px 20px; border-radius: 14px; border: 1px solid var(--ns-line); background: var(--ns-card); }
.ns-sw-col h3 { margin: 0 0 10px; font-size: 1.125rem; }
.ns-sw-col ul { margin: 0; padding-left: 20px; }
.ns-sw-col li { margin-bottom: 8px; }
.ns-sw-plus { border-top: 3px solid var(--ns-forest); }
.ns-sw-minus { border-top: 3px solid var(--ns-warn); }
.ns-crit { display: grid; gap: 12px; margin: 12px 0 0; padding: 0; list-style: none; }
.ns-crit li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 14px; align-items: baseline; }
.ns-crit b { font-family: var(--ns-mono); color: var(--ns-ink); }
.ns-crit span.ns-bar { grid-column: 1 / -1; height: 8px; border-radius: 4px; background: var(--ns-paper-2); overflow: hidden; }
.ns-crit span.ns-bar i { display: block; height: 100%; background: var(--ns-forest); border-radius: 4px; }
.ns-crit small { grid-column: 1 / -1; font-size: .875rem; color: var(--ns-muted); }
.ns-pays { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.ns-pays li { display: grid; place-items: center; width: 74px; height: 46px; border-radius: 10px;
  border: 1px solid var(--ns-line); background: var(--ns-card); }
.ns-pays img { width: 48px; height: 32px; }
.ns-steps { margin: 12px 0; padding: 0 0 0 0; list-style: none; counter-reset: ns-step; }
.ns-steps li { position: relative; margin: 0; padding: 10px 0 10px 44px; border-bottom: 1px dashed var(--ns-line); counter-increment: ns-step; }
.ns-steps li:last-child { border-bottom: 0; }
.ns-steps li::before { content: counter(ns-step); position: absolute; left: 0; top: 10px; width: 28px; height: 28px;
  border-radius: 50%; display: grid; place-items: center; background: var(--ns-forest-soft); color: var(--ns-forest);
  font-family: var(--ns-mono); font-size: .8125rem; font-weight: 700; }
.ns-note { margin: 12px 0 0; font-size: .875rem; color: var(--ns-muted); }
.ns-callout { margin: 18px 0; padding: 16px 18px; border-radius: 12px; background: var(--ns-gold-soft);
  border-left: 4px solid var(--ns-gold); }
.ns-callout p:last-child { margin-bottom: 0; }
.ns-author { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 16px; align-items: start;
  margin: 8px 0 16px; padding: 18px; border-radius: 14px; border: 1px solid var(--ns-line); background: var(--ns-card); }
.ns-author img { width: 72px; height: 72px; border-radius: 50%; }
.ns-author p { margin: 0 0 6px; }
.ns-author-name { font-family: var(--ns-serif); font-size: 1.25rem; color: var(--ns-ink); }
.ns-author-role { color: var(--ns-gold); font-size: .9375rem; }
.ns-faq { display: grid; gap: 10px; margin-top: 8px; }
.ns-faq details { border-radius: 12px; border: 1px solid var(--ns-line); background: var(--ns-card); }
.ns-faq summary { position: relative; padding: 15px 46px 15px 18px; cursor: pointer; list-style: none;
  color: var(--ns-ink); font-weight: 700; font-family: var(--ns-serif); font-size: 1.0625rem; }
.ns-faq summary::-webkit-details-marker { display: none; }
.ns-faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  color: var(--ns-gold); font-size: 1.25rem; }
.ns-faq details[open] summary::after { content: "\2212"; }
.ns-faq details > div { padding: 0 18px 16px; }
.ns-faq p { margin: 0; }
.ns-foot { margin-top: 30px; padding-block: 30px 22px; background: var(--ns-forest); color: #e7efe9; }
.ns-foot a { color: #ffffff; }
.ns-foot-grid { display: grid; grid-template-columns: 1.6fr repeat(2, minmax(0, 1fr)); gap: 26px; }
@media (max-width: 760px) { .ns-foot-grid { grid-template-columns: minmax(0, 1fr); } }
.ns-foot h2 { color: #ffffff; font-size: 1.125rem; margin-bottom: 8px; }
.ns-foot ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.ns-foot p, .ns-foot li { font-size: .9375rem; color: #e7efe9; }
.ns-foot-bottom { margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.22);
  display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: space-between; font-size: .8125rem; }
.ns-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.ns-badges span { padding: 4px 9px; border-radius: 8px; border: 1px solid rgba(255,255,255,.3);
  font-family: var(--ns-mono); font-size: .6875rem; }
.ns-legal { max-width: 780px; padding-block: 34px 20px; }
.ns-legal h1 { margin-bottom: 14px; }
.ns-legal h2 { margin-top: 26px; }
.ns-sect, .ns-legal { overflow-wrap: break-word; }
