/* ==================================================================
   PG666 mobile shell - shell-compact-bf93f1.css
   Canvas: 320-430px phone frame, centered on wide screens.
   Palette: #80CBC4 (mint) / #A0522D (clay) / #262626 (ink).
   Direction: bold compact headings + light body, pill buttons with
   square-ish cards, image-only game tiles, restrained fade feedback.
   Every class and variable carries the frame93f15- prefix.
   ================================================================== */

:root {
  --frame93f15-ink: #262626;
  --frame93f15-ink-deep: #1d1d1d;
  --frame93f15-ink-soft: #303030;
  --frame93f15-line: #403a34;
  --frame93f15-mint: #80CBC4;
  --frame93f15-mint-dim: rgba(128, 203, 196, 0.16);
  --frame93f15-clay: #A0522D;
  --frame93f15-clay-hi: #C4673A;
  --frame93f15-clay-dim: rgba(160, 82, 45, 0.18);
  --frame93f15-paper: #F2ECE4;
  --frame93f15-soft: #D9D3C8;
  --frame93f15-mute: #B7B0A6;
  --frame93f15-pill: 999px;
  --frame93f15-card: 6px;
  --frame93f15-topbar-h: 60px;
  --frame93f15-dock-h: 64px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #141414;
  color: var(--frame93f15-soft);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: var(--frame93f15-mint); }

:focus-visible {
  outline: 2px solid var(--frame93f15-mint);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------------------------------------------
   Phone canvas: the whole site lives inside a 430px column.
   ------------------------------------------------------------------ */
.frame93f15-shell {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--frame93f15-ink);
  overflow-x: hidden;
}

@media (min-width: 431px) {
  .frame93f15-shell {
    border-left: 1px solid var(--frame93f15-line);
    border-right: 1px solid var(--frame93f15-line);
    box-shadow: 0 0 46px rgba(0, 0, 0, 0.55);
  }
}

/* ------------------------------------------------------------------
   Fixed top action bar: logo-led brand, register/login, menu toggle.
   ------------------------------------------------------------------ */
.frame93f15-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--frame93f15-topbar-h);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  background: rgba(38, 38, 38, 0.97);
  border-bottom: 1px solid var(--frame93f15-line);
  z-index: 70;
}

.frame93f15-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  min-height: 44px;
  text-decoration: none;
}

.frame93f15-logo {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  border: 1px solid var(--frame93f15-line);
}

.frame93f15-brand-name {
  color: var(--frame93f15-paper);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.frame93f15-brand-name b {
  color: var(--frame93f15-mint);
  font-weight: 800;
}

.frame93f15-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.frame93f15-btn {
  font: inherit;
  font-weight: 700;
  font-size: 12.5px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--frame93f15-pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.frame93f15-btn:active { transform: translateY(1px); }

.frame93f15-btn-register {
  background: linear-gradient(180deg, var(--frame93f15-clay-hi), var(--frame93f15-clay));
  color: #ffffff;
}

.frame93f15-btn-login {
  background: transparent;
  border-color: rgba(128, 203, 196, 0.6);
  color: var(--frame93f15-mint);
}

.frame93f15-menu-toggle {
  width: 44px;
  height: 44px;
  margin-right: -4px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.frame93f15-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--frame93f15-paper);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.frame93f15-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.frame93f15-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.frame93f15-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 352px) {
  .frame93f15-brand-name { display: none; }
  .frame93f15-btn { padding: 0 10px; font-size: 12px; }
}

/* ------------------------------------------------------------------
   Expandable navigation drawer under the top bar.
   ------------------------------------------------------------------ */
.frame93f15-drawer {
  position: fixed;
  top: var(--frame93f15-topbar-h);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 69;
  background: var(--frame93f15-ink-deep);
  border-bottom: 1px solid var(--frame93f15-line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.frame93f15-drawer.frame93f15-open {
  max-height: 540px;
  overflow-y: auto;
}

.frame93f15-drawer-inner { padding: 10px 12px 16px; }

.frame93f15-drawer-label {
  margin: 12px 4px 6px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--frame93f15-mute);
}

.frame93f15-drawer-label:first-child { margin-top: 2px; }

.frame93f15-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  text-decoration: none;
  color: var(--frame93f15-paper);
  font-weight: 500;
  font-size: 14px;
}

.frame93f15-drawer-link span { color: var(--frame93f15-clay-hi); font-size: 16px; line-height: 1; }

.frame93f15-drawer-link:active {
  background: var(--frame93f15-mint-dim);
  border-color: rgba(128, 203, 196, 0.25);
}

/* ------------------------------------------------------------------
   Main column: clears the fixed bar above and the dock below.
   ------------------------------------------------------------------ */
.frame93f15-main {
  padding-top: calc(var(--frame93f15-topbar-h) + 12px);
  padding-bottom: calc(var(--frame93f15-dock-h) + 34px + env(safe-area-inset-bottom, 0px));
}

/* ------------------------------------------------------------------
   Promo carousel built on the local campaign artwork.
   ------------------------------------------------------------------ */
.frame93f15-hero {
  position: relative;
  margin: 2px 12px 0;
  aspect-ratio: 16 / 7;
  border-radius: 10px;
  border: 1px solid var(--frame93f15-line);
  background: var(--frame93f15-ink-deep);
  overflow: hidden;
}

.frame93f15-track { position: relative; width: 100%; height: 100%; }

.frame93f15-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
  text-decoration: none;
}

