/* ==========================================================================
   ph888 - dynamic-0de438-display.css
   Mobile-first Philippine casino lobby styling.
   Palette: #0F0F23 deep / #FFB74D amber / #F8F8FF text / #D3D3D3 soft / #3C3C3C gray
   All class names and CSS variables use the shelle4388- prefix.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Core palette */
  --shelle4388-bg-deep: #0F0F23;
  --shelle4388-bg-elev: #15152E;
  --shelle4388-bg-soft: #1C1C3C;
  --shelle4388-bg-card: #181834;
  --shelle4388-amber: #FFB74D;
  --shelle4388-amber-strong: #FF9A1F;
  --shelle4388-amber-soft: rgba(255, 183, 77, 0.16);
  --shelle4388-text: #F8F8FF;
  --shelle4388-text-soft: #D3D3D3;
  --shelle4388-text-dim: #9090B0;
  --shelle4388-line: #2A2A4C;
  --shelle4388-line-soft: #21213F;
  --shelle4388-gray: #3C3C3C;
  --shelle4388-good: #5BD3A0;
  --shelle4388-warn: #FF6B6B;

  /* Typography */
  --shelle4388-font-display: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --shelle4388-font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Near-right-angle tool feel */
  --shelle4388-r-xs: 2px;
  --shelle4388-r-sm: 4px;
  --shelle4388-r-md: 6px;
  --shelle4388-r-lg: 10px;
  --shelle4388-r-pill: 999px;

  /* Spacing scale */
  --shelle4388-s-1: 4px;
  --shelle4388-s-2: 8px;
  --shelle4388-s-3: 12px;
  --shelle4388-s-4: 16px;
  --shelle4388-s-5: 20px;
  --shelle4388-s-6: 24px;
  --shelle4388-s-7: 32px;
  --shelle4388-s-8: 44px;

  /* Layering */
  --shelle4388-z-header: 60;
  --shelle4388-z-menu: 70;
  --shelle4388-z-overlay: 65;
  --shelle4388-z-bottom: 80;
  --shelle4388-z-toast: 90;

  /* Shape */
  --shelle4388-canvas-max: 430px;
  --shelle4388-bottom-h: 60px;
  --shelle4388-header-h: 56px;

  /* Shadows */
  --shelle4388-shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04), 0 6px 18px rgba(0, 0, 0, 0.38);
  --shelle4388-shadow-pop: 0 12px 34px rgba(0, 0, 0, 0.55);
  --shelle4388-shadow-amber: 0 6px 18px rgba(255, 154, 31, 0.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--shelle4388-font-body);
  background: #06060F;
  color: var(--shelle4388-text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--shelle4388-amber); text-decoration: none; }
a:hover { color: var(--shelle4388-amber-strong); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
input, select, textarea { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--shelle4388-amber);
  outline-offset: 2px;
  border-radius: var(--shelle4388-r-xs);
}

/* Skip link for keyboard users */
.shelle4388-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--shelle4388-amber);
  color: #0F0F23;
  padding: 10px 14px;
  font-weight: 700;
  z-index: var(--shelle4388-z-toast);
  border-radius: var(--shelle4388-r-sm);
}
.shelle4388-skip:focus { left: 12px; top: 12px; }

