/* =====================================================================
   d168.homes — layer sheet for the mobile game portal
   class token  : shelle7ed8-
   canvas       : 320-430px phone first, centered shell on wide screens
   palette      : #0C0C0C ink / #BAE1FF frost / #FF5722 flame /
                  #BF360C ember / #FFBF00 gold / #A9A9A9 ash
   shape system : pill buttons, square cards, mono accents
   ===================================================================== */

:root {
  --shelle7ed8-bg: #0C0C0C;
  --shelle7ed8-surface: #16171A;
  --shelle7ed8-surface-2: #1D1F23;
  --shelle7ed8-line: #2A2D32;
  --shelle7ed8-line-soft: #212428;
  --shelle7ed8-text: #BAE1FF;
  --shelle7ed8-muted: #A9A9A9;
  --shelle7ed8-dim: #7E8896;
  --shelle7ed8-flame: #FF5722;
  --shelle7ed8-flame-deep: #BF360C;
  --shelle7ed8-gold: #FFBF00;
  --shelle7ed8-gold-ink: #231800;
  --shelle7ed8-mono: "SFMono-Regular", ui-monospace, "Cascadia Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --shelle7ed8-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shelle7ed8-r-btn: 999px;
  --shelle7ed8-r-card: 6px;
  --shelle7ed8-top-h: 56px;
  --shelle7ed8-bnav-h: 60px;
  --shelle7ed8-shell-max: 480px;
}

/* ---------- base ------------------------------------------------- */

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #050506;
  color: var(--shelle7ed8-text);
  font-family: var(--shelle7ed8-sans);
  font-size: 15px;
  line-height: 1.5;
}

body.shelle7ed8-lock { overflow: hidden; }

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

h1, h2, h3, p, ul, ol, dl { margin: 0; }

ul, ol { padding: 0; list-style: none; }

a { color: var(--shelle7ed8-gold); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--shelle7ed8-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- phone canvas ------------------------------------------ */

.shelle7ed8-shell {
  position: relative;
  max-width: var(--shelle7ed8-shell-max);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--shelle7ed8-bg);
  border-inline: 1px solid #1B1D20;
}

.shelle7ed8-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 99;
  background: var(--shelle7ed8-gold);
  color: var(--shelle7ed8-gold-ink);
  font-family: var(--shelle7ed8-mono);
  font-size: 12px;
  padding: 10px 14px;
  border-radius: var(--shelle7ed8-r-card);
}

.shelle7ed8-skip:focus {
  left: 10px;
  top: 10px;
}

/* ---------- buttons (pill CTAs, compact dual groups) -------------- */

.shelle7ed8-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--shelle7ed8-r-btn);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
}

.shelle7ed8-btn-flame {
  background: linear-gradient(180deg, var(--shelle7ed8-flame), var(--shelle7ed8-flame-deep));
  color: #FFF4EE;
  box-shadow: 0 2px 10px rgba(191, 54, 12, .35);
}

/* motion budget: only key CTAs answer the press */
.shelle7ed8-btn-flame:active {
  transform: scale(.965);
}

.shelle7ed8-btn-ghost {
  background: rgba(186, 225, 255, .04);
  border-color: #3A3E44;
  color: var(--shelle7ed8-text);
}

.shelle7ed8-btn-gold {
  background: var(--shelle7ed8-gold);
  color: var(--shelle7ed8-gold-ink);
}

.shelle7ed8-btn-line {
  border-color: var(--shelle7ed8-flame);
  color: #FFB399;
  background: rgba(255, 87, 34, .08);
}

/* ---------- compact brand bar -------------------------------------- */

.shelle7ed8-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 6px;
  height: var(--shelle7ed8-top-h);
  padding: 0 8px 0 10px;
  background: rgba(12, 12, 12, .97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #26282C;
  box-shadow: 0 1px 0 rgba(191, 54, 12, .5);
}

.shelle7ed8-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  text-decoration: none;
  color: var(--shelle7ed8-text);
  font-family: var(--shelle7ed8-mono);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .05em;
}