.frame93f15-slide.frame93f15-on { opacity: 1; }

.frame93f15-slide img { width: 100%; height: 100%; object-fit: cover; }

.frame93f15-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  display: flex;
  justify-content: center;
  gap: 2px;
  z-index: 2;
}

.frame93f15-dot {
  position: relative;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.frame93f15-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(242, 236, 228, 0.5);
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.frame93f15-dot.frame93f15-on::before {
  background: var(--frame93f15-mint);
  transform: translate(-50%, -50%) scale(1.3);
}

/* ------------------------------------------------------------------
   Headline block and quick category jumps.
   ------------------------------------------------------------------ */
.frame93f15-headline { padding: 14px 16px 2px; }

.frame93f15-headline h1 {
  margin: 0 0 6px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--frame93f15-paper);
}

.frame93f15-lede { margin: 0; font-size: 13px; line-height: 1.65; }

.frame93f15-jump {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 16px 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.frame93f15-jump::-webkit-scrollbar { display: none; }

.frame93f15-jump a {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: var(--frame93f15-pill);
  border: 1px solid rgba(128, 203, 196, 0.35);
  color: var(--frame93f15-mint);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
}

.frame93f15-jump a:active { background: var(--frame93f15-mint-dim); }

/* ------------------------------------------------------------------
   Game sections: category rail, note, related-page chips, tile grid.
   ------------------------------------------------------------------ */
.frame93f15-sec { padding: 18px 0 8px; }

.frame93f15-sec-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 12px 8px;
  padding-left: 10px;
  border-left: 3px solid var(--frame93f15-clay);
  min-height: 30px;
}

.frame93f15-sec-title {
  margin: 0;
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--frame93f15-paper);
}

.frame93f15-sec-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--frame93f15-mint);
  background: var(--frame93f15-mint-dim);
  border-radius: 4px;
  padding: 3px 7px;
}

.frame93f15-sec-note {
  margin: 0 14px 10px;
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--frame93f15-mute);
}

.frame93f15-related { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 12px 12px; }

.frame93f15-related a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 12px;
  border-radius: var(--frame93f15-pill);
  border: 1px dashed rgba(128, 203, 196, 0.4);
  color: var(--frame93f15-mint);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.frame93f15-related a::before { content: "›"; color: var(--frame93f15-clay-hi); font-size: 13px; }

.frame93f15-related a:active { background: var(--frame93f15-mint-dim); }

/* Grid: 4 tracks on small phones, 5 from 400px up. */
.frame93f15-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 8px;
  padding: 0 12px;
}

.frame93f15-tile {
  display: block;
  padding: 5px 4px 7px;
  background: var(--frame93f15-ink-soft);
  border: 1px solid var(--frame93f15-line);
  border-radius: var(--frame93f15-card);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.frame93f15-tile:active {
  transform: scale(0.96);
  border-color: var(--frame93f15-mint);
}

.frame93f15-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  background: #161616;
}

.frame93f15-tile-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  margin-top: 6px;
  min-height: 30px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  color: #e6e0d6;
}