/* ---------- Page canvas ---------- */
.shelle4388-page {
  position: relative;
  max-width: var(--shelle4388-canvas-max);
  margin: 0 auto;
  background: var(--shelle4388-bg-deep);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
@media (min-width: 768px) {
  .shelle4388-page {
    margin-top: 18px;
    margin-bottom: 18px;
    border-radius: var(--shelle4388-r-md);
    min-height: calc(100vh - 36px);
  }
}

/* ---------- Top header ---------- */
.shelle4388-header {
  position: sticky;
  top: 0;
  z-index: var(--shelle4388-z-header);
  background: linear-gradient(180deg, #14142C 0%, #0F0F23 100%);
  border-bottom: 1px solid var(--shelle4388-line);
  height: var(--shelle4388-header-h);
  display: flex;
  align-items: center;
  padding: 0 var(--shelle4388-s-3);
  gap: var(--shelle4388-s-2);
}

.shelle4388-brand {
  display: flex;
  align-items: center;
  gap: var(--shelle4388-s-2);
  min-width: 0;
  flex: 1 1 auto;
}
.shelle4388-brand img.shelle4388-logo {
  width: 32px;
  height: 32px;
  border-radius: var(--shelle4388-r-sm);
  background: #FFF;
  object-fit: contain;
  padding: 2px;
  box-shadow: 0 0 0 1px var(--shelle4388-amber-soft);
  flex: 0 0 auto;
}
.shelle4388-brand-name {
  font-family: var(--shelle4388-font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.5px;
  color: var(--shelle4388-text);
  line-height: 1;
  white-space: nowrap;
}
.shelle4388-brand-name b {
  color: var(--shelle4388-amber);
  font-weight: 700;
}

.shelle4388-actions {
  display: flex;
  align-items: center;
  gap: var(--shelle4388-s-2);
  flex: 0 0 auto;
}

/* Buttons: solid primary + outlined secondary */
.shelle4388-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px;
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  border-radius: var(--shelle4388-r-sm);
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  touch-action: manipulation;
}
.shelle4388-btn:active { transform: translateY(1px) scale(0.99); }

.shelle4388-btn--primary {
  background: var(--shelle4388-amber);
  color: #1A1300;
  box-shadow: var(--shelle4388-shadow-amber);
}
.shelle4388-btn--primary:hover { background: var(--shelle4388-amber-strong); color: #1A1300; }

.shelle4388-btn--ghost {
  background: transparent;
  color: var(--shelle4388-text);
  border: 1px solid var(--shelle4388-line);
}
.shelle4388-btn--ghost:hover { border-color: var(--shelle4388-amber); color: var(--shelle4388-amber); }

.shelle4388-btn--mini { min-height: 32px; padding: 0 11px; font-size: 12px; }

.shelle4388-iconbtn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--shelle4388-r-sm);
  border: 1px solid var(--shelle4388-line);
  color: var(--shelle4388-text);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.shelle4388-iconbtn:hover { border-color: var(--shelle4388-amber); color: var(--shelle4388-amber); }
.shelle4388-iconbtn svg { width: 20px; height: 20px; display: block; }
.shelle4388-iconbtn[aria-expanded="true"] {
  border-color: var(--shelle4388-amber);
  color: var(--shelle4388-amber);
  background: var(--shelle4388-amber-soft);
}

/* ---------- Expandable menu ---------- */
.shelle4388-menu {
  position: fixed;
  top: var(--shelle4388-header-h);
  left: 50%;
  transform: translate(-50%, -8px);
  width: 100%;
  max-width: var(--shelle4388-canvas-max);
  background: var(--shelle4388-bg-elev);
  border-bottom: 1px solid var(--shelle4388-line);
  z-index: var(--shelle4388-z-menu);
  padding: var(--shelle4388-s-3);
  display: grid;
  gap: var(--shelle4388-s-2);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.16s;
  max-height: calc(100vh - var(--shelle4388-header-h));
  overflow-y: auto;
}
.shelle4388-menu[data-open="true"] {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s;
}
.shelle4388-menu-title {
  font-family: var(--shelle4388-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--shelle4388-text-dim);
  padding: 4px 4px 2px;
}
.shelle4388-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--shelle4388-s-2);
}
.shelle4388-menu-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px var(--shelle4388-s-3);
  border: 1px solid var(--shelle4388-line-soft);
  border-radius: var(--shelle4388-r-sm);
  background: var(--shelle4388-bg-soft);
  color: var(--shelle4388-text);
  min-height: 44px;
  justify-content: center;
  transition: border-color 0.14s ease, background 0.14s ease, transform 0.08s ease;
}
.shelle4388-menu-link:hover {
  border-color: var(--shelle4388-amber);
  background: var(--shelle4388-amber-soft);
  color: var(--shelle4388-text);
}
.shelle4388-menu-link:active { transform: scale(0.99); }
.shelle4388-menu-link strong {
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 13.5px;
}
.shelle4388-menu-link span {
  font-size: 11.5px;
  color: var(--shelle4388-text-dim);
}

/* Menu backdrop */
.shelle4388-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 12, 0.55);
  z-index: var(--shelle4388-z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, visibility 0s linear 0.16s;
}
.shelle4388-backdrop[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.16s ease;
}

/* ---------- Main content ---------- */
.shelle4388-main {
  padding: var(--shelle4388-s-4) var(--shelle4388-s-3) calc(var(--shelle4388-bottom-h) + var(--shelle4388-s-7));
}