.shelle7ed8-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #3A3E44;
}

.shelle7ed8-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

.shelle7ed8-actions .shelle7ed8-btn {
  min-height: 42px;
  padding: 0 11px;
  font-size: 12px;
}

/* burger knob */
.shelle7ed8-burger {
  width: 44px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: 1px solid #3A3E44;
  border-radius: var(--shelle7ed8-r-card);
}

.shelle7ed8-burger i {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--shelle7ed8-text);
  transition: transform .18s ease, opacity .18s ease;
}

.shelle7ed8-burger.shelle7ed8-burger-x i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.shelle7ed8-burger.shelle7ed8-burger-x i:nth-child(2) { opacity: 0; }
.shelle7ed8-burger.shelle7ed8-burger-x i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- stacked overlay menu ----------------------------------- */

.shelle7ed8-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  padding-top: var(--shelle7ed8-top-h);
  background: rgba(7, 8, 9, .94);
  backdrop-filter: blur(6px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.shelle7ed8-menu.shelle7ed8-open {
  opacity: 1;
  visibility: visible;
}

.shelle7ed8-menuin {
  max-width: var(--shelle7ed8-shell-max);
  margin: 0 auto;
  padding: 16px 14px 46px;
}

.shelle7ed8-mgroup {
  margin-bottom: 18px;
}

.shelle7ed8-mlabel {
  font-family: var(--shelle7ed8-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--shelle7ed8-gold);
  padding: 0 2px 8px;
}

.shelle7ed8-mrow {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 8px 12px;
  margin-bottom: 7px;
  background: var(--shelle7ed8-surface);
  border: 1px solid var(--shelle7ed8-line-soft);
  border-radius: var(--shelle7ed8-r-card);
  text-decoration: none;
  color: var(--shelle7ed8-text);
}

.shelle7ed8-mrow b {
  font-size: 14px;
  font-weight: 600;
}

.shelle7ed8-mrow span {
  margin-left: auto;
  font-family: var(--shelle7ed8-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--shelle7ed8-dim);
  text-align: right;
}

.shelle7ed8-mpair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

/* ---------- hero ---------------------------------------------------- */

.shelle7ed8-hero {
  padding: 18px 14px 6px;
}

.shelle7ed8-kicker {
  font-family: var(--shelle7ed8-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--shelle7ed8-gold);
}

.shelle7ed8-hero h1 {
  margin: 8px 0 10px;
  font-size: 22px;
  line-height: 1.32;
  font-weight: 800;
  color: #EAF5FF;
}

.shelle7ed8-hero h1 em {
  font-style: normal;
  color: var(--shelle7ed8-flame);
}

.shelle7ed8-lead {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--shelle7ed8-muted);
}

.shelle7ed8-ctapair {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.shelle7ed8-ctapair .shelle7ed8-btn { flex: 1; }

.shelle7ed8-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 16px;
}

.shelle7ed8-stat {
  background: var(--shelle7ed8-surface);
  border: 1px solid var(--shelle7ed8-line-soft);
  border-radius: var(--shelle7ed8-r-card);
  padding: 9px 4px;
  text-align: center;
}

.shelle7ed8-stat b {
  display: block;
  font-family: var(--shelle7ed8-mono);
  font-size: 13px;
  color: var(--shelle7ed8-gold);
}

.shelle7ed8-stat span {
  display: block;
  margin-top: 2px;
  font-size: 9.5px;
  line-height: 1.3;
  color: var(--shelle7ed8-dim);
}

/* ---------- banner carousel ----------------------------------------- */

.shelle7ed8-carowl {
  margin-top: 8px;
}

.shelle7ed8-ctrack {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.shelle7ed8-ctrack::-webkit-scrollbar { display: none; }

.shelle7ed8-cslide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 0;
  border: 0;
  background: none;
}

.shelle7ed8-cslide img {
  width: 100%;
  aspect-ratio: 640 / 260;
  object-fit: cover;
  border-radius: var(--shelle7ed8-r-card);
  border: 1px solid var(--shelle7ed8-line);
}