@media (min-width: 400px) {
  .frame93f15-grid { grid-template-columns: repeat(5, 1fr); gap: 12px 10px; }
}

/* ------------------------------------------------------------------
   Reading modules: mobile access, CTA, play styles, pros & limits.
   ------------------------------------------------------------------ */
.frame93f15-module { padding: 20px 16px 4px; }

.frame93f15-module h2 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--frame93f15-paper);
}

.frame93f15-module h3 {
  margin: 14px 0 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--frame93f15-mint);
}

.frame93f15-module p { margin: 0 0 10px; font-size: 13px; line-height: 1.7; }

.frame93f15-module p a { font-weight: 500; }

.frame93f15-steps { display: grid; gap: 10px; margin: 4px 0 12px; }

.frame93f15-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--frame93f15-ink-soft);
  border: 1px solid var(--frame93f15-line);
  border-radius: var(--frame93f15-card);
}

.frame93f15-step-num {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--frame93f15-mint-dim);
  color: var(--frame93f15-mint);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame93f15-step p { margin: 0; font-size: 12.8px; line-height: 1.6; }

.frame93f15-step b { color: var(--frame93f15-paper); font-weight: 600; }

/* Decision-band CTA. */
.frame93f15-cta {
  margin: 18px 12px 6px;
  padding: 16px 14px;
  border-radius: 10px;
  border: 1px solid rgba(196, 103, 58, 0.55);
  background: linear-gradient(140deg, var(--frame93f15-clay-dim), rgba(128, 203, 196, 0.1));
  text-align: center;
}

.frame93f15-cta h2 { margin: 0 0 6px; font-size: 17px; font-weight: 800; color: var(--frame93f15-paper); }
.frame93f15-cta p { margin: 0 0 12px; font-size: 12.6px; line-height: 1.6; }

.frame93f15-cta-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }

.frame93f15-cta-btn {
  font: inherit;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}

.frame93f15-cta-hot {
  background: linear-gradient(180deg, var(--frame93f15-clay-hi), var(--frame93f15-clay));
  color: #ffffff;
}

.frame93f15-cta-cool {
  background: transparent;
  border-color: rgba(128, 203, 196, 0.6);
  color: var(--frame93f15-mint);
}

/* Scene-branch comparison rows. */
.frame93f15-branches { display: grid; gap: 9px; margin: 6px 0 12px; }

.frame93f15-branch {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  background: var(--frame93f15-ink-soft);
  border: 1px solid var(--frame93f15-line);
  border-radius: var(--frame93f15-card);
}

.frame93f15-branch dt {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--frame93f15-mint);
  padding-top: 2px;
}

.frame93f15-branch dd { margin: 0; font-size: 12.6px; line-height: 1.6; }

/* Pros vs limitations twin panels. */
.frame93f15-duo { display: grid; gap: 10px; margin: 6px 0 12px; }

.frame93f15-good,
.frame93f15-limit {
  padding: 12px;
  border-radius: var(--frame93f15-card);
}

.frame93f15-good {
  background: rgba(128, 203, 196, 0.07);
  border: 1px solid rgba(128, 203, 196, 0.3);
}

.frame93f15-limit {
  background: var(--frame93f15-clay-dim);
  border: 1px solid rgba(160, 82, 45, 0.4);
}

.frame93f15-duo h3 { margin: 0 0 7px; font-size: 13px; font-weight: 700; letter-spacing: 0.3px; }
.frame93f15-good h3 { color: var(--frame93f15-mint); }
.frame93f15-limit h3 { color: var(--frame93f15-clay-hi); }

.frame93f15-duo ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }

.frame93f15-duo li { position: relative; padding-left: 18px; font-size: 12.6px; line-height: 1.6; }

.frame93f15-duo li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.frame93f15-good li::before { content: "+"; color: var(--frame93f15-mint); }
.frame93f15-limit li::before { content: "–"; color: var(--frame93f15-clay-hi); }

/* ------------------------------------------------------------------
   Homepage extended footer: shortcuts, brand, directory, disclaimer.
   ------------------------------------------------------------------ */
.frame93f15-xfoot {
  margin-top: 24px;
  border-top: 1px solid var(--frame93f15-line);
  background: var(--frame93f15-ink-deep);
  padding: 16px 12px 10px;
}