/* Page H1 (matches title) */
.shelle4388-h1 {
  font-family: var(--shelle4388-font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.2px;
  color: var(--shelle4388-text);
  padding: var(--shelle4388-s-2) var(--shelle4388-s-1) var(--shelle4388-s-3);
}
.shelle4388-h1 .shelle4388-h1-mark { color: var(--shelle4388-amber); }

.shelle4388-lead {
  color: var(--shelle4388-text-soft);
  font-size: 14px;
  line-height: 1.6;
  padding: 0 var(--shelle4388-s-1);
  margin-bottom: var(--shelle4388-s-4);
}

/* ---------- Section frame ---------- */
.shelle4388-section { margin-top: var(--shelle4388-s-6); }
.shelle4388-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--shelle4388-s-3);
  padding: 0 var(--shelle4388-s-1);
  margin-bottom: var(--shelle4388-s-3);
  border-bottom: 1px solid var(--shelle4388-line-soft);
  padding-bottom: var(--shelle4388-s-2);
}
.shelle4388-section-head h2 {
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--shelle4388-text);
  letter-spacing: -0.1px;
}
.shelle4388-section-head h2 em {
  font-style: normal;
  color: var(--shelle4388-amber);
}
.shelle4388-section-tag {
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--shelle4388-text-dim);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Carousel ---------- */
.shelle4388-carousel {
  position: relative;
  border-radius: var(--shelle4388-r-md);
  overflow: hidden;
  border: 1px solid var(--shelle4388-line);
  background: #000;
}
.shelle4388-carousel-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.shelle4388-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  cursor: pointer;
}
.shelle4388-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.05);
}
.shelle4388-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 35, 0.15) 0%, rgba(15, 15, 35, 0.88) 88%);
  padding: var(--shelle4388-s-4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--shelle4388-text);
}
.shelle4388-slide-eyebrow {
  font-size: 10.5px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--shelle4388-amber);
  font-weight: 600;
  margin-bottom: 4px;
}
.shelle4388-slide-title {
  font-family: var(--shelle4388-font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.18;
  margin-bottom: 6px;
}
.shelle4388-slide-sub {
  font-size: 12.5px;
  color: var(--shelle4388-text-soft);
  margin-bottom: 10px;
}
.shelle4388-slide-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  background: var(--shelle4388-amber);
  color: #1A1300;
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 12.5px;
  padding: 7px 12px;
  border-radius: var(--shelle4388-r-sm);
}
.shelle4388-slide-cta svg { width: 12px; height: 12px; }

.shelle4388-carousel-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 2;
}
.shelle4388-carousel-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(248, 248, 255, 0.45);
  transition: background 0.18s ease, width 0.18s ease;
  padding: 0;
}
.shelle4388-carousel-dots button[aria-current="true"] {
  background: var(--shelle4388-amber);
  width: 18px;
  border-radius: var(--shelle4388-r-pill);
}

/* ---------- Trust strip ---------- */
.shelle4388-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--shelle4388-s-2);
  margin-top: var(--shelle4388-s-3);
}
.shelle4388-trust-cell {
  background: var(--shelle4388-bg-card);
  border: 1px solid var(--shelle4388-line-soft);
  border-radius: var(--shelle4388-r-sm);
  padding: var(--shelle4388-s-2) var(--shelle4388-s-2);
  text-align: center;
}
.shelle4388-trust-cell svg {
  width: 18px;
  height: 18px;
  color: var(--shelle4388-amber);
  margin: 0 auto 4px;
}
.shelle4388-trust-cell strong {
  display: block;
  font-family: var(--shelle4388-font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--shelle4388-text);
}
.shelle4388-trust-cell span {
  display: block;
  font-size: 10.5px;
  color: var(--shelle4388-text-dim);
  line-height: 1.3;
}

/* ---------- Game area ---------- */
.shelle4388-game-block { margin-top: var(--shelle4388-s-6); }
.shelle4388-game-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--shelle4388-s-3);
  padding: 0 var(--shelle4388-s-1);
  margin-bottom: var(--shelle4388-s-3);
}
.shelle4388-game-block-head h3 {
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--shelle4388-text);
  display: flex;
  align-items: center;
  gap: 7px;
}
.shelle4388-cat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: var(--shelle4388-r-xs);
  background: var(--shelle4388-amber-soft);
  color: var(--shelle4388-amber);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--shelle4388-font-display);
}
.shelle4388-game-block-head a {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--shelle4388-amber);
}
.shelle4388-game-meta {
  font-size: 11px;
  color: var(--shelle4388-text-dim);
  padding: 0 var(--shelle4388-s-1);
  margin-bottom: var(--shelle4388-s-2);
  line-height: 1.5;
}