.shelle7ed8-cdots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 2px;
}

.shelle7ed8-cdots button {
  position: relative;
  width: 44px;
  height: 30px;
  padding: 0;
  background: none;
  border: 0;
}

.shelle7ed8-cdots button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 4px;
  border-radius: var(--shelle7ed8-r-btn);
  background: #3A3E44;
  transform: translate(-50%, -50%);
  transition: background .15s ease, width .15s ease;
}

.shelle7ed8-cdots button.shelle7ed8-on::before {
  width: 26px;
  background: var(--shelle7ed8-gold);
}

/* ---------- category shortcut strip --------------------------------- */

.shelle7ed8-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 14px 10px;
  scrollbar-width: none;
}

.shelle7ed8-chips::-webkit-scrollbar { display: none; }

.shelle7ed8-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--shelle7ed8-line);
  border-radius: var(--shelle7ed8-r-card);
  background: var(--shelle7ed8-surface);
  font-family: var(--shelle7ed8-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--shelle7ed8-text);
  white-space: nowrap;
}

.shelle7ed8-chip span { color: var(--shelle7ed8-gold); }

/* ---------- sections ------------------------------------------------ */

.shelle7ed8-section {
  padding: 24px 14px 8px;
  border-top: 1px solid var(--shelle7ed8-line-soft);
}

.shelle7ed8-secno {
  font-family: var(--shelle7ed8-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--shelle7ed8-gold);
}

.shelle7ed8-section h2 {
  margin: 7px 0 9px;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 800;
  color: #EAF5FF;
}

.shelle7ed8-secintro {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--shelle7ed8-muted);
}

.shelle7ed8-secintro a,
.shelle7ed8-seclinks a {
  color: var(--shelle7ed8-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* fact strip: quick figures before the grid */
.shelle7ed8-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 13px 0 14px;
  background: var(--shelle7ed8-surface);
  border: 1px solid var(--shelle7ed8-line-soft);
  border-radius: var(--shelle7ed8-r-card);
  overflow: hidden;
}

.shelle7ed8-facts div {
  padding: 9px 6px;
  text-align: center;
}

.shelle7ed8-facts div + div {
  border-left: 1px solid var(--shelle7ed8-line-soft);
}

.shelle7ed8-facts b {
  display: block;
  font-family: var(--shelle7ed8-mono);
  font-size: 12.5px;
  color: var(--shelle7ed8-gold);
}

.shelle7ed8-facts span {
  display: block;
  margin-top: 2px;
  font-size: 9.5px;
  line-height: 1.35;
  color: var(--shelle7ed8-dim);
}

/* ---------- game grid (pure image cards + short caption) ------------ */

.shelle7ed8-ggrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 8px;
}

.shelle7ed8-gcard {
  display: block;
  width: 100%;
  padding: 6px 4px 7px;
  background: var(--shelle7ed8-surface);
  border: 1px solid var(--shelle7ed8-line-soft);
  border-radius: var(--shelle7ed8-r-card);
  text-align: center;
}

.shelle7ed8-gcard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.shelle7ed8-gname {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 6px;
  min-height: 2.6em;
  font-size: 11px;
  line-height: 1.3;
  color: var(--shelle7ed8-text);
}

.shelle7ed8-seclinks {
  margin: 14px 0 6px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--shelle7ed8-dim);
}

/* ---------- promotion rows ------------------------------------------ */

.shelle7ed8-offer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  margin-bottom: 8px;
  background: var(--shelle7ed8-surface);
  border: 1px solid var(--shelle7ed8-line-soft);
  border-left: 3px solid var(--shelle7ed8-flame);
  border-radius: var(--shelle7ed8-r-card);
}

.shelle7ed8-offer-txt { flex: 1; min-width: 0; }

.shelle7ed8-offer h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: #EAF5FF;
}

.shelle7ed8-offer p {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--shelle7ed8-muted);
}

.shelle7ed8-offer .shelle7ed8-btn {
  flex: none;
  min-height: 44px;
  padding: 0 14px;
  font-size: 12px;
}

