/* ============================================================
   PF2026 — Guide Hub (racine pf_guide)
   Layout : hero + jump + walkthrough + stratégies + outils + news + community
   ============================================================ */

body.guide-hub { background: var(--cream); }
.guide-hub-main { padding-bottom: 80px; }

/* ====================================================== BREADCRUMB STRIP */
.guide-hub .crumb-strip {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  background: var(--white);
}

/* ====================================================== HERO — Game identity */
.game-hero { padding: 36px 0 28px; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 0;
  box-shadow: var(--shadow-sm);
}

/* Box art panel — vraie image en priorité, sinon gradient placeholder */
.hero-cover {
  position: relative;
  display: flex; align-items: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, #2C2C44 0%, #0D0D1C 100%);
}
.hero-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
}
.hero-cover.has-placeholder::before,
.hero-cover.has-placeholder::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 50%;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0) 0px, rgba(255,255,255,0) 14px,
      rgba(255,255,255,.05) 14px, rgba(255,255,255,.05) 28px);
  z-index: 1;
}
.hero-cover.has-placeholder::before { left: 0; }
.hero-cover.has-placeholder::after  { right: 0; }
.hero-cover-stack {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px 20px; flex: 1; color: white;
}
.hero-cover-top {
  font-family: 'SFMono-Regular',Consolas,monospace;
  font-size: 10px; letter-spacing: .15em; opacity: .8;
}
.hero-cover-titles {
  display: flex; flex-direction: column; gap: 6px;
  font-weight: 700; letter-spacing: -.04em;
  font-size: 30px; line-height: .95;
  text-shadow: 0 2px 0 rgba(0,0,0,.25);
}
.hero-cover-titles span { display: block; }
.hero-cover-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'SFMono-Regular',Consolas,monospace;
  font-size: 9.5px; letter-spacing: .12em; opacity: .7;
}

/* Middle — Title + meta + stats */
.hero-body { padding: 28px 32px; display: flex; flex-direction: column; gap: 14px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  color: var(--ink-light); text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--yellow);
}
.hero-title {
  font-size: 44px; font-weight: 700; letter-spacing: -.045em;
  line-height: 1.02; color: var(--ink); text-wrap: balance;
  margin: 0;
}
.hero-tagline {
  font-size: 14.5px; line-height: 1.55; color: var(--ink-light);
  max-width: 480px; text-wrap: pretty;
}
.hero-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-mid); font-weight: 500;
  padding-top: 4px;
}
.hero-meta > span { white-space: nowrap; }
.hero-meta b { color: var(--ink); font-weight: 700; }
.hero-meta-sep { color: var(--ink-faint); }
.hero-dates {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 11.5px; color: var(--ink-light);
  padding-top: 4px;
}
.hero-dates b { color: var(--ink-mid); font-weight: 700; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--border); margin-top: 8px;
  padding-top: 16px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-size: 26px; font-weight: 700; color: var(--ink);
  letter-spacing: -.04em; line-height: 1;
}
.hero-stat-label {
  font-size: 11px; color: var(--ink-light); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
}

/* Right rail — CTAs */
.hero-rail {
  background: var(--cream);
  border-left: 1px solid var(--border);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-rail-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--ink-faint); margin-bottom: 4px;
}
.hero-rail .btn { width: 100%; justify-content: center; }
.hero-rail-foot {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11.5px; color: var(--ink-light);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-rail-foot b { color: var(--ink); font-weight: 700; }

/* ====================================================== SECTION SCAFFOLD */
.guide-hub .sec { padding: 48px 0 8px; }
.guide-hub .sec-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 24px;
}
.guide-hub .sec-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  color: var(--ink-faint); text-transform: uppercase; margin-bottom: 6px;
}
.guide-hub .sec-title {
  font-size: 30px; font-weight: 700; letter-spacing: -.04em;
  color: var(--ink); line-height: 1.05; margin: 0;
}
.guide-hub .sec-sub {
  font-size: 14px; color: var(--ink-light); margin-top: 8px;
  max-width: 580px; line-height: 1.6;
}

