/* ==========================================
   Play Picks · editorial print magazine UI
   ========================================== */

:root {
  --paper:        #fbf6ec;
  --paper-2:      #f4ecdb;
  --paper-card:   #ffffff;
  --ink:          #1c1a16;
  --ink-soft:     #3a342c;
  --ink-mute:     #6b6357;
  --ink-faint:    #978d7d;
  --rule:         #d9cdb4;
  --rule-strong:  #b9aa8c;
  --accent:       #b53d1e;
  --accent-soft:  #e6c7ba;
  --accent-2:     #38593f;
  --shadow-card:  0 1px 0 rgba(0,0,0,0.04), 0 20px 40px -28px rgba(72,52,30,0.25);
  --radius:       6px;
  --radius-lg:    10px;
  --maxw:         1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  background-image:
    radial-gradient(rgba(28,26,22,0.018) 1px, transparent 1px),
    radial-gradient(rgba(28,26,22,0.018) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
  color: var(--ink-soft);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1.12; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.3; }

p { color: var(--ink-soft); }
em { font-style: italic; color: var(--accent); }

a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .18s ease; }
a:hover { color: var(--accent-2); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

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

/* ============ Cookie banner ============ */
.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 50;
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper-card);
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  padding: 14px 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.18);
}
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.cookie-text { flex: 1 1 320px; margin: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.cookie-text a { color: var(--accent); margin-left: 4px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-cookie {
  border: 1px solid var(--ink);
  background: var(--paper-card);
  color: var(--ink);
  padding: 7px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: background .15s ease, color .15s ease;
}
.btn-cookie-ghost:hover { background: var(--paper-2); }
.btn-cookie-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-cookie-primary:hover { background: var(--accent); border-color: var(--accent); }

/* ============ Header ============ */
.navbar {
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(251, 246, 236, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
}
.site-logo:hover { color: var(--accent); }
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.primary-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.primary-nav a {
  display: inline-block;
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 2px;
  transition: background .15s, color .15s;
}
.primary-nav a:hover { background: var(--paper-2); color: var(--ink); }
.primary-nav .nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 7px 16px;
  margin-left: 8px;
}
.primary-nav .nav-cta:hover { background: var(--accent); color: var(--paper); }
.issue-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  border-left: 1px solid var(--rule);
  padding-left: 16px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-block { width: 100%; }

.ext-icon { display: inline-block; font-size: 0.95em; opacity: 0.85; }

/* ============ Sections base ============ */
.section { padding: 96px 0; position: relative; }
.section + .section { border-top: 1px solid var(--rule); }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: left;
}
.section-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rule-strong);
}
.section-head h2 { margin-bottom: 14px; }
.section-lead { color: var(--ink-mute); font-size: 1.05rem; max-width: 640px; }

/* ============ Hero ============ */
.hero {
  padding: 80px 0 64px;
  position: relative;
}
.hero-inner { max-width: 980px; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-kicker { color: var(--accent); }
.hero-divider {
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 240px;
}
.hero-title {
  margin-bottom: 26px;
  font-weight: 700;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 36px;
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pill-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============ Why list ============ */
.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.why-item {
  padding: 32px 32px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}
.why-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
  font-style: italic;
}
.why-item h3 { margin-bottom: 10px; }
.why-item p { font-size: 0.95rem; }

/* ============ Catalog disclosure ============ */
.catalog-disclosure {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 16px 20px;
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}
.catalog-disclosure strong { color: var(--ink); font-style: normal; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.92rem; }

/* ============ Games grid ============ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.card {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: border-color .2s, transform .2s;
}
.game-card { display: flex; flex-direction: column; }
.game-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.game-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.game-icon {
  width: 72px; height: 72px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--rule);
}
.game-meta { flex: 1; min-width: 0; }
.game-title { font-size: 1.25rem; margin-bottom: 4px; }
.developer { font-size: 13px; color: var(--ink-faint); margin-bottom: 10px; }
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--paper-2);
  border: 1px solid var(--rule-strong);
  text-transform: uppercase;
}
.game-desc { font-size: 0.95rem; flex: 1; margin-bottom: 18px; }
.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.shots img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--rule);
  display: block;
}

/* ============ Categories ============ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category {
  padding: 28px 22px;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  text-align: left;
  transition: transform .2s, border-color .2s;
}
.category:hover { transform: translateY(-3px); border-color: var(--ink); }
.cat-code {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  padding: 3px 9px;
  background: var(--paper-2);
  border-radius: 3px;
  margin-bottom: 14px;
}
.category h3 { margin-bottom: 8px; font-size: 1.15rem; }
.category p { font-size: 0.93rem; color: var(--ink-mute); }

/* ============ Method ============ */
.method-list {
  list-style: none;
  padding: 0;
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.method-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.method-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.method-body h3 { margin-bottom: 8px; }
.method-body p { font-size: 0.97rem; }

/* ============ Compare table ============ */
.compare-wrap {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.compare-table thead th {
  background: var(--paper-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  border-bottom: 1px solid var(--rule-strong);
}
.compare-table tbody th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--paper-2); }

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  transition: background .2s;
}
.faq-item[open] { background: var(--paper-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  transition: transform .2s, background .2s, color .2s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--ink); color: var(--paper); }
.faq-body { padding: 0 4px 22px; }
.faq-body p { color: var(--ink-soft); font-size: 0.95rem; max-width: 720px; }

/* ============ Editorial notice (push CTA) ============ */
.section-notice {
  background: var(--paper-2);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 18px,
      rgba(28,26,22,0.025) 18px,
      rgba(28,26,22,0.025) 19px
    );
}
.notice-frame {
  max-width: 620px;
  margin: 0 auto;
  padding: 10px;
  border: 1.5px dashed var(--rule-strong);
  border-radius: 2px;
  background: transparent;
  position: relative;
}
.notice-frame::before,
.notice-frame::after {
  content: "✂";
  position: absolute;
  top: -14px;
  font-size: 18px;
  color: var(--ink-faint);
  background: var(--paper-2);
  padding: 0 8px;
  transform: rotate(-90deg);
}
.notice-frame::before { left: 24px; }
.notice-frame::after { right: 24px; transform: rotate(90deg); }
.notice-card {
  padding: 44px 44px 36px;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  text-align: center;
}
.notice-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
  margin-bottom: 30px;
}
.notice-stamp { color: var(--accent); }
.notice-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 22px;
}
.notice-title em {
  font-style: italic;
  color: var(--accent);
}
.notice-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.orn-line {
  height: 1px;
  width: 60px;
  background: var(--rule-strong);
}
.orn-mark {
  font-size: 18px;
  color: var(--accent);
  font-style: italic;
}
.notice-body { max-width: 460px; margin: 0 auto; }
.notice-body p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.notice-body p em { font-style: italic; color: var(--accent); }
.notice-tags {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute) !important;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.notice-tags span { display: inline-block; }
.notice-tags-sep { color: var(--accent); }