.frame93f15-xfoot-label {
  margin: 0 2px 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--frame93f15-mute);
}

.frame93f15-shortcuts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.frame93f15-shortcuts::-webkit-scrollbar { display: none; }

.frame93f15-short {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: var(--frame93f15-pill);
  background: var(--frame93f15-clay-dim);
  border: 1px solid rgba(196, 103, 58, 0.6);
  color: #f0c6ae;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}

.frame93f15-short:active { background: rgba(196, 103, 58, 0.32); }

.frame93f15-blurb { margin: 10px 2px 14px; font-size: 12.4px; line-height: 1.65; color: #cfc9bf; }

.frame93f15-dir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 10px;
  margin-bottom: 4px;
}

.frame93f15-dir a {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 6px 2px;
  border-bottom: 1px solid rgba(64, 58, 52, 0.7);
  color: var(--frame93f15-mint);
  text-decoration: none;
  font-size: 12.3px;
}

.frame93f15-dir a::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: var(--frame93f15-clay);
}

.frame93f15-note { margin: 14px 2px 4px; font-size: 11.3px; line-height: 1.6; color: #948e85; }

/* ------------------------------------------------------------------
   Common footer (copyright only) + fixed five-role dock.
   ------------------------------------------------------------------ */
.frame93f15-foot {
  padding: 14px 16px 10px;
  border-top: 1px solid var(--frame93f15-line);
  text-align: center;
}

.frame93f15-copy { margin: 0; font-size: 11.5px; color: #8b857d; }

.frame93f15-dock {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 5px 4px calc(5px + env(safe-area-inset-bottom, 0px));
  background: rgba(24, 24, 24, 0.98);
  border-top: 1px solid var(--frame93f15-line);
}

.frame93f15-dock-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 54px;
  padding: 4px 2px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #a39d94;
  font: inherit;
  font-size: 10.3px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.frame93f15-dock-item svg { width: 22px; height: 22px; }

.frame93f15-dock-item:active { transform: translateY(-1px); }

.frame93f15-dock-item.frame93f15-live { color: var(--frame93f15-mint); transform: translateY(-2px); }

.frame93f15-dock-item.frame93f15-live::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2.5px;
  border-radius: 0 0 3px 3px;
  background: var(--frame93f15-clay-hi);
}

/* ------------------------------------------------------------------
   Restrained reveal motion (applied by JS only, safe without it).
   ------------------------------------------------------------------ */
.frame93f15-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.frame93f15-reveal.frame93f15-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .frame93f15-reveal { opacity: 1; transform: none; transition: none; }
  .frame93f15-slide { transition: none; }
}

/* Compact tuning inside the reference 430px phone canvas. */
@media (max-width: 430px) {
  .frame93f15-headline h1 { font-size: 20px; }
  .frame93f15-hero { aspect-ratio: 15 / 7; }
  .frame93f15-cta-btn { width: 100%; }
  .frame93f15-cta-row { flex-direction: column; }
}

@media (max-width: 359px) {
  .frame93f15-grid { gap: 8px 6px; }
  .frame93f15-tile-name { font-size: 10.5px; min-height: 28px; }
  .frame93f15-branch { grid-template-columns: 1fr; gap: 4px; }
}

/* Help pages use distinct reading rhythms while retaining the compact shell. */
.frame93f15-help-wrap {
  padding: 8px 12px 12px;
}

.frame93f15-help-hero {
  position: relative;
  margin: 0 0 14px;
  padding: 18px 15px 16px;
  border-left: 4px solid var(--frame93f15-mint);
  border-bottom: 1px solid var(--frame93f15-line);
  background: linear-gradient(135deg, rgba(128, 203, 196, 0.12), rgba(160, 82, 45, 0.1));
}

.frame93f15-help-hero h1 {
  margin: 0 0 8px;
  color: var(--frame93f15-paper);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 800;
}

.frame93f15-help-hero p { margin: 0; font-size: 13px; line-height: 1.7; }

.frame93f15-help-kicker {
  margin: 0 0 7px;
  color: var(--frame93f15-clay-hi);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.frame93f15-help-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0 16px;
}