/* ====================================================== WALKTHROUGH — JOURNEY VIEW */
.journey-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.journey-tabs {
  display: flex; gap: 4px; padding: 14px 14px 8px;
  align-items: center; flex-wrap: wrap;
}
.journey-tab {
  padding: 8px 14px; font-size: 12.5px; font-weight: 700;
  border-radius: var(--r-full); color: var(--ink-mid);
  cursor: pointer; transition: all .15s; border: none;
  background: transparent; font-family: var(--font);
  display: inline-flex; align-items: center; gap: 6px;
}
.journey-tab.active { background: var(--ink); color: white; }
.journey-tab:hover:not(.active) { background: var(--cream); color: var(--ink); }
.journey-tab-count {
  font-size: 10.5px; font-weight: 700;
  padding: 1px 7px; border-radius: var(--r-full);
  background: rgba(255,255,255,.18);
}
.journey-tab:not(.active) .journey-tab-count {
  background: var(--border); color: var(--ink-light);
}
.journey-toggle {
  margin-left: auto;
  display: inline-flex; gap: 4px; background: var(--cream);
  border-radius: var(--r-full); padding: 3px;
}
.journey-toggle-btn {
  padding: 6px 12px; font-size: 11px; font-weight: 700;
  border: none; background: transparent; cursor: pointer;
  border-radius: var(--r-full); color: var(--ink-light);
  font-family: var(--font); transition: all .15s;
  display: inline-flex; align-items: center; gap: 4px;
}
.journey-toggle-btn.active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-xs); }

.journey-bucket { display: none; }
.journey-bucket.active { display: block; }

.journey-scroller {
  overflow-x: auto; padding: 8px 14px 22px;
  scrollbar-width: thin;
}
.journey-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 248px;
  gap: 16px;
  padding-top: 28px;
}
.journey-track::before {
  content: ''; position: absolute;
  top: 60px; left: 12px; right: 12px;
  height: 3px; background: var(--border);
  background-image:
    repeating-linear-gradient(90deg,
      var(--ink) 0px, var(--ink) 6px,
      transparent 6px, transparent 12px);
  opacity: .25; z-index: 0;
}
.stop {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 10px;
  cursor: pointer; text-decoration: none; color: inherit;
}
.stop-pin {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--ink);
  position: relative; z-index: 2; align-self: flex-start;
  margin-left: 8px; margin-top: -16px;
  transition: all .2s;
}
.stop:hover .stop-pin {
  background: var(--yellow); transform: scale(1.12);
}
.stop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .22s cubic-bezier(.16,1,.3,1);
}
.stop:hover .stop-card {
  transform: translateY(-4px); border-color: transparent;
  box-shadow: var(--shadow-md);
}
.stop-thumb {
  aspect-ratio: 16/10;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 12px;
}
.stop-thumb::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,.5) 100%),
    repeating-linear-gradient(45deg,
      rgba(0,0,0,.08) 0px, rgba(0,0,0,.08) 2px,
      transparent 2px, transparent 5px);
}
.stop-thumb-num {
  font-family: 'SFMono-Regular',Consolas,monospace;
  font-size: 11px; letter-spacing: .1em; color: white;
  position: relative; z-index: 1;
  background: rgba(0,0,0,.4); padding: 3px 8px; border-radius: 4px;
  backdrop-filter: blur(8px);
}
.stop-body { padding: 14px 16px 16px; }
.stop-city {
  font-size: 16px; font-weight: 700; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 2px;
}
.stop-subtitle {
  font-size: 12px; color: var(--ink-light); margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.stop-tags {
  display: flex; flex-wrap: wrap; gap: 4px;
  min-width: 0;
}
.stop-chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; font-weight: 600;
  padding: 3px 8px; border-radius: var(--r-full);
  background: var(--cream); color: var(--ink-mid);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}
.stop-chip-leader {
  background: var(--ink); color: white; border-color: var(--ink);
}
.stop-chip.type { color: white; border-color: transparent; }
.stop-foot {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--ink-light); font-weight: 500;
  white-space: nowrap; gap: 8px;
}
.stop-foot > span { white-space: nowrap; }
.stop-foot b { color: var(--ink-mid); font-weight: 700; }
.stop.is-overflow { opacity: .55; }
.stop.is-overflow .stop-pin { background: var(--cream); }
.stop.is-overflow .stop-card {
  display: flex; align-items: center; justify-content: center;
  text-align: center; min-height: 230px; border-style: dashed;
}

/* ====================================================== WALKTHROUGH — GRID VIEW */
.grid-view {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 4px 14px 18px;
}
[data-view="grid"] .journey-scroller { display: none; }
[data-view="grid"] .grid-view { display: grid; }
.grid-stop {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 14px;
  transition: all .15s; cursor: pointer;
  text-decoration: none; color: inherit;
}
.grid-stop:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.grid-stop-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; font-size: 12px; font-weight: 700;
  color: var(--ink-mid); flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.grid-stop-body { flex: 1; min-width: 0; }
