/*!
 * 1cbet.homes base stylesheet
 * Class prefix       : shell56991-
 * Mobile canvas      : 320-430px (kept centred on wider screens)
 * Palette            : #006400 #0E1621 #CD853F #F8F9FA #A0522D #BC8F8F
 * Navigation identity: two-layer header, slide-up route panel,
 *                      compact icon rack, two-tone icons, top indicator
 *                      active state, light press feedback.
 */

/* ---------- Tokens ---------- */
:root {
  --shell56991-green: #006400;
  --shell56991-green-soft: #0b4a0b;
  --shell56991-navy: #0E1621;
  --shell56991-navy-2: #15202e;
  --shell56991-navy-3: #1c2a3a;
  --shell56991-sand: #CD853F;
  --shell56991-sand-bright: #e09b53;
  --shell56991-paper: #F8F9FA;
  --shell56991-sienna: #A0522D;
  --shell56991-rose: #BC8F8F;
  --shell56991-text-dim: rgba(248, 249, 250, 0.72);
  --shell56991-text-faint: rgba(248, 249, 250, 0.52);
  --shell56991-line: rgba(205, 133, 63, 0.22);
  --shell56991-line-soft: rgba(248, 249, 250, 0.08);
  --shell56991-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  --shell56991-radius: 14px;
  --shell56991-radius-sm: 10px;
  --shell56991-header-h: 116px;
  --shell56991-bottomnav-h: 70px;
  --shell56991-max: 430px;
  --shell56991-press: cubic-bezier(0.32, 0.72, 0.34, 1);
}

/* ---------- 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: "Segoe UI", "Helvetica Neue", Roboto, Arial, system-ui, sans-serif;
  background: var(--shell56991-navy);
  color: var(--shell56991-paper);
  line-height: 1.6;
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
}

body.shell56991-no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: var(--shell56991-sand-bright); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Mobile canvas centred on wider screens, no desktop-wide layout */
.shell56991-canvas {
  width: 100%;
  max-width: var(--shell56991-max);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(0, 100, 0, 0.30), transparent 60%),
    linear-gradient(180deg, #0e1621 0%, #0a1119 40%, #0e1621 100%);
  position: relative;
  box-shadow: var(--shell56991-shadow);
  padding-bottom: calc(var(--shell56991-bottomnav-h) + 12px);
}

/* ---------- Two-layer header ---------- */
.shell56991-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, #0c141f 0%, #0e1621 100%);
  border-bottom: 1px solid var(--shell56991-line);
}

.shell56991-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px 6px;
}

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

.shell56991-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--shell56991-sand);
  box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.18);
  flex: 0 0 auto;
}

.shell56991-brand-name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.4px;
  color: var(--shell56991-paper);
  line-height: 1.1;
}

.shell56991-brand-name span {
  color: var(--shell56991-sand-bright);
}

.shell56991-brand-tag {
  font-size: 10px;
  color: var(--shell56991-rose);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.shell56991-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--shell56991-line);
  background: rgba(205, 133, 63, 0.10);
  color: var(--shell56991-paper);
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.18s var(--shell56991-press), background 0.18s ease;
}
.shell56991-menu-btn:active { transform: scale(0.94); background: rgba(205, 133, 63, 0.20); }

.shell56991-menu-icon { width: 16px; height: 16px; display: block; }

/* Second header layer = action row */
.shell56991-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px 10px;
}

.shell56991-btn {
  flex: 1 1 0;
  min-height: 44px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-align: center;
  transition: transform 0.18s var(--shell56991-press), box-shadow 0.18s ease, filter 0.18s ease;
}
.shell56991-btn:active { transform: scale(0.96); filter: brightness(0.95); }

.shell56991-btn-login {
  background: transparent;
  border: 1.5px solid var(--shell56991-sand);
  color: var(--shell56991-paper);
}

.shell56991-btn-register {
  background: linear-gradient(135deg, var(--shell56991-sand) 0%, var(--shell56991-sienna) 100%);
  color: #1a0f05;
  box-shadow: 0 8px 18px rgba(205, 133, 63, 0.30);
}

/* ---------- Slide-up route panel ---------- */
.shell56991-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 14, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.26s ease, visibility 0.26s ease;
  z-index: 80;
}
.shell56991-menu-backdrop-show { opacity: 1; visibility: visible; }