.frame93f15-help-action {
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(128, 203, 196, 0.42);
  border-radius: 8px;
  background: var(--frame93f15-ink-soft);
  color: var(--frame93f15-mint);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.frame93f15-help-action.frame93f15-hot {
  border-color: rgba(196, 103, 58, 0.65);
  background: linear-gradient(145deg, var(--frame93f15-clay-hi), var(--frame93f15-clay));
  color: #fff;
}

.frame93f15-help-section {
  margin: 14px 0;
  padding: 14px 13px 12px;
  border: 1px solid var(--frame93f15-line);
  border-radius: 8px;
  background: rgba(48, 48, 48, 0.58);
}

.frame93f15-help-section h2 {
  margin: 0 0 8px;
  color: var(--frame93f15-paper);
  font-size: 17px;
  line-height: 1.38;
  font-weight: 800;
}

.frame93f15-help-section h3 {
  margin: 14px 0 5px;
  color: var(--frame93f15-mint);
  font-size: 13.5px;
  line-height: 1.4;
}

.frame93f15-help-section p { margin: 0 0 10px; font-size: 12.9px; line-height: 1.7; }

.frame93f15-faq-list { display: grid; gap: 8px; margin-top: 10px; }

.frame93f15-faq-item {
  margin: 0;
  padding: 11px 12px 10px;
  border-left: 2px solid var(--frame93f15-clay);
  background: var(--frame93f15-ink-deep);
}

.frame93f15-faq-item dt {
  margin: 0 0 5px;
  color: var(--frame93f15-paper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.frame93f15-faq-item dd { margin: 0; color: var(--frame93f15-soft); font-size: 12.6px; line-height: 1.65; }

.frame93f15-signal-table { display: grid; gap: 7px; margin: 10px 0 4px; }

.frame93f15-signal-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 9px;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(64, 58, 52, 0.8);
}

.frame93f15-signal-row b { color: var(--frame93f15-mint); font-size: 11.5px; }
.frame93f15-signal-row span { font-size: 12.4px; line-height: 1.55; }

.frame93f15-callout {
  margin: 10px 0;
  padding: 11px 12px;
  border: 1px solid rgba(128, 203, 196, 0.3);
  border-radius: 5px;
  background: var(--frame93f15-mint-dim);
  color: var(--frame93f15-paper);
  font-size: 12.6px;
  line-height: 1.65;
}

.frame93f15-timeline { display: grid; gap: 0; margin: 10px 0 3px; }

.frame93f15-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 10px;
  padding: 0 0 14px;
}

.frame93f15-timeline-item:last-child { padding-bottom: 0; }

.frame93f15-timeline-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 27px;
  bottom: 0;
  width: 1px;
  background: rgba(128, 203, 196, 0.35);
}

.frame93f15-timeline-item:last-child::before { display: none; }

.frame93f15-timeline-num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--frame93f15-clay);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.frame93f15-timeline-copy { padding-top: 1px; }
.frame93f15-timeline-copy b { display: block; margin-bottom: 2px; color: var(--frame93f15-paper); font-size: 13px; }
.frame93f15-timeline-copy p { margin: 0; font-size: 12.7px; line-height: 1.62; }

.frame93f15-checklist { display: grid; gap: 7px; margin: 9px 0 3px; padding: 0; list-style: none; }
.frame93f15-checklist li { padding: 8px 10px 8px 28px; background: var(--frame93f15-ink-deep); font-size: 12.6px; line-height: 1.6; }
.frame93f15-checklist li::before { content: "✓"; float: left; margin-left: -18px; color: var(--frame93f15-mint); font-weight: 800; }

.frame93f15-route-strip {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  margin: 10px -1px 3px;
  padding: 2px 1px 7px;
  scrollbar-width: none;
}
.frame93f15-route-strip::-webkit-scrollbar { display: none; }
.frame93f15-route-strip a,
.frame93f15-route-strip-link { flex: none; min-height: 38px; padding: 8px 12px; border: 1px solid rgba(196, 103, 58, 0.6); border-radius: 5px; background: transparent; color: #f0c6ae; text-decoration: none; font: inherit; font-size: 11.8px; font-weight: 700; cursor: pointer; }

@media (max-width: 359px) {
  .frame93f15-help-actions { grid-template-columns: 1fr; }
  .frame93f15-signal-row { grid-template-columns: 1fr; gap: 3px; }
}