/* Game grid: 4 columns at 320-430px */
.shelle4388-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--shelle4388-s-2);
}

/* Game card = icon tile + horizontal name strip */
.shelle4388-game {
  display: flex;
  flex-direction: column;
  background: var(--shelle4388-bg-card);
  border: 1px solid var(--shelle4388-line-soft);
  border-radius: var(--shelle4388-r-sm);
  overflow: hidden;
  text-align: left;
  transition: border-color 0.14s ease, transform 0.08s ease, box-shadow 0.14s ease;
  min-height: 44px;
}
.shelle4388-game:hover {
  border-color: var(--shelle4388-amber);
  box-shadow: var(--shelle4388-shadow-card);
}
.shelle4388-game:active { transform: scale(0.98); }
.shelle4388-game-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0B0B1E;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shelle4388-game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shelle4388-game-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}
.shelle4388-game-name {
  display: block;
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--shelle4388-text);
  padding: 5px 6px 6px;
  text-align: center;
  background: var(--shelle4388-bg-card);
  border-top: 1px solid var(--shelle4388-line-soft);
  /* Horizontal name strip: 1 line, ellipsized */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 24px;
}

/* ---------- Inline note rows (used under game blocks for sub-page links) ---------- */
.shelle4388-note-row {
  margin-top: var(--shelle4388-s-3);
  padding: var(--shelle4388-s-3);
  background: var(--shelle4388-bg-soft);
  border: 1px solid var(--shelle4388-line-soft);
  border-left: 3px solid var(--shelle4388-amber);
  border-radius: var(--shelle4388-r-sm);
  font-size: 12.5px;
  color: var(--shelle4388-text-soft);
  line-height: 1.6;
}
.shelle4388-note-row strong { color: var(--shelle4388-text); font-weight: 600; }
.shelle4388-note-row a { font-weight: 600; }

/* ---------- Features module: comparison grid ---------- */
.shelle4388-feature-grid {
  display: grid;
  gap: var(--shelle4388-s-2);
}
.shelle4388-feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: var(--shelle4388-s-3);
  background: var(--shelle4388-bg-card);
  border: 1px solid var(--shelle4388-line-soft);
  border-radius: var(--shelle4388-r-sm);
}
.shelle4388-feature-row-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shelle4388-feature-row-head svg { width: 16px; height: 16px; color: var(--shelle4388-amber); flex: 0 0 auto; }
.shelle4388-feature-row-head h4 {
  font-family: var(--shelle4388-font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--shelle4388-text);
}
.shelle4388-feature-row p {
  font-size: 12.5px;
  color: var(--shelle4388-text-soft);
  line-height: 1.55;
}
.shelle4388-feature-meter {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}
.shelle4388-feature-meter span {
  height: 4px;
  flex: 1;
  background: var(--shelle4388-line);
  border-radius: var(--shelle4388-r-xs);
}
.shelle4388-feature-meter span.shelle4388-on { background: var(--shelle4388-amber); }

/* ---------- Promotions module ---------- */
.shelle4388-promo-list {
  display: grid;
  gap: var(--shelle4388-s-2);
}
.shelle4388-promo {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--shelle4388-s-3);
  padding: var(--shelle4388-s-3);
  background: var(--shelle4388-bg-card);
  border: 1px solid var(--shelle4388-line-soft);
  border-radius: var(--shelle4388-r-sm);
  align-items: center;
}
.shelle4388-promo-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--shelle4388-r-sm);
  background: var(--shelle4388-amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shelle4388-amber);
  font-family: var(--shelle4388-font-display);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  border: 1px solid var(--shelle4388-amber);
}
.shelle4388-promo-body h4 {
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--shelle4388-text);
  margin-bottom: 3px;
}
.shelle4388-promo-body p {
  font-size: 12px;
  color: var(--shelle4388-text-soft);
  line-height: 1.5;
  margin-bottom: 6px;
}
.shelle4388-promo-link {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--shelle4388-amber);
  font-family: var(--shelle4388-font-display);
}
.shelle4388-promo-link:hover { color: var(--shelle4388-amber-strong); }