.shelle7ed8-finenote {
  margin-top: 10px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--shelle7ed8-dim);
}

.shelle7ed8-finenote b { color: var(--shelle7ed8-gold); font-weight: 600; }

/* ---------- steps ---------------------------------------------------- */

.shelle7ed8-steps li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--shelle7ed8-line-soft);
  counter-increment: shelle7ed8-step;
}

.shelle7ed8-steps { counter-reset: shelle7ed8-step; }

.shelle7ed8-stepno {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #231309;
  border: 1px solid var(--shelle7ed8-flame-deep);
  border-radius: var(--shelle7ed8-r-card);
  font-family: var(--shelle7ed8-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--shelle7ed8-gold);
}

.shelle7ed8-steps b {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #EAF5FF;
}

.shelle7ed8-steps p {
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--shelle7ed8-muted);
}

.shelle7ed8-tips {
  margin-top: 14px;
}

.shelle7ed8-tips li {
  position: relative;
  padding: 7px 0 7px 20px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--shelle7ed8-muted);
}

.shelle7ed8-tips li::before {
  content: "—";
  position: absolute;
  left: 2px;
  color: var(--shelle7ed8-gold);
  font-family: var(--shelle7ed8-mono);
}

/* ---------- RTP readout ---------------------------------------------- */

.shelle7ed8-rtp {
  margin: 13px 0;
  border: 1px solid var(--shelle7ed8-line);
  border-radius: var(--shelle7ed8-r-card);
  overflow: hidden;
}

.shelle7ed8-rtp div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--shelle7ed8-surface);
}

.shelle7ed8-rtp div + div { border-top: 1px solid var(--shelle7ed8-line-soft); }

.shelle7ed8-rtp-txt { flex: 1; min-width: 0; }

.shelle7ed8-rtp b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #EAF5FF;
}

.shelle7ed8-rtp span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--shelle7ed8-dim);
}

.shelle7ed8-rtp em {
  flex: none;
  font-style: normal;
  font-family: var(--shelle7ed8-mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--shelle7ed8-gold);
  white-space: nowrap;
}

/* ---------- feature tiles -------------------------------------------- */

.shelle7ed8-feats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.shelle7ed8-feat {
  padding: 13px 11px;
  background: var(--shelle7ed8-surface);
  border: 1px solid var(--shelle7ed8-line-soft);
  border-radius: var(--shelle7ed8-r-card);
}

.shelle7ed8-feat svg {
  width: 22px;
  height: 22px;
  color: var(--shelle7ed8-flame);
}

.shelle7ed8-feat h3 {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #EAF5FF;
}

.shelle7ed8-feat p {
  margin-top: 4px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--shelle7ed8-muted);
}

/* ---------- winners board --------------------------------------------- */

.shelle7ed8-winners li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: var(--shelle7ed8-surface);
  border: 1px solid var(--shelle7ed8-line-soft);
  border-radius: var(--shelle7ed8-r-card);
}

.shelle7ed8-winners .shelle7ed8-wid {
  flex: none;
  font-family: var(--shelle7ed8-mono);
  font-size: 12px;
  color: var(--shelle7ed8-text);
}