.grid-stop-city { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.grid-stop-sub  { font-size: 11px; color: var(--ink-light); margin-top: 2px; }

/* ====================================================== EMPTY STATES */
.guide-hub-empty {
  background: var(--white); border: 1px dashed var(--border);
  border-radius: var(--r-md); padding: 32px 24px;
  text-align: center; color: var(--ink-light);
  font-size: 13px; line-height: 1.6;
}
.guide-hub-empty strong { color: var(--ink); display: block; margin-bottom: 6px; font-size: 14px; }

/* ====================================================== STRATÉGIES — Editorial */
.strat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 1fr;
  gap: 14px;
}
.strat-hero {
  grid-row: 1 / 3;
  background: linear-gradient(180deg, rgba(13,13,28,0) 40%, rgba(13,13,28,.92) 100%),
              linear-gradient(135deg, #1a1040, #0D2244);
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; padding: 28px; cursor: pointer;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: white; min-height: 480px;
  text-decoration: none;
}
.strat-hero::before {
  content: '?'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -65%);
  font-size: 360px; font-weight: 700;
  color: rgba(255,203,5,.08); letter-spacing: -.05em;
  line-height: 1; pointer-events: none;
}
.strat-hero-eye {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; background: rgba(255,203,5,.15);
  border: 1px solid rgba(255,203,5,.35); border-radius: var(--r-full);
  font-size: 10.5px; font-weight: 700; color: var(--yellow);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px;
  width: fit-content; position: relative;
}
.strat-hero h3 {
  font-size: 32px; font-weight: 700; letter-spacing: -.035em;
  line-height: 1.05; margin: 0 0 10px; position: relative;
  text-wrap: balance; color: white;
}
.strat-hero p {
  font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.7);
  max-width: 380px; position: relative; margin: 0 0 18px;
}
.strat-hero-meta {
  display: flex; gap: 10px; font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,.6); position: relative;
}
.strat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer; transition: all .2s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
}
.strat-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: transparent;
}
.strat-card-num {
  position: absolute; top: 12px; right: 14px;
  font-family: 'SFMono-Regular',Consolas,monospace;
  font-size: 10px; color: var(--ink-faint); letter-spacing: .08em;
}
.strat-card-cat {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
}
.strat-card h4 {
  font-size: 16px; font-weight: 700; letter-spacing: -.02em;
  color: var(--ink); line-height: 1.2; text-wrap: balance; margin: 0;
}
.strat-card p {
  font-size: 12.5px; color: var(--ink-light); line-height: 1.5; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.strat-card-meta {
  margin-top: auto; padding-top: 8px;
  font-size: 11px; color: var(--ink-faint); font-weight: 500;
  display: flex; gap: 8px; align-items: center;
  white-space: nowrap; flex-wrap: wrap;
}
.strat-card-meta > * { white-space: nowrap; }
.strat-card-meta b { color: var(--ink-mid); font-weight: 700; }
.cat-mystere  { color: var(--type-spectre); }
.cat-combat   { color: var(--type-combat); }
.cat-starter  { color: var(--type-plante); }
.cat-glitch   { color: var(--type-psy); }
.cat-secret   { color: var(--yellow-dark); }
.cat-debutant { color: var(--type-eau); }

/* ====================================================== OUTILS */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.tool {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 16px;
  display: flex; flex-direction: column; gap: 4px;
  cursor: pointer; transition: all .18s cubic-bezier(.16,1,.3,1);
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.tool::after {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--cream);
  transition: transform .3s ease;
}
.tool:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.tool:hover::after { transform: scale(1.4); }
.tool-icon {
  position: relative; z-index: 1;
  width: 36px; height: 36px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 8px;
  background: var(--cream);
}
.tool-name {
  position: relative; z-index: 1;
  font-size: 13.5px; font-weight: 700; color: var(--ink);
  letter-spacing: -.01em;
}
.tool-count {
  position: relative; z-index: 1;
  font-size: 11px; color: var(--ink-light); font-weight: 500;
}
.tool.featured { background: var(--ink); color: white; border-color: var(--ink); }
.tool.featured::after { background: rgba(255,255,255,.05); }
.tool.featured .tool-name { color: white; }
.tool.featured .tool-count { color: rgba(255,255,255,.5); }
.tool.featured .tool-icon { background: rgba(255,203,5,.18); }
.tool.is-disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }

/* ====================================================== ACTUALITÉS */
.news-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 14px;
}
.news-feature {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; cursor: pointer;
  display: grid; grid-template-columns: 1fr 1fr;
  transition: all .2s; min-height: 200px;
  text-decoration: none; color: inherit;
}
.news-feature:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.news-feature-thumb {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.news-feature-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.news-feature-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    rgba(0,0,0,0) 0px, rgba(0,0,0,0) 12px,
    rgba(0,0,0,.05) 12px, rgba(0,0,0,.05) 24px);
  pointer-events: none;
}
.news-feature-thumb-label {
  font-family: 'SFMono-Regular',Consolas,monospace;
  font-size: 9.5px; letter-spacing: .15em;
  color: rgba(255,255,255,.7); position: relative; z-index: 1;
  text-transform: uppercase;
}
.news-feature-body {
  padding: 22px 24px; display: flex; flex-direction: column;
  justify-content: center; gap: 6px;
}
.news-feature-cat {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--type-feu);
}
.news-feature h4 {
  font-size: 19px; font-weight: 700; letter-spacing: -.025em;
  color: var(--ink); line-height: 1.2; text-wrap: balance; margin: 0;
}
.news-feature p {
  font-size: 13px; color: var(--ink-light); line-height: 1.5; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-feature-date {
  font-size: 11px; color: var(--ink-faint); font-weight: 600;
  margin-top: 6px;
}
.news-mini {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px;
  cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none; color: inherit;
}
.news-mini:hover { box-shadow: var(--shadow-sm); border-color: transparent; }
.news-mini-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
}
.news-mini h5 {
  font-size: 14px; font-weight: 700; letter-spacing: -.015em;
  color: var(--ink); line-height: 1.25; text-wrap: balance; margin: 0;
}
.news-mini-date {
  font-size: 11px; color: var(--ink-faint);
  margin-top: auto; padding-top: 8px; font-weight: 500;
}

/* ====================================================== COMMUNITY */
.com-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.com-widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px 24px;
}
.com-widget-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.com-widget-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: var(--ink);
}
.com-widget-icon {
  width: 30px; height: 30px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.com-widget-link {
  font-size: 12px; font-weight: 600; color: var(--ink-light);
  text-decoration: none;
}
.com-widget-link:hover { color: var(--ink); }
.com-team {
  padding: 10px; background: var(--cream); border-radius: var(--r-sm);
  margin-bottom: 6px; display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: background .15s;
}
.com-team:hover { background: var(--border-light); }
.com-team-sprites { display: flex; gap: 2px; flex: 1; }
.com-team-sprite { width: 32px; height: 32px; object-fit: contain; }
.com-team-info { text-align: right; }
.com-team-author { font-size: 12px; font-weight: 700; color: var(--ink); }
.com-team-meta { font-size: 11px; color: var(--ink-light); }
.com-fic {
  padding: 10px 0; border-bottom: 1px solid var(--border-light);
  display: flex; flex-direction: column; gap: 4px; cursor: pointer;
}
.com-fic:last-of-type { border-bottom: none; }
.com-fic-meta { display: flex; gap: 6px; align-items: center; }
.com-fic-genre {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--ink-light);
  white-space: nowrap;
}
.com-fic-status {
  font-size: 9.5px; font-weight: 700; padding: 2px 7px; border-radius: var(--r-full);
  white-space: nowrap;
}
.com-fic-status.stat-ongoing { background: #FEF3C7; color: #92400E; }
.com-fic-status.stat-done    { background: #D1FAE5; color: #065F46; }
.com-fic-title { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.com-fic-author { font-size: 11px; color: var(--ink-light); }

/* ====================================================== JUMP BAR */
.jump {
  position: sticky; top: 66px; z-index: 50;
  background: rgba(247,246,242,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.jump-inner {
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto;
}
.jump-game {
  display: flex; align-items: center; gap: 8px;
  padding-right: 16px; margin-right: 8px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.jump-ball {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(180deg, #CC0000 0%, #CC0000 49%, white 49%, white 100%);
  border: 1.5px solid var(--ink); flex-shrink: 0;
}
.jump-game-name {
  font-size: 13px; font-weight: 700; color: var(--ink);
  letter-spacing: -.01em; white-space: nowrap;
}
.jump-link {
  padding: 7px 13px; font-size: 12.5px; font-weight: 600;
  color: var(--ink-light); border-radius: var(--r-full);
  transition: all .15s; white-space: nowrap; cursor: pointer;
  text-decoration: none;
}
.jump-link:hover { background: var(--cream); color: var(--ink); }
.jump-link.active { background: var(--ink); color: white; }
.jump-link b { color: var(--ink-faint); font-weight: 700; margin-left: 4px; }
.jump-link.active b { color: rgba(255,255,255,.5); }

/* ====================================================== MOBILE */
@media (max-width: 1000px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-cover { min-height: 240px; }
  .hero-rail { border-left: none; border-top: 1px solid var(--border); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .strat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .strat-hero { grid-row: auto; min-height: 320px; grid-column: 1 / -1; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .news-strip { grid-template-columns: 1fr 1fr; }
  .news-feature { grid-column: 1 / -1; }
  .com-grid { grid-template-columns: 1fr; }
  .grid-view { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-title { font-size: 34px; }
  .hero-body { padding: 22px 22px; }
  .guide-hub .sec { padding: 36px 0 4px; }
  .guide-hub .sec-header { flex-direction: column; align-items: flex-start; }
  .guide-hub .sec-title { font-size: 24px; }
  .strat-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .news-strip { grid-template-columns: 1fr; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature-thumb { min-height: 160px; }
}