.shell56991-menu-panel {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 100%);
  bottom: 0;
  width: 100%;
  max-width: var(--shell56991-max);
  background: linear-gradient(180deg, #15202e 0%, #0e1621 100%);
  border-top: 2px solid var(--shell56991-sand);
  border-radius: 22px 22px 0 0;
  padding: 14px 16px calc(env(safe-area-inset-bottom, 0px) + 18px);
  z-index: 90;
  transition: transform 0.32s var(--shell56991-press);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.55);
  max-height: 78vh;
  overflow-y: auto;
}
.shell56991-menu-open { transform: translate(-50%, 0); }

.shell56991-menu-grip {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: var(--shell56991-line);
  margin: 0 auto 12px;
}

.shell56991-menu-title {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--shell56991-rose);
  margin: 0 0 10px;
}

.shell56991-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.shell56991-menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 74px;
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(248, 249, 250, 0.04);
  border: 1px solid var(--shell56991-line-soft);
  color: var(--shell56991-paper);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: transform 0.18s var(--shell56991-press), background 0.18s ease, border-color 0.18s ease;
}
.shell56991-menu-link:active { transform: scale(0.94); }
.shell56991-menu-link:hover { background: rgba(205, 133, 63, 0.14); border-color: var(--shell56991-line); }

.shell56991-menu-link svg { width: 22px; height: 22px; }
.shell56991-menu-link-promo { color: var(--shell56991-sand-bright); }

.shell56991-menu-foot {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}
.shell56991-menu-foot .shell56991-btn { flex: 1; }

/* ---------- Main / sections ---------- */
main.shell56991-main { padding: 0 0 4px; }

.shell56991-section {
  padding: 26px 14px 6px;
}

.shell56991-section-tight { padding: 16px 14px 4px; }

.shell56991-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--shell56991-sand);
  background: rgba(205, 133, 63, 0.10);
  border: 1px solid var(--shell56991-line);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.shell56991-h1 {
  font-size: 26px;
  line-height: 1.22;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.shell56991-h1 em {
  font-style: normal;
  color: var(--shell56991-sand-bright);
}

.shell56991-h2 {
  font-size: 20px;
  line-height: 1.28;
  margin: 0 0 12px;
  font-weight: 750;
  letter-spacing: -0.2px;
  position: relative;
  padding-left: 14px;
}
.shell56991-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--shell56991-sand) 0%, var(--shell56991-sienna) 100%);
}

.shell56991-h3 {
  font-size: 15px;
  margin: 14px 0 6px;
  font-weight: 700;
  color: var(--shell56991-paper);
}

.shell56991-lead {
  font-size: 15px;
  color: var(--shell56991-text-dim);
  margin: 0 0 14px;
}

.shell56991-p {
  margin: 0 0 12px;
  color: var(--shell56991-text-dim);
}

.shell56991-p strong { color: var(--shell56991-paper); }

.shell56991-inline-link {
  color: var(--shell56991-sand-bright);
  border-bottom: 1px dashed rgba(224, 155, 83, 0.5);
  padding-bottom: 1px;
}
.shell56991-inline-link:active { opacity: 0.7; }

/* ---------- Carousel ---------- */
.shell56991-carousel {
  position: relative;
  margin: 14px 0 4px;
  border-radius: var(--shell56991-radius);
  overflow: hidden;
  box-shadow: var(--shell56991-shadow);
  border: 1px solid var(--shell56991-line);
}

.shell56991-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #07111c;
}

.shell56991-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
}
.shell56991-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.shell56991-carousel-active { opacity: 1; }

.shell56991-carousel-caption {
  position: absolute;
  left: 12px;
  right: 70px;
  bottom: 12px;
  background: linear-gradient(180deg, rgba(8, 14, 22, 0) 0%, rgba(8, 14, 22, 0.82) 100%);
  color: var(--shell56991-paper);
  padding: 18px 12px 10px;
  border-radius: 0 0 var(--shell56991-radius) var(--shell56991-radius);
  pointer-events: none;
}
.shell56991-carousel-caption strong { color: var(--shell56991-sand-bright); font-size: 15px; display: block; }
.shell56991-carousel-caption span { font-size: 12px; color: var(--shell56991-text-dim); }

