/* ============================================================
   Game 365 — dynamic-906415-shell.css
   Mobile-first base stylesheet for game365.cfd
   All class names use the view64156- prefix.
   Palette: #2D2D2D / #A9A9A9 / #FFD700 / #FF8C00 / #FF7F50 / #FFAA00
   Direction: monospace accents + regular body, round buttons /
   square cards, compact square game catalog, conclusion-first
   rhythm, restrained CTA feedback, lightly rounded text buttons.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --view64156-bg: #2D2D2D;
  --view64156-bg-elev: #343434;
  --view64156-bg-deep: #1F1F1F;
  --view64156-bg-soft: #3A3A3A;
  --view64156-bg-softer: #424242;

  --view64156-text: #A9A9A9;
  --view64156-text-bright: #ECECEC;
  --view64156-text-dim: #8C8C8C;
  --view64156-text-faint: #6E6E6E;

  --view64156-gold: #FFD700;
  --view64156-orange: #FF8C00;
  --view64156-coral: #FF7F50;
  --view64156-amber: #FFAA00;

  --view64156-line: rgba(255, 215, 0, 0.18);
  --view64156-line-soft: rgba(169, 169, 169, 0.18);
  --view64156-line-strong: rgba(255, 170, 0, 0.40);

  --view64156-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  --view64156-shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.32);

  --view64156-radius-card: 4px;
  --view64156-radius-btn: 999px;
  --view64156-radius-chip: 6px;

  --view64156-mono: "SFMono-Regular", ui-monospace, "Cascadia Mono", Menlo, Consolas, "Courier New", monospace;
  --view64156-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --view64156-header-h: 92px;
  --view64156-bottom-h: 64px;
  --view64156-safe-bottom: env(safe-area-inset-bottom, 0px);

  --view64156-tap: 44px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--view64156-body);
  background: #121212;
  color: var(--view64156-text-bright);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
input, textarea { font-family: inherit; }
:focus-visible {
  outline: 2px solid var(--view64156-gold);
  outline-offset: 2px;
}

/* ---------- Phone canvas ---------- */
.view64156-shell {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(120% 50% at 50% -8%, rgba(255, 140, 0, 0.12), transparent 62%),
    radial-gradient(80% 30% at 50% 0%, rgba(255, 215, 0, 0.06), transparent 70%),
    linear-gradient(180deg, var(--view64156-bg) 0%, var(--view64156-bg-deep) 100%);
  box-shadow: var(--view64156-shadow);
  overflow: hidden;
}

/* ---------- Header ---------- */
.view64156-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.97), rgba(31, 31, 31, 0.93));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--view64156-line);
}

.view64156-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 14px 4px;
}

.view64156-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.view64156-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.45), 0 3px 10px rgba(0, 0, 0, 0.45);
}

.view64156-wordmark {
  font-family: var(--view64156-mono);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--view64156-gold);
  white-space: nowrap;
}
.view64156-wordmark b { color: var(--view64156-amber); font-weight: 700; }
.view64156-wordmark small {
  display: block;
  font-family: var(--view64156-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--view64156-text-dim);
  margin-top: 1px;
}

.view64156-icon-btn {
  width: 40px;
  height: 40px;
  min-width: var(--view64156-tap);
  min-height: var(--view64156-tap);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--view64156-text-bright);
  border: 1px solid var(--view64156-line-soft);
  background: rgba(255, 255, 255, 0.02);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.view64156-icon-btn svg { width: 20px; height: 20px; display: block; }
.view64156-icon-btn:hover { color: var(--view64156-gold); border-color: var(--view64156-line); }
.view64156-icon-btn[aria-expanded="true"] {
  color: var(--view64156-gold);
  border-color: var(--view64156-line);
  background: rgba(255, 215, 0, 0.08);
}

.view64156-action-row {
  display: flex;
  gap: 8px;
  padding: 2px 14px 10px;
}

/* ---------- Buttons ---------- */
.view64156-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: var(--view64156-tap);
  padding: 0 18px;
  border-radius: var(--view64156-radius-btn);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform .12s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.view64156-btn svg { width: 16px; height: 16px; }

.view64156-btn-primary {
  flex: 1;
  background: linear-gradient(135deg, var(--view64156-orange) 0%, var(--view64156-gold) 100%);
  color: #1A1205;
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.32);
}
.view64156-btn-primary:hover { box-shadow: 0 6px 22px rgba(255, 170, 0, 0.45); }
.view64156-btn-primary:active { transform: translateY(1px); box-shadow: 0 2px 8px rgba(255, 140, 0, 0.28); }