.notice-perforation {
  margin: 32px auto 28px;
  width: 80%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--rule-strong) 50%, transparent 0);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}

.notice-cta {
  width: 100%;
  max-width: 380px;
  padding: 16px 24px;
  letter-spacing: 0.03em;
}
.notice-cta:disabled { opacity: 0.7; cursor: default; }

.push-state {
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid transparent;
  font-size: 13px;
  text-align: center;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.push-state[data-kind="ok"] {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: rgba(56,89,63,0.08);
}
.push-state[data-kind="warn"] {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(181,61,30,0.06);
}

.notice-foot {
  max-width: 420px;
  margin: 22px auto 0;
  font-size: 11px;
  color: var(--ink-faint);
  line-height: 1.55;
}
.notice-foot a { color: var(--accent); }

.notice-sign {
  margin-top: 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
}

@media (max-width: 640px) {
  .notice-card { padding: 32px 24px 26px; }
  .notice-frame::before,
  .notice-frame::after { display: none; }
  .notice-head { flex-direction: column; gap: 4px; align-items: flex-start; }
}

/* ============ Trust block ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  padding: 24px 22px;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
}
.trust-icon {
  font-size: 22px;
  color: var(--accent);
  width: 36px; height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--rule-strong);
  margin-bottom: 14px;
}
.trust-item h4 { margin-bottom: 6px; }
.trust-item p { font-size: 0.9rem; color: var(--ink-mute); }

/* ============ Push modal ============ */
.push-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: pm-in .25s ease;
}
.push-modal[hidden] { display: none; }
.push-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 22, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.push-modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 40px 32px 32px;
  background: var(--paper-card);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 50px 100px -30px rgba(28,26,22,0.5);
  animation: pm-card-in .3s cubic-bezier(.2,.7,.3,1.1);
}
.push-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--rule-strong);
  color: var(--ink-mute);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
}
.push-modal-close:hover { background: var(--ink); color: var(--paper); transform: rotate(90deg); }
.push-modal-icon {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  font-size: 28px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
}
.push-modal-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.push-modal-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 22px; }
.push-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.push-modal-state {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
}
.push-modal-state[data-kind="ok"] {
  background: rgba(56,89,63,0.1);
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
}
.push-modal-state[data-kind="warn"] {
  background: rgba(181,61,30,0.08);
  border: 1px solid var(--accent);
  color: var(--accent);
}
@keyframes pm-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pm-card-in { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .push-modal, .push-modal-card { animation: none; }
}

/* ============ Footer ============ */
.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--rule-strong);
  padding: 64px 0 28px;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p { margin-top: 14px; color: var(--ink-mute); max-width: 320px; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 1.05rem; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rule-strong);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; }
.footer-col a { color: var(--ink-mute); font-size: 14px; text-decoration: none; }
.footer-col a:hover { color: var(--accent); }
.footer-col li { color: var(--ink-mute); font-size: 14px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  text-align: center;
  color: var(--ink-faint);
  font-size: 13px;
}

/* ============ Legal pages ============ */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0;
}
.page-content h1 { margin-bottom: 28px; }
.page-content h2 { margin-top: 36px; margin-bottom: 14px; font-size: 1.5rem; }
.page-content h3 { margin-top: 22px; margin-bottom: 10px; }
.page-content p { margin-bottom: 16px; }
.page-content ul { margin: 14px 0 18px 24px; }
.page-content li { margin-bottom: 8px; color: var(--ink-soft); }

/* ============ 404 page ============ */
.section-404 .error-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px;
}
.error-code {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 14vw, 8rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 20px;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 22px;
}
.error-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding: 0;
  font-size: 14px;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .hero { padding: 60px 0 50px; }
  .why-list { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .issue-badge { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 36px; }
  .categories-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .trust-grid { grid-template-columns: 1fr; }
  .method-step { grid-template-columns: 1fr; gap: 8px; }
  .method-num { font-size: 2rem; }
  .nav-inner { flex-wrap: wrap; gap: 14px; }
  .primary-nav .nav-links { gap: 2px; flex-wrap: wrap; }
  .primary-nav a { padding: 6px 10px; font-size: 13px; }
  .game-card { padding: 22px; }
  .push-modal { padding: 16px; }
  .push-modal-card { padding: 32px 22px 22px; }
}