.shell56991-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(8, 14, 22, 0.55);
  border: 1px solid var(--shell56991-line);
  color: var(--shell56991-paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.18s var(--shell56991-press), background 0.18s ease;
}
.shell56991-carousel-arrow:active { transform: translateY(-50%) scale(0.9); background: rgba(205, 133, 63, 0.6); }
.shell56991-carousel-arrow svg { width: 16px; height: 16px; }
.shell56991-carousel-prev { left: 8px; }
.shell56991-carousel-next { right: 8px; }

.shell56991-carousel-dots {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.shell56991-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(248, 249, 250, 0.45);
  transition: width 0.22s ease, background 0.22s ease;
}
.shell56991-carousel-dot-active { width: 20px; background: var(--shell56991-sand-bright); }

/* ---------- Quick stat strip ---------- */
.shell56991-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0 4px;
}
.shell56991-stat {
  background: rgba(248, 249, 250, 0.04);
  border: 1px solid var(--shell56991-line-soft);
  border-radius: var(--shell56991-radius-sm);
  padding: 10px 6px;
  text-align: center;
}
.shell56991-stat strong { display: block; color: var(--shell56991-sand-bright); font-size: 16px; font-weight: 800; }
.shell56991-stat span { font-size: 11px; color: var(--shell56991-text-faint); }

/* ---------- Game grid ---------- */
.shell56991-game-block { margin-bottom: 6px; }

.shell56991-game-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.shell56991-game-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--shell56991-rose);
  background: rgba(188, 143, 143, 0.10);
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(188, 143, 143, 0.22);
}

.shell56991-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .shell56991-grid { gap: 9px; }
}
@media (min-width: 395px) {
  .shell56991-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
}

.shell56991-game-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}
.shell56991-game-tile-show { opacity: 1; transform: none; }

.shell56991-game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--shell56991-radius-sm);
  overflow: hidden;
  background: #0a131f;
  border: 1px solid var(--shell56991-line-soft);
  transition: transform 0.18s var(--shell56991-press), border-color 0.18s ease, box-shadow 0.18s ease;
}
.shell56991-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shell56991-game-thumb:active {
  transform: scale(0.95);
  border-color: var(--shell56991-sand);
  box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.22);
}

.shell56991-game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0.65;
  pointer-events: none;
}

.shell56991-game-name {
  font-size: 11px;
  text-align: center;
  color: var(--shell56991-text-dim);
  line-height: 1.25;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 28px;
}

/* ---------- Feature cards ---------- */
.shell56991-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 395px) {
  .shell56991-card-grid { grid-template-columns: repeat(3, 1fr); }
}

.shell56991-card {
  background: rgba(248, 249, 250, 0.04);
  border: 1px solid var(--shell56991-line-soft);
  border-radius: var(--shell56991-radius);
  padding: 14px 12px;
}
.shell56991-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.6), rgba(205, 133, 63, 0.5));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.shell56991-card-icon svg { width: 20px; height: 20px; color: var(--shell56991-paper); }
.shell56991-card h3 { margin: 0 0 6px; font-size: 14px; }
.shell56991-card p { margin: 0; font-size: 12.5px; color: var(--shell56991-text-dim); }

/* ---------- Category highlights ---------- */
.shell56991-cat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shell56991-cat-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(248, 249, 250, 0.04);
  border: 1px solid var(--shell56991-line-soft);
  border-left: 3px solid var(--shell56991-sand);
  border-radius: var(--shell56991-radius-sm);
  padding: 12px;
}
.shell56991-cat-badge {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--shell56991-green) 0%, var(--shell56991-sienna) 140%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shell56991-cat-badge svg { width: 22px; height: 22px; color: var(--shell56991-paper); }
.shell56991-cat-row h3 { margin: 0 0 4px; font-size: 14.5px; }
.shell56991-cat-row p { margin: 0; font-size: 12.5px; color: var(--shell56991-text-dim); }