.view64156-btn-ghost {
  background: transparent;
  color: var(--view64156-text-bright);
  border: 1px solid var(--view64156-line);
  padding: 0 16px;
}
.view64156-btn-ghost:hover { background: rgba(255, 215, 0, 0.08); color: var(--view64156-gold); }
.view64156-btn-ghost:active { transform: translateY(1px); }

.view64156-btn-amber {
  background: rgba(255, 170, 0, 0.14);
  color: var(--view64156-amber);
  border: 1px solid rgba(255, 170, 0, 0.40);
}
.view64156-btn-amber:hover { background: rgba(255, 170, 0, 0.22); }

/* ---------- Layered dropdown menu ---------- */
.view64156-menu {
  position: absolute;
  top: var(--view64156-header-h);
  left: 0;
  right: 0;
  z-index: 55;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.99), rgba(24, 24, 24, 0.99));
  border-bottom: 1px solid var(--view64156-line);
  box-shadow: var(--view64156-shadow);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
  max-height: calc(100vh - var(--view64156-header-h));
  overflow-y: auto;
}
.view64156-menu[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.view64156-menu-inner { padding: 14px 14px 22px; }

.view64156-menu-layer { margin-bottom: 16px; }
.view64156-menu-layer:last-child { margin-bottom: 0; }
.view64156-menu-label {
  font-family: var(--view64156-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--view64156-amber);
  margin: 0 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.view64156-menu-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--view64156-line-soft);
}
.view64156-menu-list { display: grid; grid-template-columns: 1fr; gap: 2px; }
.view64156-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--view64156-radius-chip);
  color: var(--view64156-text-bright);
  font-size: 14px;
  font-weight: 500;
  min-height: var(--view64156-tap);
  transition: background .16s ease, color .16s ease;
}
.view64156-menu-item:hover { background: rgba(255, 215, 0, 0.07); color: var(--view64156-gold); }
.view64156-menu-item svg { width: 18px; height: 18px; color: var(--view64156-amber); flex-shrink: 0; }
.view64156-menu-item span { flex: 1; }
.view64156-menu-item em {
  font-style: normal;
  font-family: var(--view64156-mono);
  font-size: 10px;
  color: var(--view64156-text-faint);
  letter-spacing: 0.1em;
}

.view64156-menu-cta {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ---------- Main ---------- */
.view64156-main {
  padding-bottom: calc(var(--view64156-bottom-h) + var(--view64156-safe-bottom) + 22px);
}
.view64156-section { padding: 18px 14px 4px; }
.view64156-section + .view64156-section { padding-top: 8px; }

/* ---------- Hero carousel ---------- */
.view64156-hero { padding: 14px 14px 6px; }

.view64156-carousel {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--view64156-line);
  background: #0e0e0e;
  box-shadow: var(--view64156-shadow-soft);
}

.view64156-viewport {
  overflow: hidden;
}
.view64156-track {
  display: flex;
  transition: transform .42s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.view64156-slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  min-height: 168px;
  cursor: pointer;
}
.view64156-slide img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  max-height: 210px;
  object-fit: cover;
}
.view64156-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  pointer-events: none;
}
.view64156-slide-tag {
  font-family: var(--view64156-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--view64156-amber);
  margin-bottom: 4px;
}
.view64156-slide-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.view64156-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--view64156-orange), var(--view64156-gold));
  color: #1A1205;
  border-radius: var(--view64156-radius-btn);
  font-size: 11px;
  font-weight: 700;
  width: max-content;
}

.view64156-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.62);
  color: #fff;
  border: 1px solid var(--view64156-line-soft);
  z-index: 3;
  font-size: 18px;
  line-height: 1;
}
.view64156-arrow:hover { background: rgba(255, 140, 0, 0.85); color: #1A1205; }
.view64156-arrow-prev { left: 8px; }
.view64156-arrow-next { right: 8px; }

.view64156-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.view64156-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  padding: 0;
  transition: background .2s ease, width .2s ease;
}
.view64156-dot[data-active="true"] {
  background: var(--view64156-gold);
  width: 18px;
  border-radius: 999px;
}

/* ---------- Trust strip ---------- */
.view64156-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px 14px 4px;
}
.view64156-trust-cell {
  border: 1px solid var(--view64156-line-soft);
  border-radius: var(--view64156-radius-card);
  padding: 8px 6px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}
