:root {
  --ink: #0a1a3d;
  --ink-soft: #1a2c5c;
  --ink-light: #4a5a82;
  --paper: #ffffff;
  --cream: #fafaf7;
  --grey: #f1f2f5;
  --rule: #e3e5eb;
  --rule-dark: #c8cdd8;
  --text: #1f2741;
  --text-soft: #5c6580;
  --text-muted: #8b92a5;
  --accent: #d9263a;
  --accent-dark: #b81e30;
  --accent-soft: #fde8ea;
  --gold: #b89456;
  --green: #2e8856;
  --green-bg: #e8f4ed;
  --yellow: #c9a84c;
  --yellow-bg: #fcf5e0;
  --warn: #c94a4a;
  --warn-bg: #fbecec;
  --shadow-sm: 0 2px 4px rgba(10, 26, 61, 0.04);
  --shadow-md: 0 4px 14px rgba(10, 26, 61, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 26, 61, 0.12);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 72px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.txt-bold { font-weight: 600; color: var(--ink); }
.txt-accent { font-style: italic; color: var(--accent); font-weight: 500; }
.txt-italic { font-style: italic; }

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrap-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* top strip */
.top-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.strip-label { font-weight: 600; opacity: 0.85; }
.strip-meta { display: flex; gap: 18px; align-items: center; opacity: 0.7; }

.strip-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4ade80;
  margin-right: 6px;
  vertical-align: middle;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* header */
.main-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--accent); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover::after { transform: scaleX(1); }

.menu-toggle {
  background: none;
  border: 1px solid var(--rule-dark);
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

/* breadcrumbs */
.crumbs {
  padding: 18px 0 8px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.crumbs span { color: var(--text-soft); }
.crumbs .sep { margin: 0 8px; color: var(--rule-dark); }
.crumbs .here { color: var(--ink); font-weight: 500; }

/* hero */
.hero-block {
  padding: 12px 0 48px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 11px;
  background: var(--accent);
  color: var(--paper);
}

.hero-tag-alt {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 26px;
}

.hero-lede {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 720px;
  margin-bottom: 14px;
}

.hero-lede:last-of-type { margin-bottom: 28px; }

.hero-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  margin-top: 30px;
  flex-wrap: wrap;
}

.byline-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  border-radius: 50%;
}

.byline-txt { display: flex; flex-direction: column; gap: 2px; }
.byline-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.byline-role { font-size: 12px; color: var(--text-muted); letter-spacing: 0.02em; }
.byline-sep { width: 1px; height: 32px; background: var(--rule); margin: 0 4px; }
.byline-stat { display: flex; flex-direction: column; gap: 2px; }

.byline-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.byline-cap {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* vitrin */
.vitrin {
  margin: 0 0 56px;
}

.vitrin-h {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.vitrin-sub {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.pick-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.pick {
  background: var(--paper);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 56px 1fr;
  transition: all 0.25s ease;
  overflow: hidden;
  cursor: pointer;
}

.pick:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.pick-rank {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.pick:first-child .pick-rank { background: var(--accent); }

.pick-body {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}

.pick-top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pick-logo {
  width: 92px;
  height: 52px;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.pick-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.pick-info {
  flex: 1;
  min-width: 160px;
}

.pick-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.pick-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.pick-meta .txt-bold {
  color: var(--ink);
  font-weight: 600;
}

.pick-score {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--cream);
}

.score-n {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.score-meta { display: flex; flex-direction: column; gap: 2px; }
.score-stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }

.score-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.pick-bonus {
  background: var(--cream);
  padding: 14px 16px;
}

.bonus-eye {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.bonus-amt {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.bonus-amt .txt-accent {
  font-style: italic;
  color: var(--accent);
}

.pick-cta {
  width: 100%;
  background: var(--accent);
  color: var(--paper);
  border: none;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pick-cta::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.2s;
}

.pick-cta:hover { background: var(--accent-dark); }
.pick-cta:hover::after { transform: translateX(4px); }

.pick-note {
  font-size: 11px;
  color: var(--text-muted);
  padding: 10px 20px;
  background: var(--grey);
  border-top: 1px solid var(--rule);
  grid-column: 1 / -1;
  letter-spacing: 0.02em;
}

.pick-note .txt-bold {
  color: var(--text);
  font-weight: 600;
}

/* toc */
.toc {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--ink);
  padding: 24px 28px;
  margin: 0 0 48px;
}

.toc-h {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.toc-items {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
}

.toc-items li { border-bottom: 1px dashed var(--rule-dark); }
.toc-items li:last-child { border-bottom: none; }

.toc-items a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s;
  gap: 12px;
}

.toc-items a:hover { color: var(--accent); padding-left: 6px; }

.toc-n {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.toc-arr {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.toc-items a:hover .toc-arr {
  transform: translateX(4px);
  color: var(--accent);
}

/* article */
.article-body { padding-bottom: 60px; }

.article-body section {
  margin-bottom: 56px;
  scroll-margin-top: 90px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 16px;
  padding-top: 36px;
  border-top: 2px solid var(--ink);
  position: relative;
}

h2::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
}

.lede {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 28px;
  font-style: italic;
  padding-left: 16px;
}

h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.article-body p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}

.article-body p:last-child { margin-bottom: 0; }

.kw { font-weight: 600; color: var(--ink); }

/* editor note */
.ed-note {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 24px;
  margin: 28px 0;
}

.ed-note-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.ed-note-txt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
}

/* tables */
.tbl-wrap {
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--rule);
  -webkit-overflow-scrolling: touch;
}

.tbl-cmp, .tbl-bonus, .tbl-pay {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}

thead tr { background: var(--ink); color: var(--paper); }

th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--text);
  vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--cream); }