/* ---------- Testimonials ---------- */
.shell56991-quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 395px) {
  .shell56991-quote-grid { grid-template-columns: repeat(2, 1fr); }
}
.shell56991-quote {
  background: rgba(248, 249, 250, 0.04);
  border: 1px solid var(--shell56991-line-soft);
  border-radius: var(--shell56991-radius);
  padding: 14px;
  position: relative;
}
.shell56991-quote::before {
  content: "“";
  position: absolute;
  top: 4px;
  right: 14px;
  font-size: 42px;
  line-height: 1;
  color: rgba(205, 133, 63, 0.32);
  font-family: Georgia, serif;
}
.shell56991-quote-stars { color: var(--shell56991-sand-bright); font-size: 12px; letter-spacing: 1px; margin-bottom: 6px; }
.shell56991-quote p { margin: 0 0 10px; font-size: 13px; color: var(--shell56991-text-dim); }
.shell56991-quote-foot { font-size: 12px; color: var(--shell56991-rose); font-weight: 600; }
.shell56991-quote-foot span { color: var(--shell56991-text-faint); font-weight: 400; }

/* ---------- CTA band ---------- */
.shell56991-cta {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(0, 100, 0, 0.45), transparent 60%),
    linear-gradient(135deg, #1a2634 0%, #0e1621 100%);
  border: 1px solid var(--shell56991-line);
  border-radius: var(--shell56991-radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shell56991-shadow);
}
.shell56991-cta h3 { margin: 0 0 6px; font-size: 17px; color: var(--shell56991-paper); }
.shell56991-cta p { margin: 0 0 14px; font-size: 13px; color: var(--shell56991-text-dim); }
.shell56991-cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.shell56991-cta-actions .shell56991-btn { flex: 1 1 130px; max-width: 180px; }
.shell56991-cta-secondary {
  background: transparent;
  border: 1.5px solid var(--shell56991-rose);
  color: var(--shell56991-paper);
}

/* ---------- App download ---------- */
.shell56991-app {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(0, 100, 0, 0.16);
  border: 1px solid rgba(0, 100, 0, 0.45);
  border-radius: var(--shell56991-radius);
  padding: 14px;
}
.shell56991-app-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--shell56991-line);
  flex: 0 0 auto;
}
.shell56991-app-body { flex: 1 1 auto; min-width: 0; }
.shell56991-app-body h3 { margin: 0 0 4px; font-size: 15px; }
.shell56991-app-body p { margin: 0 0 8px; font-size: 12.5px; color: var(--shell56991-text-dim); }
.shell56991-app-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.shell56991-app-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  background: rgba(205, 133, 63, 0.16);
  border: 1px solid var(--shell56991-line);
  color: var(--shell56991-paper);
  transition: transform 0.18s var(--shell56991-press);
}
.shell56991-app-pill:active { transform: scale(0.94); }
.shell56991-app-pill svg { width: 14px; height: 14px; }

/* ---------- Selection guide / ordered steps ---------- */
.shell56991-steps { list-style: none; padding: 0; margin: 0; counter-reset: shell56991step; display: flex; flex-direction: column; gap: 10px; }
.shell56991-steps li {
  counter-increment: shell56991step;
  position: relative;
  padding: 12px 12px 12px 46px;
  background: rgba(248, 249, 250, 0.04);
  border: 1px solid var(--shell56991-line-soft);
  border-radius: var(--shell56991-radius-sm);
  font-size: 13.5px;
  color: var(--shell56991-text-dim);
}
.shell56991-steps li::before {
  content: counter(shell56991step);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--shell56991-sand) 0%, var(--shell56991-sienna) 100%);
  color: #1a0f05;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.shell56991-steps strong { color: var(--shell56991-paper); }

/* ---------- Extended footer (two-column directory) ---------- */
.shell56991-extended {
  margin-top: 26px;
  padding: 24px 14px 8px;
  background: linear-gradient(180deg, #0a131f 0%, #070d15 100%);
  border-top: 1px solid var(--shell56991-line);
}

.shell56991-extended-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--shell56991-sand);
  margin-bottom: 14px;
}

.shell56991-promo-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.shell56991-promo-actions .shell56991-promo-card:nth-child(5) { grid-column: span 2; }

.shell56991-promo-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: var(--shell56991-radius-sm);
  background: rgba(205, 133, 63, 0.10);
  border: 1px solid var(--shell56991-line);
  color: var(--shell56991-paper);
  transition: transform 0.18s var(--shell56991-press), background 0.18s ease;
}
.shell56991-promo-card:active { transform: scale(0.96); background: rgba(205, 133, 63, 0.18); }
.shell56991-promo-card strong { color: var(--shell56991-sand-bright); font-size: 13.5px; }
.shell56991-promo-card span { font-size: 11.5px; color: var(--shell56991-text-dim); }