.view64156-trust-num {
  font-family: var(--view64156-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--view64156-gold);
  line-height: 1.1;
}
.view64156-trust-cap {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--view64156-text-dim);
  margin-top: 3px;
}

/* ---------- Section heading ---------- */
.view64156-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.view64156-head-text { min-width: 0; }
.view64156-head-eyebrow {
  font-family: var(--view64156-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--view64156-amber);
  margin-bottom: 3px;
}
.view64156-head h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--view64156-text-bright);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.view64156-head-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--view64156-gold);
  white-space: nowrap;
  padding: 6px 4px;
  min-height: auto;
}
.view64156-head-link::after { content: " \203A"; }

/* ---------- Game grid ---------- */
.view64156-game-block { padding: 6px 14px 4px; }

.view64156-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.view64156-game-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: var(--view64156-radius-card);
  background: var(--view64156-bg-elev);
  border: 1px solid var(--view64156-line-soft);
  overflow: hidden;
  transition: transform .14s ease, border-color .2s ease, box-shadow .2s ease;
  min-width: 0;
}
.view64156-game-card:hover {
  transform: translateY(-2px);
  border-color: var(--view64156-line);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.view64156-game-card:active { transform: translateY(0); }

.view64156-game-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0c0c0c;
  overflow: hidden;
}
.view64156-game-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.view64156-game-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-family: var(--view64156-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
  background: rgba(255, 140, 0, 0.9);
  color: #1A1205;
  font-weight: 700;
}
.view64156-game-badge[data-tone="hot"] { background: linear-gradient(135deg, var(--view64156-coral), var(--view64156-orange)); color: #1A1205; }
.view64156-game-badge[data-tone="new"] { background: var(--view64156-amber); color: #1A1205; }

.view64156-game-name {
  display: block;
  padding: 6px 6px 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--view64156-text-bright);
  text-align: center;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 32px;
  word-break: break-word;
}

/* ---------- Inline promo banner ---------- */
.view64156-promo-strip {
  margin: 14px 14px 4px;
  padding: 12px 14px;
  border-radius: var(--view64156-radius-card);
  border: 1px solid var(--view64156-line);
  background:
    linear-gradient(135deg, rgba(255, 140, 0, 0.14), rgba(255, 215, 0, 0.06)),
    var(--view64156-bg-elev);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.view64156-promo-strip-text { min-width: 0; }
.view64156-promo-strip-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--view64156-text-bright);
}
.view64156-promo-strip-sub {
  font-size: 12px;
  color: var(--view64156-text);
  margin-top: 2px;
}

/* ---------- Content modules ---------- */
.view64156-module {
  margin: 18px 14px 4px;
  padding: 16px 14px;
  border: 1px solid var(--view64156-line-soft);
  border-radius: var(--view64156-radius-card);
  background: rgba(255, 255, 255, 0.015);
}
.view64156-module-eyebrow {
  font-family: var(--view64156-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--view64156-amber);
  margin-bottom: 4px;
}
.view64156-module h2 {
  font-size: 16px;
  font-weight: 800;
  color: var(--view64156-text-bright);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.view64156-module p {
  color: var(--view64156-text);
  font-size: 13.5px;
  margin-bottom: 10px;
}
.view64156-module p:last-child { margin-bottom: 0; }
.view64156-module p strong, .view64156-module strong {
  color: var(--view64156-text-bright);
  font-weight: 700;
}
.view64156-module a.view64156-inline-link {
  color: var(--view64156-gold);
  font-weight: 600;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.4);
}
.view64156-module a.view64156-inline-link:hover { color: var(--view64156-amber); }

.view64156-lead {
  font-size: 14px;
  color: var(--view64156-text-bright);
}

/* ---------- Features grid ---------- */
.view64156-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}
.view64156-feature {
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--view64156-line-soft);
  border-radius: var(--view64156-radius-card);
  background: rgba(255, 255, 255, 0.02);
  align-items: flex-start;
}
.view64156-feature-ico {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 170, 0, 0.12);
  border: 1px solid rgba(255, 170, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--view64156-amber);
}
.view64156-feature-ico svg { width: 18px; height: 18px; }
.view64156-feature h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--view64156-text-bright);
  margin-bottom: 2px;
}
.view64156-feature p {
  font-size: 12.5px;
  color: var(--view64156-text);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Selection guide steps ---------- */
.view64156-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}
.view64156-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 10px;
  border-left: 2px solid var(--view64156-orange);
  background: rgba(255, 140, 0, 0.05);
  border-radius: 0 var(--view64156-radius-card) var(--view64156-radius-card) 0;
}
.view64156-step-num {
  font-family: var(--view64156-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--view64156-gold);
  flex-shrink: 0;
  width: 22px;
}
.view64156-step-text { font-size: 13px; color: var(--view64156-text); line-height: 1.5; }
.view64156-step-text strong { color: var(--view64156-text-bright); }