.shelle7ed8-winners .shelle7ed8-wgame {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: var(--shelle7ed8-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shelle7ed8-winners .shelle7ed8-wamt {
  flex: none;
  font-family: var(--shelle7ed8-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--shelle7ed8-gold);
}

/* ---------- selection checklist ---------------------------------------- */

.shelle7ed8-crit li {
  position: relative;
  padding: 10px 2px 10px 30px;
  border-bottom: 1px dashed var(--shelle7ed8-line-soft);
  font-size: 13px;
  line-height: 1.6;
  color: var(--shelle7ed8-muted);
}

.shelle7ed8-crit li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 10px;
  font-family: var(--shelle7ed8-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--shelle7ed8-gold);
}

.shelle7ed8-crit b { color: #EAF5FF; font-weight: 600; }

/* ---------- extended footer -------------------------------------------- */

.shelle7ed8-xfoot {
  margin-top: 26px;
  padding: 22px 14px 16px;
  background: #0E0F11;
  border-top: 1px solid var(--shelle7ed8-line);
}

.shelle7ed8-xbrand {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.shelle7ed8-xbrand img {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #3A3E44;
}

.shelle7ed8-xbrand p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--shelle7ed8-muted);
}

.shelle7ed8-xlabel {
  margin: 18px 0 9px;
  font-family: var(--shelle7ed8-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--shelle7ed8-gold);
}

/* page directory: wrapping shortcut chips */
.shelle7ed8-dir {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.shelle7ed8-dir a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 11px;
  background: var(--shelle7ed8-surface);
  border: 1px solid var(--shelle7ed8-line);
  border-radius: var(--shelle7ed8-r-card);
  font-family: var(--shelle7ed8-mono);
  font-size: 11px;
  text-decoration: none;
  color: var(--shelle7ed8-text);
  white-space: nowrap;
}

/* promotion shortcuts: one horizontal rail */
.shelle7ed8-xpromos {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: none;
}

.shelle7ed8-xpromos::-webkit-scrollbar { display: none; }

.shelle7ed8-xpromos .shelle7ed8-btn {
  flex: none;
  min-height: 44px;
  padding: 0 16px;
  font-size: 12.5px;
}

.shelle7ed8-xnote {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(191, 54, 12, .08);
  border: 1px solid rgba(191, 54, 12, .4);
  border-radius: var(--shelle7ed8-r-card);
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--shelle7ed8-muted);
}

.shelle7ed8-xnote b { color: var(--shelle7ed8-gold); font-weight: 600; }

/* ---------- common footer ---------------------------------------------- */