/* ---------- FAQ accordion ---------- */
.shelle4388-faq { display: grid; gap: var(--shelle4388-s-2); }
.shelle4388-faq details {
  background: var(--shelle4388-bg-card);
  border: 1px solid var(--shelle4388-line-soft);
  border-radius: var(--shelle4388-r-sm);
  overflow: hidden;
}
.shelle4388-faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--shelle4388-s-3);
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--shelle4388-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--shelle4388-s-2);
  min-height: 44px;
}
.shelle4388-faq summary::-webkit-details-marker { display: none; }
.shelle4388-faq summary .shelle4388-faq-mark {
  color: var(--shelle4388-amber);
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}
.shelle4388-faq details[open] summary { border-bottom: 1px solid var(--shelle4388-line-soft); }
.shelle4388-faq-body {
  padding: var(--shelle4388-s-3);
  font-size: 12.5px;
  color: var(--shelle4388-text-soft);
  line-height: 1.6;
}
.shelle4388-faq-body p + p { margin-top: 8px; }

/* ---------- Selection guide ---------- */
.shelle4388-guide-list {
  display: grid;
  gap: var(--shelle4388-s-2);
}
.shelle4388-guide-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--shelle4388-s-3);
  padding: var(--shelle4388-s-3);
  background: var(--shelle4388-bg-card);
  border: 1px solid var(--shelle4388-line-soft);
  border-radius: var(--shelle4388-r-sm);
  align-items: start;
}
.shelle4388-guide-num {
  width: 28px;
  height: 28px;
  border-radius: var(--shelle4388-r-xs);
  background: var(--shelle4388-amber);
  color: #1A1300;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--shelle4388-font-display);
  font-weight: 700;
  font-size: 13px;
}
.shelle4388-guide-item h4 {
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--shelle4388-text);
  margin-bottom: 3px;
}
.shelle4388-guide-item p {
  font-size: 12.5px;
  color: var(--shelle4388-text-soft);
  line-height: 1.55;
}

/* ---------- Testimonials ---------- */
.shelle4388-reviews {
  display: grid;
  gap: var(--shelle4388-s-2);
}
.shelle4388-review {
  padding: var(--shelle4388-s-3);
  background: var(--shelle4388-bg-card);
  border: 1px solid var(--shelle4388-line-soft);
  border-radius: var(--shelle4388-r-sm);
}
.shelle4388-review-head {
  display: flex;
  align-items: center;
  gap: var(--shelle4388-s-2);
  margin-bottom: 6px;
}
.shelle4388-review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--shelle4388-amber-soft);
  color: var(--shelle4388-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--shelle4388-font-display);
  font-weight: 700;
  font-size: 12px;
  border: 1px solid var(--shelle4388-amber);
}
.shelle4388-review-name {
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--shelle4388-text);
}
.shelle4388-stars {
  color: var(--shelle4388-amber);
  font-size: 11px;
  letter-spacing: 1px;
  margin-left: auto;
}
.shelle4388-review p {
  font-size: 12.5px;
  color: var(--shelle4388-text-soft);
  line-height: 1.55;
}
.shelle4388-review-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 10.5px;
  color: var(--shelle4388-text-dim);
  border: 1px solid var(--shelle4388-line);
  padding: 2px 7px;
  border-radius: var(--shelle4388-r-xs);
}