/* ---------- Term list ---------- */
.view64156-terms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.view64156-term {
  padding: 9px 11px;
  border: 1px solid var(--view64156-line-soft);
  border-radius: var(--view64156-radius-card);
  background: rgba(255, 255, 255, 0.02);
}
.view64156-term-key {
  font-family: var(--view64156-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--view64156-gold);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.view64156-term-val { font-size: 12.5px; color: var(--view64156-text); line-height: 1.5; }

/* ---------- FAQ ---------- */
.view64156-faq { display: grid; grid-template-columns: 1fr; gap: 8px; }
.view64156-faq-item {
  border: 1px solid var(--view64156-line-soft);
  border-radius: var(--view64156-radius-card);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.view64156-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--view64156-text-bright);
  min-height: var(--view64156-tap);
}
.view64156-faq-q:hover { color: var(--view64156-gold); }
.view64156-faq-q .view64156-faq-mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--view64156-line);
  color: var(--view64156-amber);
  font-size: 16px;
  transition: transform .2s ease;
}
.view64156-faq-item[data-open="true"] .view64156-faq-mark { transform: rotate(45deg); color: var(--view64156-gold); }
.view64156-faq-a {
  padding: 0 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 12.5px;
  color: var(--view64156-text);
  line-height: 1.55;
}
.view64156-faq-item[data-open="true"] .view64156-faq-a {
  padding: 0 12px 12px;
  max-height: 320px;
}

/* ---------- Download block ---------- */
.view64156-download {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}
.view64156-download-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--view64156-line-soft);
  border-radius: var(--view64156-radius-card);
  background: rgba(255, 255, 255, 0.02);
}
.view64156-download-row strong { color: var(--view64156-text-bright); font-size: 13px; }
.view64156-download-row span { font-size: 12px; color: var(--view64156-text); }
.view64156-download-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 6px;
}
.view64156-spec {
  padding: 8px 10px;
  border: 1px solid var(--view64156-line-soft);
  border-radius: var(--view64156-radius-card);
  background: rgba(255, 170, 0, 0.04);
}
.view64156-spec-k {
  font-family: var(--view64156-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--view64156-text-dim);
}
.view64156-spec-v { font-size: 12.5px; color: var(--view64156-text-bright); font-weight: 600; margin-top: 2px; }

/* ---------- Extended footer ---------- */
.view64156-ext {
  margin: 22px 14px 4px;
  border-top: 1px solid var(--view64156-line);
  padding-top: 18px;
}
.view64156-ext-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.view64156-ext-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.4);
}
.view64156-ext-brand-text h3 {
  font-family: var(--view64156-mono);
  font-size: 14px;
  color: var(--view64156-gold);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.view64156-ext-brand-text p {
  font-size: 12.5px;
  color: var(--view64156-text);
  line-height: 1.55;
}

.view64156-ext-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 10px;
  margin-bottom: 18px;
}
.view64156-ext-col h4 {
  font-family: var(--view64156-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--view64156-amber);
  margin-bottom: 8px;
}
.view64156-ext-col ul { display: grid; gap: 6px; }
.view64156-ext-col a {
  font-size: 12.5px;
  color: var(--view64156-text);
  line-height: 1.4;
}
.view64156-ext-col a:hover { color: var(--view64156-gold); }

.view64156-ext-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.view64156-ext-promo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 10px;
  border: 1px solid var(--view64156-line);
  border-radius: var(--view64156-radius-card);
  background: rgba(255, 140, 0, 0.06);
}
.view64156-ext-promo-t { font-size: 12px; font-weight: 700; color: var(--view64156-gold); }
.view64156-ext-promo-s { font-size: 10.5px; color: var(--view64156-text-dim); line-height: 1.35; }