.shelle7ed8-foot {
  padding: 16px 14px calc(16px + var(--shelle7ed8-bnav-h) + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid var(--shelle7ed8-line-soft);
}

.shelle7ed8-foot p {
  font-family: var(--shelle7ed8-mono);
  font-size: 11px;
  letter-spacing: .03em;
  color: var(--shelle7ed8-dim);
}

.shelle7ed8-foot p + p {
  margin-top: 6px;
  font-size: 10px;
  text-transform: uppercase;
}

/* extra guard so long pages never end under the fixed bar */
.shelle7ed8-main {
  padding-bottom: calc(var(--shelle7ed8-bnav-h) + 26px + env(safe-area-inset-bottom));
}

/* ---------- segmented bottom action bar --------------------------------- */

.shelle7ed8-bnav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--shelle7ed8-shell-max);
  z-index: 70;
  display: flex;
  height: calc(var(--shelle7ed8-bnav-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(13, 14, 16, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid #26282C;
  box-shadow: 0 -1px 0 rgba(191, 54, 12, .45);
}

.shelle7ed8-bnav a,
.shelle7ed8-bnav button {
  flex: 1;
  min-width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 0 3px;
  background: none;
  border: 0;
  text-decoration: none;
  font-family: var(--shelle7ed8-mono);
  font-size: 10px;
  letter-spacing: .02em;
  color: #7E8896;
}

.shelle7ed8-bnav svg {
  width: 22px;
  height: 22px;
}

/* label reveal: dimmed at rest, bright when active */
.shelle7ed8-bnav span { opacity: .72; transition: opacity .15s ease, color .15s ease; }

/* active page: the icon fill flips to flame, the label to gold */
.shelle7ed8-bnav a.shelle7ed8-bnow { color: var(--shelle7ed8-flame); }
.shelle7ed8-bnav a.shelle7ed8-bnow span { opacity: 1; color: var(--shelle7ed8-gold); }

/* the two promo seats keep a gold identity */
.shelle7ed8-bnav .shelle7ed8-bpromo { color: var(--shelle7ed8-gold); }
.shelle7ed8-bnav .shelle7ed8-bpromo span { opacity: 1; }
.shelle7ed8-bnav .shelle7ed8-bpromo:active { transform: scale(.94); }

/* ---------- small helpers ---------------------------------------------- */

.shelle7ed8-gap { height: 8px; }

/* ---------- responsive ladder ------------------------------------------ */

@media (min-width: 375px) {
  body { font-size: 15.5px; }
  .shelle7ed8-hero h1 { font-size: 23px; }
  .shelle7ed8-section h2 { font-size: 19px; }
  .shelle7ed8-gname { font-size: 11.5px; }
  .shelle7ed8-chip { font-size: 11.5px; }
}

/* 430px and up: five game columns across the roomier canvas */
@media (min-width: 430px) {
  .shelle7ed8-ggrid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .shelle7ed8-hero h1 { font-size: 25px; }
  .shelle7ed8-section h2 { font-size: 20px; }
  .shelle7ed8-facts b { font-size: 13.5px; }
  .shelle7ed8-stats { gap: 8px; }
  .shelle7ed8-lead { font-size: 14px; }
  .shelle7ed8-secintro { font-size: 14px; }
}

/* ---------- help page compositions -------------------------------------- */

.shelle7ed8-help-hero {
  margin: 10px 14px 0;
  padding: 18px 14px 20px;
  background: linear-gradient(135deg, #17191D 0%, #21140F 100%);
  border: 1px solid #3A2B24;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 191, 0, .08);
}

.shelle7ed8-help-hero .shelle7ed8-kicker { margin-bottom: 8px; }
.shelle7ed8-help-hero h1 { font-size: 23px; line-height: 1.3; color: #EAF5FF; }
.shelle7ed8-help-hero p { margin-top: 10px; color: var(--shelle7ed8-muted); font-size: 13.5px; line-height: 1.7; }
.shelle7ed8-help-hero .shelle7ed8-ctapair { margin-top: 15px; }

.shelle7ed8-answer {
  margin: 12px 0 16px;
  padding: 12px 13px;
  border-left: 3px solid var(--shelle7ed8-gold);
  background: #17181B;
  color: #D9EAF7;
  font-size: 13px;
  line-height: 1.7;
}

.shelle7ed8-help-block { padding-top: 22px; }
.shelle7ed8-help-block h2 { margin-bottom: 8px; }
.shelle7ed8-help-block > p { color: var(--shelle7ed8-muted); font-size: 13.5px; line-height: 1.7; }
.shelle7ed8-help-block > p + p { margin-top: 10px; }

.shelle7ed8-checklist { margin-top: 13px; counter-reset: helpcheck; }
.shelle7ed8-checklist li {
  counter-increment: helpcheck;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--shelle7ed8-line-soft);
  color: var(--shelle7ed8-muted);
  font-size: 13px;
  line-height: 1.65;
}
.shelle7ed8-checklist li::before {
  content: counter(helpcheck, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #231309;
  border: 1px solid var(--shelle7ed8-flame-deep);
  border-radius: 4px;
  color: var(--shelle7ed8-gold);
  font-family: var(--shelle7ed8-mono);
  font-size: 11px;
  font-weight: 700;
}
.shelle7ed8-checklist b, .shelle7ed8-help-block strong { color: #EAF5FF; font-weight: 700; }

.shelle7ed8-callouts { display: grid; gap: 8px; margin-top: 13px; }
.shelle7ed8-callout {
  padding: 13px;
  background: var(--shelle7ed8-surface);
  border: 1px solid var(--shelle7ed8-line-soft);
  border-radius: 6px;
}
.shelle7ed8-callout h3 { font-size: 14px; color: var(--shelle7ed8-gold); }
.shelle7ed8-callout p { margin-top: 5px; color: var(--shelle7ed8-muted); font-size: 12.5px; line-height: 1.65; }

.shelle7ed8-promo-rail { display: flex; gap: 8px; overflow-x: auto; padding: 3px 0 7px; scrollbar-width: none; }
.shelle7ed8-promo-rail::-webkit-scrollbar { display: none; }
.shelle7ed8-promo-rail .shelle7ed8-btn { flex: none; min-height: 46px; }

.shelle7ed8-faqs { margin-top: 12px; }
.shelle7ed8-faqs details { border-top: 1px solid var(--shelle7ed8-line-soft); padding: 11px 0; }
.shelle7ed8-faqs details:last-child { border-bottom: 1px solid var(--shelle7ed8-line-soft); }
.shelle7ed8-faqs summary { cursor: pointer; color: #EAF5FF; font-size: 13.5px; font-weight: 700; padding-right: 20px; }
.shelle7ed8-faqs details p { margin-top: 7px; color: var(--shelle7ed8-muted); font-size: 12.5px; line-height: 1.7; }

.shelle7ed8-review-grid { display: grid; gap: 8px; margin-top: 13px; }
.shelle7ed8-review-row { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 10px; padding: 11px 12px; background: var(--shelle7ed8-surface); border-left: 3px solid var(--shelle7ed8-flame); }
.shelle7ed8-review-row b { color: var(--shelle7ed8-gold); font-family: var(--shelle7ed8-mono); font-size: 11px; }
.shelle7ed8-review-row span { color: var(--shelle7ed8-muted); font-size: 12.5px; line-height: 1.55; }

.shelle7ed8-signal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  background: rgba(255, 87, 34, .08);
  border: 1px solid rgba(255, 87, 34, .35);
  border-radius: 6px;
  color: var(--shelle7ed8-muted);
  font-size: 12.5px;
  line-height: 1.65;
}
.shelle7ed8-signal b { flex: none; color: var(--shelle7ed8-flame); font-family: var(--shelle7ed8-mono); }

.shelle7ed8-timeline { margin-top: 13px; border-left: 1px solid var(--shelle7ed8-flame-deep); padding-left: 16px; }
.shelle7ed8-timeline li { position: relative; padding: 0 0 16px; color: var(--shelle7ed8-muted); font-size: 13px; line-height: 1.65; }
.shelle7ed8-timeline li::before { content: ""; position: absolute; left: -21px; top: 5px; width: 8px; height: 8px; border-radius: 50%; background: var(--shelle7ed8-gold); box-shadow: 0 0 0 3px #231309; }
.shelle7ed8-timeline b { display: block; margin-bottom: 3px; color: #EAF5FF; }

.shelle7ed8-scorebar { margin-top: 13px; }
.shelle7ed8-scorebar li { display: grid; grid-template-columns: 110px minmax(0, 1fr) 36px; align-items: center; gap: 8px; padding: 8px 0; color: var(--shelle7ed8-muted); font-size: 12px; }
.shelle7ed8-scorebar i { height: 7px; overflow: hidden; background: #292C31; border-radius: 99px; }
.shelle7ed8-scorebar i::after { content: ""; display: block; height: 100%; width: var(--score); background: linear-gradient(90deg, var(--shelle7ed8-flame-deep), var(--shelle7ed8-gold)); border-radius: inherit; }
.shelle7ed8-scorebar b { font-family: var(--shelle7ed8-mono); font-size: 11px; text-align: right; color: var(--shelle7ed8-gold); }

.shelle7ed8-help-table { width: 100%; margin-top: 13px; border-collapse: collapse; font-size: 12px; }
.shelle7ed8-help-table th, .shelle7ed8-help-table td { padding: 9px 7px; border-bottom: 1px solid var(--shelle7ed8-line-soft); text-align: left; vertical-align: top; }
.shelle7ed8-help-table th { color: var(--shelle7ed8-gold); font-family: var(--shelle7ed8-mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.shelle7ed8-help-table td { color: var(--shelle7ed8-muted); line-height: 1.55; }

.shelle7ed8-help-links { display: grid; gap: 7px; margin-top: 12px; }
.shelle7ed8-help-links a { display: block; padding: 11px 12px; background: var(--shelle7ed8-surface); border: 1px solid var(--shelle7ed8-line-soft); color: var(--shelle7ed8-text); text-decoration: none; font-size: 13px; }
.shelle7ed8-help-links a::after { content: "  →"; color: var(--shelle7ed8-gold); }

/* ---------- motion preferences ------------------------------------------ */

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