/* ---------- Decision checklist ---------- */
.shelle4388-checklist {
  display: grid;
  gap: var(--shelle4388-s-2);
}
.shelle4388-check-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: var(--shelle4388-s-2);
  padding: var(--shelle4388-s-3);
  background: var(--shelle4388-bg-card);
  border: 1px solid var(--shelle4388-line-soft);
  border-radius: var(--shelle4388-r-sm);
  align-items: start;
  font-size: 12.5px;
  color: var(--shelle4388-text-soft);
  line-height: 1.55;
}
.shelle4388-check-box {
  width: 18px;
  height: 18px;
  border-radius: var(--shelle4388-r-xs);
  border: 1.5px solid var(--shelle4388-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.shelle4388-check-box svg { width: 11px; height: 11px; color: var(--shelle4388-amber); }
.shelle4388-check-item strong { color: var(--shelle4388-text); font-weight: 600; }

/* ---------- Prose / body text ---------- */
.shelle4388-prose p {
  font-size: 13px;
  color: var(--shelle4388-text-soft);
  line-height: 1.65;
  margin-bottom: var(--shelle4388-s-3);
}
.shelle4388-prose p:last-child { margin-bottom: 0; }
.shelle4388-prose a { font-weight: 600; }

/* Inline CTA strip */
.shelle4388-cta-strip {
  display: flex;
  gap: var(--shelle4388-s-2);
  padding: var(--shelle4388-s-3);
  background: linear-gradient(135deg, #1A1A38 0%, #15152E 100%);
  border: 1px solid var(--shelle4388-line);
  border-radius: var(--shelle4388-r-md);
  margin-top: var(--shelle4388-s-5);
  align-items: center;
  flex-wrap: wrap;
}
.shelle4388-cta-strip-text {
  flex: 1 1 160px;
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--shelle4388-text);
}
.shelle4388-cta-strip-text span { color: var(--shelle4388-text-dim); font-weight: 400; display: block; font-size: 11.5px; margin-top: 2px; }

/* ---------- Extended footer ---------- */
.shelle4388-ext-footer {
  margin-top: var(--shelle4388-s-7);
  border-top: 1px solid var(--shelle4388-line);
  padding: var(--shelle4388-s-4) var(--shelle4388-s-3);
  background: var(--shelle4388-bg-elev);
}
.shelle4388-ext-foot-block { margin-bottom: var(--shelle4388-s-5); }
.shelle4388-ext-foot-block:last-child { margin-bottom: 0; }
.shelle4388-ext-foot-block h4 {
  font-family: var(--shelle4388-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--shelle4388-text-dim);
  margin-bottom: var(--shelle4388-s-2);
}
.shelle4388-ext-brand-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--shelle4388-s-3);
  align-items: start;
}
.shelle4388-ext-brand-row img {
  width: 36px;
  height: 36px;
  border-radius: var(--shelle4388-r-sm);
  background: #FFF;
  object-fit: contain;
  padding: 2px;
}
.shelle4388-ext-brand-row p {
  font-size: 12.5px;
  color: var(--shelle4388-text-soft);
  line-height: 1.6;
}

/* Horizontal promo shortcuts (6 actions) */
.shelle4388-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--shelle4388-s-2);
}
.shelle4388-shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: var(--shelle4388-s-3) var(--shelle4388-s-2);
  border: 1px solid var(--shelle4388-amber);
  background: var(--shelle4388-amber-soft);
  border-radius: var(--shelle4388-r-sm);
  color: var(--shelle4388-amber);
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  font-size: 11px;
  text-align: center;
  min-height: 56px;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease;
}
.shelle4388-shortcut:hover { background: var(--shelle4388-amber); color: #1A1300; }
.shelle4388-shortcut:active { transform: scale(0.98); }
.shelle4388-shortcut svg { width: 16px; height: 16px; }

/* Page directory: compact 2-col */
.shelle4388-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.shelle4388-directory a {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  background: var(--shelle4388-bg-soft);
  border: 1px solid var(--shelle4388-line-soft);
  border-radius: var(--shelle4388-r-sm);
  font-size: 11.5px;
  color: var(--shelle4388-text);
  line-height: 1.3;
  transition: border-color 0.14s ease, color 0.14s ease;
  min-height: 36px;
}
.shelle4388-directory a:hover { border-color: var(--shelle4388-amber); color: var(--shelle4388-amber); }

.shelle4388-disclaimer {
  font-size: 11px;
  color: var(--shelle4388-text-dim);
  line-height: 1.55;
  padding: var(--shelle4388-s-3);
  border: 1px dashed var(--shelle4388-line);
  border-radius: var(--shelle4388-r-sm);
  background: rgba(15, 15, 35, 0.5);
}

/* ---------- Universal footer ---------- */
.shelle4388-universal-foot {
  padding: var(--shelle4388-s-4) var(--shelle4388-s-3);
  text-align: center;
  border-top: 1px solid var(--shelle4388-line-soft);
  background: var(--shelle4388-bg-deep);
}
.shelle4388-universal-foot p {
  font-size: 11px;
  color: var(--shelle4388-text-dim);
  line-height: 1.6;
}

/* ---------- Bottom nav (5 roles, fixed) ---------- */
.shelle4388-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--shelle4388-canvas-max);
  height: var(--shelle4388-bottom-h);
  background: linear-gradient(180deg, #14142C 0%, #0B0B1C 100%);
  border-top: 1px solid var(--shelle4388-line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: var(--shelle4388-z-bottom);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.shelle4388-bottomnav a,
.shelle4388-bottomnav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--shelle4388-text-dim);
  font-size: 10px;
  font-family: var(--shelle4388-font-display);
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
  min-height: 44px;
  transition: color 0.15s ease, transform 0.08s ease;
  border-right: 1px solid var(--shelle4388-line-soft);
  padding: 4px 2px;
}
.shelle4388-bottomnav a:last-child,
.shelle4388-bottomnav button:last-child { border-right: 0; }
.shelle4388-bottomnav a:active,
.shelle4388-bottomnav button:active { transform: scale(0.94); }
.shelle4388-bottomnav svg { width: 20px; height: 20px; display: block; }
.shelle4388-bottomnav .shelle4388-bn-current {
  color: var(--shelle4388-amber);
}
.shelle4388-bottomnav .shelle4388-bn-current svg { color: var(--shelle4388-amber); }
.shelle4388-bn-promo {
  position: relative;
}
.shelle4388-bn-promo::before {
  content: "";
  position: absolute;
  top: 4px;
  right: calc(50% - 24px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--shelle4388-amber);
  box-shadow: 0 0 6px var(--shelle4388-amber);
}