.view64156-ext-disclaimer {
  font-size: 11px;
  color: var(--view64156-text-faint);
  line-height: 1.55;
  padding: 10px 12px;
  border: 1px dashed var(--view64156-line-soft);
  border-radius: var(--view64156-radius-card);
}

/* ---------- Copyright footer ---------- */
.view64156-footer {
  padding: 16px 14px 10px;
  margin: 8px 14px 0;
  border-top: 1px solid var(--view64156-line-soft);
  text-align: center;
}
.view64156-footer-copy {
  font-size: 11px;
  color: var(--view64156-text-faint);
  letter-spacing: 0.04em;
}
.view64156-footer-copy b { color: var(--view64156-text-dim); }

/* ---------- Bottom navigation ---------- */
.view64156-bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 430px;
  height: calc(var(--view64156-bottom-h) + var(--view64156-safe-bottom));
  padding-bottom: var(--view64156-safe-bottom);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.96), rgba(18, 18, 18, 0.98));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--view64156-line);
  z-index: 70;
}
.view64156-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 2px 4px;
  min-height: var(--view64156-bottom-h);
  color: var(--view64156-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color .18s ease;
}
.view64156-nav-item svg { width: 22px; height: 22px; display: block; }
.view64156-nav-item:hover { color: var(--view64156-text-bright); }

.view64156-nav-item.view64156-active { color: var(--view64156-gold); }
.view64156-nav-item.view64156-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--view64156-orange), var(--view64156-gold));
  box-shadow: 0 0 8px rgba(255, 170, 0, 0.6);
}

.view64156-nav-item.view64156-nav-promo { color: var(--view64156-amber); }
.view64156-nav-item.view64156-nav-promo::after {
  content: "";
  position: absolute;
  top: 6px;
  right: calc(50% - 18px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--view64156-coral);
  box-shadow: 0 0 6px rgba(255, 127, 80, 0.8);
}
.view64156-nav-center {
  position: relative;
}
.view64156-nav-center svg {
  width: 26px;
  height: 26px;
}
.view64156-nav-pill {
  width: 46px;
  height: 46px;
  margin-top: -16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--view64156-orange), var(--view64156-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1205;
  box-shadow: 0 4px 14px rgba(255, 140, 0, 0.5), 0 0 0 4px rgba(31, 31, 31, 0.96);
}
.view64156-nav-center .view64156-nav-label {
  margin-top: 2px;
}

