:root {
  --page: #f1f0ec;
  --surface: #ffffff;
  --soft: #e9e9e5;
  --ink: #101820;
  --muted: #5f6770;
  --line: #cfd3d4;
  --line-strong: #9ca5ac;
  --green: #1e4d7a;
  --green-dark: #15395b;
  --gold: #946824;
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --content: 1120px;
}

* { box-sizing: border-box; }
html { background: var(--page); }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.site-header {
  min-height: 60px;
  padding: 8px max(20px, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 4px solid var(--green);
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-brand span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}

.site-brand strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.site-header nav,
.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header nav a,
.site-footer a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer a:hover {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.editorial-main {
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding: 58px 24px 90px;
}

.article-shell {
  max-width: 860px;
  margin: 0 auto;
}

.article-header {
  max-width: 780px;
  margin-bottom: 34px;
}

.kicker {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.article-header h1,
.landing-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.03em;
}

.article-deck,
.landing-hero .deck {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.prose { font-size: 17px; }
.prose h2 {
  margin: 48px 0 12px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}
.prose h3 {
  margin: 30px 0 8px;
  font-size: 19px;
  font-weight: 800;
}
.prose p { margin: 0 0 20px; }
.prose ul { padding-left: 22px; }
.prose li { margin: 8px 0; }
.prose strong { font-weight: 800; }

.callout {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--green);
  background: #e5edf4;
}

.article-cta {
  margin-top: 56px;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--green);
  border-radius: 0;
  background: var(--surface);
}
.article-cta h2 {
  margin: 0 0 10px;
  font-size: 27px;
  line-height: 1.15;
}
.article-cta p:not(.kicker) { color: var(--muted); }

.button-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 0;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.button-link:hover { background: var(--green-dark); }

.ad-slot {
  margin: 34px 0;
  display: grid;
  place-items: center;
  border: 1px dashed #bfc4c7;
  border-radius: 0;
  background: #e8e8e4;
  overflow: hidden;
  color: #8b9196;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .12em;
}
.ad-slot-wide { min-height: 120px; }
.ad-slot-inline { min-height: 250px; }
.ad-slot > span { padding: 10px; }

.ad-preview-creative {
  width: 100%;
  min-height: inherit;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
}
.ad-preview-creative div { max-width: 580px; }
.ad-preview-creative small {
  display: block;
  margin-bottom: 6px;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.ad-preview-creative strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}
.ad-preview-creative p { margin: 7px 0 0; opacity: .84; }
.ad-preview-creative b {
  padding: 9px 13px;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  white-space: nowrap;
  font-size: 12px;
}

.site-footer {
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding: 34px 24px 46px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}
.site-footer p {
  max-width: 560px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.landing-hero {
  max-width: 900px;
  margin-bottom: 44px;
}

.landing-grid,
.set-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.content-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--line-strong);
  border-radius: 0;
  background: var(--surface);
}
.content-card h2,
.content-card h3 {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.content-card p { margin: 0; color: var(--muted); }
.content-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.set-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.set-metrics div {
  padding: 10px;
  border-radius: 0;
  background: var(--soft);
}
.set-metrics strong { display: block; font-size: 18px; }
.set-metrics span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.market-card { min-width: 0; }
.market-card img {
  width: 100%;
  aspect-ratio: 63 / 88;
  object-fit: cover;
  border-radius: 0;
  background: #ddd;
}
.market-card strong {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.3;
}
.market-card a {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 750;
}

.affiliate-note {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid #cfc5b2;
  border-radius: 0;
  background: #f4f0e7;
  color: #665638;
  font-size: 12px;
}

.table-wrap { overflow: auto; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.data-table th,
.data-table td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 13px;
}
.data-table th {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.home-editorial {
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding: 12px 24px 72px;
}
.home-editorial .editorial-rule {
  margin: 10px 0 36px;
  border: 0;
  border-top: 1px solid var(--line);
}
.home-editorial-head { max-width: 800px; }
.home-editorial-head h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.025em;
}
.home-editorial-head p {
  color: var(--muted);
  font-size: 16px;
}
.home-editorial .guide-grid { margin-top: 24px; }
.home-editorial .content-card h3 { font-size: 17px; }
.is-game .home-editorial { display: none; }

.market-link {
  display: inline-block;
  margin-left: 8px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rank-row .market-link { margin-left: auto; }
.feedback-grid .market-link { margin-left: 0; }
.affiliate-mini {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    border-top-width: 3px;
  }
  .site-header nav { gap: 12px; }
  .editorial-main { padding: 44px 18px 68px; }
  .landing-grid,
  .set-grid,
  .guide-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { flex-direction: column; }
  .ad-preview-creative {
    align-items: flex-start;
    flex-direction: column;
  }
  .set-metrics { grid-template-columns: 1fr 1fr; }
  .home-editorial {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.ad-slot[hidden] { display: none !important; }