/* ---------- Toast (when promo opens) ---------- */
.shelle4388-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--shelle4388-bottom-h) + 18px);
  transform: translate(-50%, 12px);
  background: #1A1A38;
  border: 1px solid var(--shelle4388-amber);
  color: var(--shelle4388-text);
  padding: 9px 14px;
  font-size: 12px;
  border-radius: var(--shelle4388-r-sm);
  box-shadow: var(--shelle4388-shadow-pop);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: var(--shelle4388-z-toast);
  max-width: calc(100% - 32px);
  text-align: center;
}
.shelle4388-toast[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

/* ---------- Helpers ---------- */
.shelle4388-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;
}

/* ---------- Responsive fine-tuning ---------- */
@media (min-width: 375px) {
  .shelle4388-game-grid { gap: var(--shelle4388-s-3); }
  .shelle4388-slide img { height: 200px; }
  .shelle4388-h1 { font-size: 24px; }
}

@media (min-width: 414px) {
  .shelle4388-game-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .shelle4388-carousel-track { transition: none; }
}

/* Print safety */
.shelle4388-help-hero {
  margin: var(--shelle4388-s-2) 0 var(--shelle4388-s-5);
  padding: var(--shelle4388-s-5) var(--shelle4388-s-4);
  border: 1px solid var(--shelle4388-line);
  border-left: 4px solid var(--shelle4388-amber);
  background: linear-gradient(135deg, #1C1C3C 0%, #10102A 100%);
  border-radius: var(--shelle4388-r-md);
}
.shelle4388-help-kicker { color: var(--shelle4388-amber); font: 600 11px/1.3 var(--shelle4388-font-display); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 7px; }
.shelle4388-help-hero h1 { padding: 0; font-size: 23px; }
.shelle4388-help-hero p { margin-top: 10px; color: var(--shelle4388-text-soft); font-size: 13px; line-height: 1.65; }
.shelle4388-help-actions { display: flex; flex-wrap: wrap; gap: var(--shelle4388-s-2); margin-top: 16px; }
.shelle4388-help-actions .shelle4388-btn { min-height: 44px; }
.shelle4388-help-section { margin-top: var(--shelle4388-s-6); }
.shelle4388-help-section > h2 { font: 600 17px/1.3 var(--shelle4388-font-display); color: var(--shelle4388-text); border-bottom: 1px solid var(--shelle4388-line); padding: 0 0 9px; margin-bottom: 12px; }
.shelle4388-help-section > h2 em { color: var(--shelle4388-amber); font-style: normal; }
.shelle4388-help-section > p { color: var(--shelle4388-text-soft); font-size: 13px; line-height: 1.7; margin-bottom: 12px; }
.shelle4388-help-section > p:last-child { margin-bottom: 0; }
.shelle4388-answer-line { padding: 12px 14px; border: 1px solid var(--shelle4388-amber); background: var(--shelle4388-amber-soft); color: var(--shelle4388-text); font-size: 13px; line-height: 1.6; border-radius: var(--shelle4388-r-sm); margin-bottom: 13px; }
.shelle4388-audit-table { width: 100%; border-collapse: collapse; font-size: 11.5px; margin: 12px 0 4px; }
.shelle4388-audit-table th, .shelle4388-audit-table td { padding: 9px 7px; border-bottom: 1px solid var(--shelle4388-line); text-align: left; vertical-align: top; }
.shelle4388-audit-table th { color: var(--shelle4388-amber); font: 600 11px/1.3 var(--shelle4388-font-display); }
.shelle4388-audit-table td { color: var(--shelle4388-text-soft); line-height: 1.45; }
.shelle4388-audit-table td:first-child { color: var(--shelle4388-text); font-weight: 600; }
.shelle4388-signal-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--shelle4388-s-2); margin: 12px 0; }
.shelle4388-signal { padding: 11px; background: var(--shelle4388-bg-card); border: 1px solid var(--shelle4388-line-soft); border-radius: var(--shelle4388-r-sm); }
.shelle4388-signal strong { display: block; color: var(--shelle4388-amber); font: 600 12px/1.3 var(--shelle4388-font-display); margin-bottom: 4px; }
.shelle4388-signal span { color: var(--shelle4388-text-soft); font-size: 11.5px; line-height: 1.45; }
.shelle4388-review-note { padding: 12px; border-left: 3px solid var(--shelle4388-good); background: rgba(91, 211, 160, .08); color: var(--shelle4388-text-soft); font-size: 12.5px; line-height: 1.6; margin-top: 12px; }
.shelle4388-review-note strong { color: var(--shelle4388-good); }
.shelle4388-step-rail { display: grid; gap: 10px; counter-reset: help-step; }
.shelle4388-step-card { counter-increment: help-step; display: grid; grid-template-columns: 34px 1fr; gap: 11px; padding: 13px 12px; background: var(--shelle4388-bg-card); border: 1px solid var(--shelle4388-line-soft); border-radius: var(--shelle4388-r-sm); }
.shelle4388-step-card::before { content: counter(help-step, decimal-leading-zero); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--shelle4388-amber); color: #1A1300; font: 700 11px/1 var(--shelle4388-font-display); border-radius: var(--shelle4388-r-xs); }
.shelle4388-step-card h3 { color: var(--shelle4388-text); font: 600 14px/1.35 var(--shelle4388-font-display); margin-bottom: 4px; }
.shelle4388-step-card p { color: var(--shelle4388-text-soft); font-size: 12.5px; line-height: 1.58; }
.shelle4388-issue-list { display: grid; gap: 8px; }
.shelle4388-issue { display: grid; grid-template-columns: 82px 1fr; gap: 10px; padding: 10px; border-bottom: 1px solid var(--shelle4388-line); }
.shelle4388-issue strong { color: var(--shelle4388-amber); font: 600 11.5px/1.45 var(--shelle4388-font-display); }
.shelle4388-issue span { color: var(--shelle4388-text-soft); font-size: 12px; line-height: 1.52; }
.shelle4388-check-grid { display: grid; gap: 7px; }
.shelle4388-check-grid li { position: relative; padding: 10px 10px 10px 29px; color: var(--shelle4388-text-soft); font-size: 12.5px; line-height: 1.5; background: var(--shelle4388-bg-soft); border: 1px solid var(--shelle4388-line-soft); border-radius: var(--shelle4388-r-sm); }
.shelle4388-check-grid li::before { content: "✓"; position: absolute; left: 10px; top: 9px; color: var(--shelle4388-amber); font-weight: 700; }
.shelle4388-check-grid strong { color: var(--shelle4388-text); }
.shelle4388-compare-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 12px 0; }
.shelle4388-compare-strip div { padding: 10px 7px; background: var(--shelle4388-bg-card); border-top: 2px solid var(--shelle4388-amber); text-align: center; }
.shelle4388-compare-strip strong { display: block; color: var(--shelle4388-text); font: 600 11px/1.3 var(--shelle4388-font-display); }
.shelle4388-compare-strip span { display: block; margin-top: 4px; color: var(--shelle4388-text-dim); font-size: 10.5px; line-height: 1.35; }
.shelle4388-inline-promo { display: inline-flex; align-items: center; min-height: 44px; margin: 8px 0 4px; padding: 8px 12px; border: 1px solid var(--shelle4388-amber); border-radius: var(--shelle4388-r-sm); color: var(--shelle4388-amber); font: 600 12px/1.3 var(--shelle4388-font-display); }
.shelle4388-inline-promo:hover { background: var(--shelle4388-amber); color: #1A1300; }

@media print {
  .shelle4388-bottomnav, .shelle4388-header, .shelle4388-menu, .shelle4388-backdrop { display: none; }
  body { background: #FFF; color: #000; }
}