.shell56991-brand-block {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.shell56991-brand-block .shell56991-logo { width: 48px; height: 48px; }
.shell56991-brand-block h3 { margin: 0 0 4px; font-size: 15px; }
.shell56991-brand-block p { margin: 0; font-size: 12.5px; color: var(--shell56991-text-dim); }

.shell56991-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 14px;
  margin-bottom: 20px;
}
.shell56991-directory a {
  font-size: 13px;
  color: var(--shell56991-text-dim);
  padding: 6px 0;
  border-bottom: 1px solid var(--shell56991-line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.shell56991-directory a:active { color: var(--shell56991-sand-bright); }
.shell56991-directory a small { color: var(--shell56991-text-faint); font-size: 10px; letter-spacing: 0.6px; text-transform: uppercase; }

.shell56991-disclaimer {
  font-size: 11.5px;
  color: var(--shell56991-text-faint);
  border-top: 1px dashed var(--shell56991-line-soft);
  padding-top: 12px;
  line-height: 1.55;
}

/* ---------- Copyright footer (above bottom nav) ---------- */
.shell56991-footer {
  padding: 18px 14px 16px;
  text-align: center;
  color: var(--shell56991-text-faint);
  font-size: 11.5px;
}
.shell56991-footer-pay {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.shell56991-footer-pay span {
  font-size: 10px;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--shell56991-line-soft);
  color: var(--shell56991-rose);
  text-transform: uppercase;
}
.shell56991-footer-copy { line-height: 1.6; }
.shell56991-footer-copy b { color: var(--shell56991-sand); font-weight: 700; }

/* ---------- Back-to-top ---------- */
.shell56991-to-top {
  position: fixed;
  right: 14px;
  bottom: calc(var(--shell56991-bottomnav-h) + 14px);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--shell56991-sand) 0%, var(--shell56991-sienna) 100%);
  color: #1a0f05;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shell56991-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  z-index: 55;
}
.shell56991-to-top-show { opacity: 1; visibility: visible; transform: none; }
.shell56991-to-top svg { width: 18px; height: 18px; }

/* ---------- Bottom navigation (compact icon rack) ---------- */
.shell56991-bottomnav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--shell56991-max);
  height: var(--shell56991-bottomnav-h);
  background: linear-gradient(180deg, #111c28 0%, #0a1119 100%);
  border-top: 1px solid var(--shell56991-line);
  display: flex;
  align-items: stretch;
  z-index: 70;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.shell56991-nav-item {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--shell56991-text-faint);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
  transition: color 0.2s ease, transform 0.18s var(--shell56991-press);
  padding-top: 6px;
}
.shell56991-nav-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--shell56991-sand) 0%, var(--shell56991-sienna) 100%);
  transition: width 0.22s ease;
}
.shell56991-nav-item:active { transform: scale(0.92); }
.shell56991-nav-active { color: var(--shell56991-sand-bright); }
.shell56991-nav-active::before { width: 28px; }

.shell56991-nav-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shell56991-nav-icon svg { width: 24px; height: 24px; }
.shell56991-nav-promo .shell56991-nav-icon svg .shell56991-tone-a { fill: var(--shell56991-sand-bright); }
.shell56991-nav-promo .shell56991-nav-icon svg .shell56991-tone-b { fill: var(--shell56991-sienna); }
.shell56991-nav-item .shell56991-nav-icon svg .shell56991-tone-a { fill: currentColor; opacity: 0.92; }
.shell56991-nav-item .shell56991-nav-icon svg .shell56991-tone-b { fill: currentColor; opacity: 0.55; }
.shell56991-nav-active .shell56991-nav-icon svg .shell56991-tone-b { opacity: 0.85; }

.shell56991-nav-label { line-height: 1; }

/* ---------- Utilities ---------- */
.shell56991-hide { display: none !important; }
.shell56991-clearfix::after { content: ""; display: table; clear: both; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .shell56991-game-tile { opacity: 1; transform: none; transition: none; }
}