/* ---------- Responsive tweaks ---------- */
@media (min-width: 360px) {
  .view64156-game-grid { gap: 9px; }
  .view64156-game-name { font-size: 11.5px; }
}
@media (min-width: 393px) {
  .view64156-game-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .view64156-ext-promos { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 414px) {
  .view64156-game-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .view64156-wordmark { font-size: 18px; }
  .view64156-slide-title { font-size: 19px; }
}

/* ---------- Utility ---------- */
.view64156-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.view64156-hide { display: none !important; }

/* ---------- Motion / scrim ---------- */
.view64156-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.view64156-scrim[data-open="true"] { opacity: 1; visibility: visible; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .view64156-track { transition: none !important; }
}

/* ---------- Help page compositions ---------- */
.view64156-help-hero { padding: 20px 14px 12px; }
.view64156-help-kicker { font-family: var(--view64156-mono); color: var(--view64156-amber); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 7px; }
.view64156-help-hero h1 { color: var(--view64156-text-bright); font-size: 24px; line-height: 1.18; letter-spacing: -.02em; margin-bottom: 9px; }
.view64156-help-hero p { color: var(--view64156-text); font-size: 14px; line-height: 1.65; }
.view64156-answer { margin: 8px 14px 16px; padding: 14px; border-left: 3px solid var(--view64156-gold); background: linear-gradient(135deg, rgba(255,170,0,.14), rgba(255,140,0,.04)); }
.view64156-answer strong { display: block; color: var(--view64156-gold); font-family: var(--view64156-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px; }
.view64156-answer p { color: var(--view64156-text-bright); font-size: 14px; line-height: 1.55; }
.view64156-help-section { margin: 12px 14px; padding: 16px 14px; border-top: 1px solid var(--view64156-line); background: rgba(255,255,255,.018); }
.view64156-help-section h2 { color: var(--view64156-text-bright); font-size: 18px; line-height: 1.3; margin-bottom: 9px; }
.view64156-help-section h3 { color: var(--view64156-amber); font-size: 14px; line-height: 1.35; margin: 16px 0 5px; }
.view64156-help-section p { color: var(--view64156-text); font-size: 13.5px; line-height: 1.65; margin-bottom: 10px; }
.view64156-help-section p:last-child { margin-bottom: 0; }
.view64156-help-section a { color: var(--view64156-gold); border-bottom: 1px dashed var(--view64156-line); font-weight: 600; }
.view64156-checklist { display: grid; gap: 7px; margin-top: 10px; }
.view64156-checklist li { position: relative; padding: 10px 10px 10px 34px; border: 1px solid var(--view64156-line-soft); color: var(--view64156-text); font-size: 13px; line-height: 1.5; }
.view64156-checklist li::before { content: "✓"; position: absolute; left: 11px; top: 9px; color: var(--view64156-gold); font-family: var(--view64156-mono); font-weight: 700; }
.view64156-route { display: grid; gap: 8px; margin-top: 10px; }
.view64156-route-item { display: grid; grid-template-columns: 72px 1fr; gap: 10px; align-items: start; padding: 10px; background: rgba(255,140,0,.05); border-right: 2px solid var(--view64156-orange); }
.view64156-route-item b { color: var(--view64156-gold); font-family: var(--view64156-mono); font-size: 11px; }
.view64156-route-item span { color: var(--view64156-text); font-size: 12.5px; line-height: 1.5; }
.view64156-compare { display: grid; gap: 8px; margin-top: 10px; }
.view64156-compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.view64156-compare-cell { padding: 10px; border: 1px solid var(--view64156-line-soft); min-width: 0; }
.view64156-compare-cell b { display: block; color: var(--view64156-text-bright); font-size: 12px; margin-bottom: 3px; }
.view64156-compare-cell span { color: var(--view64156-text); font-size: 12px; line-height: 1.45; }
.view64156-prompt-list { display: grid; gap: 8px; margin-top: 10px; counter-reset: view64156-step; }
.view64156-prompt-list li { counter-increment: view64156-step; padding: 11px 11px 11px 39px; position: relative; color: var(--view64156-text); font-size: 13px; line-height: 1.55; border-bottom: 1px solid var(--view64156-line-soft); }
.view64156-prompt-list li::before { content: counter(view64156-step, decimal-leading-zero); position: absolute; left: 0; top: 11px; color: var(--view64156-orange); font: 700 12px var(--view64156-mono); }
.view64156-callout { margin-top: 12px; padding: 12px; border: 1px solid var(--view64156-line-strong); background: rgba(255,215,0,.05); }
.view64156-callout b { color: var(--view64156-gold); font-size: 13px; }
.view64156-callout p { margin-top: 4px; font-size: 12.5px; }
.view64156-tip-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 12px; }
.view64156-tip-table th, .view64156-tip-table td { padding: 9px 7px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--view64156-line-soft); }
.view64156-tip-table th { color: var(--view64156-amber); font-family: var(--view64156-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.view64156-tip-table td { color: var(--view64156-text); line-height: 1.45; }
.view64156-help-cta { margin: 16px 14px; padding: 14px; display: flex; align-items: center; gap: 10px; background: linear-gradient(110deg, rgba(255,127,80,.15), rgba(255,215,0,.07)); border: 1px solid var(--view64156-line); }
.view64156-help-cta p { flex: 1; color: var(--view64156-text-bright); font-size: 13px; line-height: 1.45; }
.view64156-help-cta .view64156-btn { flex: 0 0 auto; padding: 0 13px; font-size: 12px; }
.view64156-glossary { display: grid; gap: 7px; margin-top: 10px; }
.view64156-glossary dt { color: var(--view64156-gold); font: 700 12px var(--view64156-mono); }
.view64156-glossary dd { margin: 0 0 4px; color: var(--view64156-text); font-size: 12.5px; line-height: 1.5; }
.view64156-mini-nav { display: flex; gap: 8px; overflow-x: auto; padding: 2px 14px 12px; scrollbar-width: none; }
.view64156-mini-nav a { flex: 0 0 auto; min-height: 44px; display: inline-flex; align-items: center; padding: 0 12px; border: 1px solid var(--view64156-line-soft); color: var(--view64156-text); font-size: 12px; }
.view64156-mini-nav a:hover { color: var(--view64156-gold); border-color: var(--view64156-line); }

@media (min-width: 390px) {
  .view64156-help-section { padding-left: 16px; padding-right: 16px; }
  .view64156-help-hero h1 { font-size: 26px; }
}