tbody tr:hover { background: var(--accent-soft); }

.c-name { font-weight: 600; color: var(--ink); font-family: var(--serif); }
.c-good { color: var(--green); font-weight: 600; }
.c-mid { color: var(--yellow); font-weight: 600; }
.c-bad { color: var(--warn); font-weight: 600; }
.c-muted { color: var(--text-muted); }

/* checklist */
.checks {
  list-style: none;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checks li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  align-items: start;
}

.checks li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--ink);
  margin-top: 4px;
  clip-path: polygon(20% 50%, 0 70%, 40% 100%, 100% 25%, 80% 5%, 40% 60%);
  flex-shrink: 0;
}

/* info boxes — без вертикальных черт */
.info-box {
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 15px;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.box-tip { background: var(--green-bg); }
.box-warn { background: var(--warn-bg); }
.box-info { background: var(--grey); }
.box-gold { background: var(--yellow-bg); }

.box-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

.box-tip .box-tag { color: var(--green); }
.box-warn .box-tag { color: var(--warn); }
.box-info .box-tag { color: var(--ink); }
.box-gold .box-tag { color: var(--gold); }

.box-txt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

.box-txt .txt-bold { font-weight: 700; color: var(--ink); }

/* formula */
.formula {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 24px;
  margin: 20px 0;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
}

.formula::before, .formula::after {
  content: '"';
  font-size: 32px;
  color: var(--accent);
  font-family: var(--serif);
  position: absolute;
  top: 8px;
}

.formula::before { left: 10px; }
.formula::after { right: 10px; }

/* risk cards */
.risk {
  border: 1px solid var(--rule);
  margin: 22px 0;
  background: var(--paper);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.risk:hover { box-shadow: var(--shadow-md); }

.risk-head {
  background: var(--cream);
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.risk-n {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.risk-t {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.risk-body { padding: 20px 22px; }

.risk-fix {
  background: var(--green-bg);
  border-top: 1px solid #c8e0d2;
  padding: 14px 22px;
  font-size: 14px;
  color: var(--text);
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.55;
}

.risk-fix::before {
  content: '→';
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

/* games */
.games {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 22px 0;
}

.game {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 16px 18px;
  transition: all 0.25s ease;
}

.game:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.game-n {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}

.game-p {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.game-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
}

.game-rtp {
  color: var(--ink);
  font-weight: 700;
  font-family: var(--serif);
  font-size: 14px;
}

.game-vol {
  font-size: 10px;
  padding: 3px 8px;
  background: var(--grey);
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* faq */
.faq { margin-top: 24px; }

.faq-row {
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
}

.faq-row:first-child { border-top: 1px solid var(--rule); }
.faq-row:hover { background: var(--cream); }

.faq-q {
  padding: 18px 4px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 12px;
  list-style: none;
  user-select: none;
  line-height: 1.35;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-tog {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--ink);
  font-weight: 400;
  transition: all 0.25s;
  position: relative;
}

.faq-tog::before, .faq-tog::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all 0.25s;
}

.faq-tog::before { width: 12px; height: 1.5px; }
.faq-tog::after { width: 1.5px; height: 12px; }

.faq-row.open .faq-tog {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(180deg);
}

.faq-row.open .faq-tog::before, .faq-row.open .faq-tog::after {
  background: var(--paper);
}

.faq-row.open .faq-tog::after { height: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 4px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

.faq-row.open .faq-a {
  max-height: 500px;
  padding: 0 4px 22px;
}

/* sticky cta */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 200;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  border-top: 3px solid var(--accent);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.sticky-cta.hidden { transform: translateY(100%); }

.sticky-i {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.sticky-eye {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.sticky-h {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-btn {
  background: var(--accent);
  color: var(--paper);
  border: none;
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sticky-btn:hover { background: var(--accent-dark); }
.sticky-btn::after { content: '→'; }

/* footer */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 48px 0 24px;
  margin-top: 60px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.foot-col h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.foot-col p, .foot-col li {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
  list-style: none;
}

.foot-pub {
  font-size: 11px !important;
  opacity: 0.5;
  margin-top: 8px;
}

.foot-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.foot-warn {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.foot-warn .txt-bold {
  color: var(--paper);
  font-weight: 600;
}

.foot-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.foot-badge {
  font-size: 10px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

/* responsive */
@media (min-width: 600px) {
  .pick-body { grid-template-columns: auto 1fr auto; gap: 18px; }
  .pick-bonus { min-width: 200px; }
  .games { grid-template-columns: repeat(2, 1fr); }
  .foot-bot { flex-direction: row; align-items: center; }
}

@media (min-width: 768px) {
  .wrap, .wrap-narrow { padding: 0 32px; }
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .brand-logo-img { height: 52px; }

  .pick { grid-template-columns: 70px 1fr; }
  .pick-rank { font-size: 28px; }

  .pick-body {
    padding: 20px 24px;
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
  }

  .pick-logo { width: 100px; height: 56px; }
  .pick-cta { width: auto; min-width: 130px; padding: 12px 18px; }

  .sticky-cta { display: none; }
  body { padding-bottom: 0; }

  .toc-items { grid-template-columns: 1fr 1fr; column-gap: 32px; }
  .games { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .article-body section { scroll-margin-top: 100px; }
}

@media (hover: none) {
  .pick:hover { transform: none; }
  .game:hover { transform: none; }
}

@media print {
  .sticky-cta, .top-strip, .menu-toggle, .read-progress { display: none !important; }
}
