/* ============================================================
   tableplus 1 - Mobile-first casino gaming base stylesheet
   Prefix: shell0bf5d-
   Canvas: 320-430px phone view, centered on wider screens
   Palette: #0D1117 (bg) | #E0E0E0 (text) | #FFD700 (gold)
            | #006400 (deep green) | #D4AF37 (metallic gold)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --shell0bf5d-bg: #0D1117;
  --shell0bf5d-bg-2: #11161F;
  --shell0bf5d-surface: #161D28;
  --shell0bf5d-surface-2: #1C2531;
  --shell0bf5d-line: #2A3340;
  --shell0bf5d-text: #E0E0E0;
  --shell0bf5d-text-dim: #A8B0BB;
  --shell0bf5d-text-faint: #6E7785;
  --shell0bf5d-gold: #FFD700;
  --shell0bf5d-gold-soft: #FFE57A;
  --shell0bf5d-metal: #D4AF37;
  --shell0bf5d-green: #006400;
  --shell0bf5d-green-bright: #1E8C2E;
  --shell0bf5d-ink: #05080D;

  --shell0bf5d-radius-s: 8px;
  --shell0bf5d-radius-m: 12px;
  --shell0bf5d-radius-l: 18px;
  --shell0bf5d-radius-pill: 999px;

  --shell0bf5d-shadow-1: 0 6px 18px rgba(0, 0, 0, 0.45);
  --shell0bf5d-shadow-gold: 0 6px 18px rgba(255, 215, 0, 0.18);

  --shell0bf5d-header-h: 60px;
  --shell0bf5d-bottomnav-h: 70px;

  --shell0bf5d-font: "Segoe UI", "Helvetica Neue", Roboto, Arial, system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  background: var(--shell0bf5d-bg);
  color: var(--shell0bf5d-text);
  font-family: var(--shell0bf5d-font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1100px 480px at 50% -120px, rgba(255, 215, 0, 0.08), transparent 60%),
    radial-gradient(900px 420px at 90% 6%, rgba(0, 100, 0, 0.16), transparent 60%),
    var(--shell0bf5d-bg);
  background-attachment: fixed;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--shell0bf5d-gold); text-decoration: none; }
a:hover { color: var(--shell0bf5d-gold-soft); text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- Phone canvas frame ---------- */
.shell0bf5d-stage {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: var(--shell0bf5d-bg);
  position: relative;
  min-height: 100vh;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.05), 0 30px 80px rgba(0, 0, 0, 0.5);
}

@media (min-width: 431px) {
  body { padding: 0; }
  .shell0bf5d-stage::before,
  .shell0bf5d-stage::after {
    content: "";
    position: fixed;
    inset: 0;
    width: calc((100vw - 430px) / 2);
    pointer-events: none;
    background:
      repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.03) 0 2px, transparent 2px 14px),
      var(--shell0bf5d-ink);
    z-index: 0;
  }
  .shell0bf5d-stage::before { left: 0; right: auto; }
  .shell0bf5d-stage::after { right: 0; left: auto; }
  .shell0bf5d-stage { position: relative; z-index: 1; }
}

.shell0bf5d-main {
  padding-top: var(--shell0bf5d-header-h);
  padding-bottom: calc(var(--shell0bf5d-bottomnav-h) + 22px);
  position: relative;
  z-index: 2;
}

/* ============================================================
   HEADER - LOGO-led action bar
   ============================================================ */
.shell0bf5d-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--shell0bf5d-header-h);
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.98), rgba(13, 17, 23, 0.92));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--shell0bf5d-line);
  z-index: 60;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

.shell0bf5d-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  flex: 1;
}

.shell0bf5d-logo-tile {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  overflow: hidden;
  background: linear-gradient(140deg, #1C2531, #11161F);
  border: 1px solid var(--shell0bf5d-metal);
  box-shadow: var(--shell0bf5d-shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 3px;
}

.shell0bf5d-logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.shell0bf5d-brand-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.05; }

.shell0bf5d-brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--shell0bf5d-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shell0bf5d-brand-tag {
  font-size: 10px;
  color: var(--shell0bf5d-text-dim);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.shell0bf5d-head-actions { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }

.shell0bf5d-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--shell0bf5d-radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 44px;
  white-space: nowrap;
}
.shell0bf5d-btn:active { transform: scale(0.95); }

.shell0bf5d-btn-gold {
  background: linear-gradient(180deg, var(--shell0bf5d-gold), var(--shell0bf5d-metal));
  color: #1A1300;
  box-shadow: var(--shell0bf5d-shadow-gold);
}
.shell0bf5d-btn-gold:hover { color: #1A1300; text-decoration: none; filter: brightness(1.06); }

.shell0bf5d-btn-outline {
  background: transparent;
  color: var(--shell0bf5d-text);
  border: 1.5px solid var(--shell0bf5d-metal);
}
.shell0bf5d-btn-outline:hover { background: rgba(212, 175, 55, 0.08); color: var(--shell0bf5d-gold); text-decoration: none; }

.shell0bf5d-btn-green {
  background: linear-gradient(180deg, var(--shell0bf5d-green-bright), var(--shell0bf5d-green));
  color: #fff;
}
.shell0bf5d-btn-green:hover { color: #fff; text-decoration: none; filter: brightness(1.05); }

.shell0bf5d-icon-btn {
  width: 40px;
  height: 40px;
  min-height: 44px;
  border-radius: 12px;
  background: var(--shell0bf5d-surface);
  border: 1px solid var(--shell0bf5d-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--shell0bf5d-text);
  transition: transform 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.shell0bf5d-icon-btn:hover { color: var(--shell0bf5d-gold); border-color: var(--shell0bf5d-metal); }
.shell0bf5d-icon-btn:active { transform: scale(0.92); }
.shell0bf5d-icon-btn svg { width: 20px; height: 20px; display: block; }

.shell0bf5d-menu-toggle .shell0bf5d-bar { transition: transform 0.25s ease, opacity 0.2s ease; transform-origin: center; }

/* ============================================================
   SLIDE MENU - full-height layer
   ============================================================ */
.shell0bf5d-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 13, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 70;
}
.shell0bf5d-menu-overlay.shell0bf5d-is-open { opacity: 1; visibility: visible; }

.shell0bf5d-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 86%;
  max-width: 360px;
  height: 100%;
  background: linear-gradient(180deg, #11161F, #0B0F16);
  border-left: 1px solid var(--shell0bf5d-line);
  transform: translateX(105%);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 71;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.shell0bf5d-menu.shell0bf5d-is-open { transform: translateX(0); }

.shell0bf5d-menu-head {
  padding: 16px;
  border-bottom: 1px solid var(--shell0bf5d-line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.shell0bf5d-menu-head .shell0bf5d-logo-tile { width: 36px; height: 36px; }
.shell0bf5d-menu-title { font-size: 15px; font-weight: 700; color: var(--shell0bf5d-text); }
.shell0bf5d-menu-sub { font-size: 11px; color: var(--shell0bf5d-text-dim); letter-spacing: 1px; text-transform: uppercase; }
.shell0bf5d-menu-close { margin-left: auto; }

.shell0bf5d-menu-cta {
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-bottom: 1px solid var(--shell0bf5d-line);
}

.shell0bf5d-menu-section { padding: 12px 0 6px; border-bottom: 1px solid var(--shell0bf5d-line); }
.shell0bf5d-menu-section:last-child { border-bottom: none; }
.shell0bf5d-menu-label {
  padding: 4px 18px 8px;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--shell0bf5d-text-faint);
}

.shell0bf5d-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  color: var(--shell0bf5d-text);
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.shell0bf5d-menu-link:hover { background: rgba(212, 175, 55, 0.06); color: var(--shell0bf5d-gold); text-decoration: none; }
.shell0bf5d-menu-link svg { width: 18px; height: 18px; color: var(--shell0bf5d-metal); flex-shrink: 0; }
.shell0bf5d-menu-link.shell0bf5d-active {
  background: rgba(255, 215, 0, 0.08);
  color: var(--shell0bf5d-gold);
  border-left-color: var(--shell0bf5d-gold);
  font-weight: 700;
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.shell0bf5d-section { padding: 18px 14px 6px; }
.shell0bf5d-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}
.shell0bf5d-section-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--shell0bf5d-text);
  position: relative;
  padding-left: 12px;
  line-height: 1.2;
}
.shell0bf5d-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--shell0bf5d-gold), var(--shell0bf5d-metal));
}
.shell0bf5d-section-title small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--shell0bf5d-text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}
.shell0bf5d-section-more {
  font-size: 12px;
  color: var(--shell0bf5d-metal);
  font-weight: 600;
}
.shell0bf5d-section-more:hover { color: var(--shell0bf5d-gold); }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.shell0bf5d-hero {
  position: relative;
  border-radius: var(--shell0bf5d-radius-l);
  overflow: hidden;
  background: var(--shell0bf5d-surface);
  box-shadow: var(--shell0bf5d-shadow-1);
}
.shell0bf5d-hero-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.shell0bf5d-hero-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}
.shell0bf5d-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shell0bf5d-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 8, 13, 0.92) 2%, rgba(5, 8, 13, 0.25) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.shell0bf5d-hero-cap { display: flex; flex-direction: column; gap: 9px; width: 100%; }
.shell0bf5d-hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--shell0bf5d-gold);
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid var(--shell0bf5d-metal);
  padding: 3px 9px;
  border-radius: var(--shell0bf5d-radius-pill);
  align-self: flex-start;
}
.shell0bf5d-hero-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.shell0bf5d-hero-desc {
  font-size: 12.5px;
  color: var(--shell0bf5d-text-dim);
  line-height: 1.45;
  max-width: 90%;
}
.shell0bf5d-hero-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.shell0bf5d-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  transition: all 0.2s ease;
}
.shell0bf5d-hero-dot.shell0bf5d-active {
  width: 20px;
  border-radius: 3px;
  background: var(--shell0bf5d-gold);
}

/* ============================================================
   QUICK ACTIONS STRIP
   ============================================================ */
.shell0bf5d-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.shell0bf5d-quick-item {
  background: var(--shell0bf5d-surface);
  border: 1px solid var(--shell0bf5d-line);
  border-radius: var(--shell0bf5d-radius-m);
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: var(--shell0bf5d-text);
  min-height: 44px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.shell0bf5d-quick-item:hover { text-decoration: none; color: var(--shell0bf5d-gold); border-color: var(--shell0bf5d-metal); }
.shell0bf5d-quick-item:active { transform: scale(0.95); }
.shell0bf5d-quick-tile {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(140deg, #1C2531, #11161F);
  border: 1px solid var(--shell0bf5d-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shell0bf5d-gold);
}
.shell0bf5d-quick-tile svg { width: 20px; height: 20px; }
.shell0bf5d-quick-label { font-size: 11px; font-weight: 600; }

/* ============================================================
   CATEGORY TAB STRIP (visual only - all sections shown)
   ============================================================ */
.shell0bf5d-cat-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 14px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shell0bf5d-cat-strip::-webkit-scrollbar { display: none; }
.shell0bf5d-cat-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--shell0bf5d-radius-pill);
  background: var(--shell0bf5d-surface);
  border: 1px solid var(--shell0bf5d-line);
  color: var(--shell0bf5d-text-dim);
  font-size: 12.5px;
  font-weight: 600;
  min-height: 36px;
  transition: all 0.15s ease;
}
.shell0bf5d-cat-pill:hover { color: var(--shell0bf5d-gold); border-color: var(--shell0bf5d-metal); text-decoration: none; }
.shell0bf5d-cat-pill svg { width: 14px; height: 14px; color: var(--shell0bf5d-metal); }

/* ============================================================
   GAME GRID
   ============================================================ */
.shell0bf5d-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 8px;
}
@media (min-width: 360px) { .shell0bf5d-game-grid { gap: 12px 10px; } }
@media (min-width: 393px) { .shell0bf5d-game-grid { grid-template-columns: repeat(5, 1fr); } }

.shell0bf5d-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  color: var(--shell0bf5d-text);
  background: transparent;
  border: none;
  padding: 0;
  min-height: 44px;
  cursor: pointer;
}
.shell0bf5d-game:hover { text-decoration: none; color: var(--shell0bf5d-gold); }

.shell0bf5d-game-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(140deg, #1C2531, #0F141C);
  border: 1px solid var(--shell0bf5d-line);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.shell0bf5d-game:hover .shell0bf5d-game-tile {
  transform: translateY(-2px);
  border-color: var(--shell0bf5d-metal);
  box-shadow: var(--shell0bf5d-shadow-gold);
}
.shell0bf5d-game:active .shell0bf5d-game-tile { transform: scale(0.95); }
.shell0bf5d-game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.shell0bf5d-game:hover .shell0bf5d-game-tile img { transform: scale(1.08); }

.shell0bf5d-game-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 5px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.95), rgba(212, 175, 55, 0.95));
  color: #1A1300;
  text-transform: uppercase;
}

.shell0bf5d-game-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--shell0bf5d-text);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 26px;
  padding: 0 1px;
}
.shell0bf5d-game:hover .shell0bf5d-game-name { color: var(--shell0bf5d-gold); }

/* ============================================================
   CONTENT MODULES (RTP, App, Payment, Comparison, Term)
   ============================================================ */
.shell0bf5d-card {
  background: linear-gradient(180deg, var(--shell0bf5d-surface), var(--shell0bf5d-bg-2));
  border: 1px solid var(--shell0bf5d-line);
  border-radius: var(--shell0bf5d-radius-l);
  padding: 18px 16px;
  margin: 14px;
  box-shadow: var(--shell0bf5d-shadow-1);
}

.shell0bf5d-h1 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.18;
  color: #fff;
  letter-spacing: 0.2px;
}
.shell0bf5d-h1 .shell0bf5d-h1-accent { color: var(--shell0bf5d-gold); }

.shell0bf5d-intro {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--shell0bf5d-text-dim);
  line-height: 1.6;
}
.shell0bf5d-intro strong { color: var(--shell0bf5d-text); font-weight: 700; }
.shell0bf5d-intro a { color: var(--shell0bf5d-gold); font-weight: 600; }

.shell0bf5d-h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--shell0bf5d-text);
  line-height: 1.25;
  margin-bottom: 10px;
}
.shell0bf5d-h2 .shell0bf5d-h2-mark { color: var(--shell0bf5d-gold); }

.shell0bf5d-h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--shell0bf5d-gold);
  margin-top: 14px;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.shell0bf5d-p {
  font-size: 13px;
  color: var(--shell0bf5d-text-dim);
  line-height: 1.65;
  margin-bottom: 10px;
}
.shell0bf5d-p strong { color: var(--shell0bf5d-text); }
.shell0bf5d-p a { color: var(--shell0bf5d-gold); font-weight: 600; }

.shell0bf5d-p-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.shell0bf5d-p-list li {
  position: relative;
  padding-left: 22px;
  font-size: 12.5px;
  color: var(--shell0bf5d-text-dim);
  line-height: 1.55;
}
.shell0bf5d-p-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(140deg, var(--shell0bf5d-gold), var(--shell0bf5d-metal));
  transform: rotate(45deg);
}
.shell0bf5d-p-list li strong { color: var(--shell0bf5d-text); }

/* Inline promo link inside text */
.shell0bf5d-inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--shell0bf5d-gold);
  font-weight: 700;
  border-bottom: 1px dashed var(--shell0bf5d-metal);
  padding-bottom: 1px;
}
.shell0bf5d-inline-cta:hover { color: var(--shell0bf5d-gold-soft); text-decoration: none; }

/* Two-column compact module grid */
.shell0bf5d-mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0;
}
.shell0bf5d-mod-cell {
  background: var(--shell0bf5d-bg-2);
  border: 1px solid var(--shell0bf5d-line);
  border-radius: var(--shell0bf5d-radius-m);
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shell0bf5d-mod-cell-tile {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(140deg, rgba(255, 215, 0, 0.14), rgba(0, 100, 0, 0.18));
  border: 1px solid var(--shell0bf5d-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shell0bf5d-gold);
}
.shell0bf5d-mod-cell-tile svg { width: 16px; height: 16px; }
.shell0bf5d-mod-cell h4 { font-size: 12.5px; font-weight: 700; color: var(--shell0bf5d-text); margin: 0; }
.shell0bf5d-mod-cell p { font-size: 11.5px; color: var(--shell0bf5d-text-dim); margin: 0; line-height: 1.45; }

/* Horizontal bar (used for RTP / comparison bars) */
.shell0bf5d-bar-row { margin: 8px 0; }
.shell0bf5d-bar-head { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--shell0bf5d-text-dim); margin-bottom: 5px; }
.shell0bf5d-bar-head strong { color: var(--shell0bf5d-text); font-weight: 700; }
.shell0bf5d-bar-track {
  height: 8px;
  background: var(--shell0bf5d-bg-2);
  border: 1px solid var(--shell0bf5d-line);
  border-radius: 999px;
  overflow: hidden;
}
.shell0bf5d-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--shell0bf5d-green-bright), var(--shell0bf5d-gold));
  border-radius: 999px;
}

/* Promo banner inside content */
.shell0bf5d-promo-band {
  margin: 14px;
  background:
    linear-gradient(135deg, rgba(0, 100, 0, 0.55), rgba(212, 175, 55, 0.18)),
    var(--shell0bf5d-surface);
  border: 1px solid var(--shell0bf5d-metal);
  border-radius: var(--shell0bf5d-radius-l);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shell0bf5d-shadow-1);
  position: relative;
  overflow: hidden;
}
.shell0bf5d-promo-band::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.22), transparent 70%);
  pointer-events: none;
}
.shell0bf5d-promo-band h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.shell0bf5d-promo-band p {
  font-size: 12.5px;
  color: var(--shell0bf5d-text-dim);
  margin: 0;
  line-height: 1.55;
}
.shell0bf5d-promo-band-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }

/* ============================================================
   FEATURE STRIP (3-up reasons)
   ============================================================ */
.shell0bf5d-feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px;
}
.shell0bf5d-feat-card {
  background: var(--shell0bf5d-surface);
  border: 1px solid var(--shell0bf5d-line);
  border-radius: var(--shell0bf5d-radius-m);
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.shell0bf5d-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(255, 215, 0, 0.14), rgba(0, 100, 0, 0.18));
  border: 1px solid var(--shell0bf5d-metal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shell0bf5d-gold);
}
.shell0bf5d-feat-icon svg { width: 18px; height: 18px; }
.shell0bf5d-feat-card h4 { font-size: 12px; font-weight: 700; color: var(--shell0bf5d-text); margin: 0; }
.shell0bf5d-feat-card p { font-size: 10.5px; color: var(--shell0bf5d-text-dim); margin: 0; line-height: 1.4; }

/* ============================================================
   EXTENDED FOOTER (site-specific)
   ============================================================ */
.shell0bf5d-ext-footer {
  margin: 18px 0 0;
  padding: 22px 14px 18px;
  background: linear-gradient(180deg, var(--shell0bf5d-bg-2), var(--shell0bf5d-ink));
  border-top: 1px solid var(--shell0bf5d-line);
}
.shell0bf5d-ext-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.shell0bf5d-ext-brand .shell0bf5d-logo-tile { width: 36px; height: 36px; }
.shell0bf5d-ext-brand-text h3 { font-size: 15px; font-weight: 800; color: var(--shell0bf5d-gold); margin: 0; }
.shell0bf5d-ext-brand-text span { font-size: 11px; color: var(--shell0bf5d-text-dim); }
.shell0bf5d-ext-brand p {
  font-size: 12px;
  color: var(--shell0bf5d-text-dim);
  line-height: 1.55;
  margin-top: 8px;
}

.shell0bf5d-ext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}
.shell0bf5d-ext-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--shell0bf5d-gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--shell0bf5d-line);
}
.shell0bf5d-ext-col ul { display: flex; flex-direction: column; gap: 7px; }
.shell0bf5d-ext-col a {
  color: var(--shell0bf5d-text-dim);
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.shell0bf5d-ext-col a:hover { color: var(--shell0bf5d-gold); text-decoration: none; }
.shell0bf5d-ext-col a svg { width: 12px; height: 12px; color: var(--shell0bf5d-metal); }

.shell0bf5d-ext-promo {
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.shell0bf5d-ext-promo-btn {
  aspect-ratio: 1 / 1;
  border-radius: 11px;
  background: linear-gradient(140deg, rgba(255, 215, 0, 0.12), rgba(0, 100, 0, 0.18));
  border: 1px solid var(--shell0bf5d-metal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shell0bf5d-gold);
  min-height: 44px;
  transition: transform 0.15s ease;
}
.shell0bf5d-ext-promo-btn:hover { text-decoration: none; color: var(--shell0bf5d-gold); transform: translateY(-2px); }
.shell0bf5d-ext-promo-btn:active { transform: scale(0.93); }
.shell0bf5d-ext-promo-btn svg { width: 20px; height: 20px; }

.shell0bf5d-ext-disclaimer {
  margin-top: 14px;
  padding: 12px;
  background: rgba(0, 100, 0, 0.08);
  border-left: 3px solid var(--shell0bf5d-green-bright);
  border-radius: 6px;
  font-size: 11px;
  color: var(--shell0bf5d-text-dim);
  line-height: 1.55;
}
.shell0bf5d-ext-disclaimer strong { color: var(--shell0bf5d-text); }

.shell0bf5d-copyright {
  text-align: center;
  font-size: 11px;
  color: var(--shell0bf5d-text-faint);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--shell0bf5d-line);
}

/* ============================================================
   BOTTOM NAV - outlined functional bar, 5 roles
   ============================================================ */
.shell0bf5d-bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--shell0bf5d-bottomnav-h);
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.97), rgba(5, 8, 13, 0.99));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--shell0bf5d-metal);
  box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 55;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.shell0bf5d-bottomnav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px 6px;
  color: var(--shell0bf5d-text-dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
  border: none;
  background: none;
  min-height: 44px;
  transition: color 0.18s ease;
}
.shell0bf5d-bottomnav-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%) scaleX(0);
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--shell0bf5d-gold), var(--shell0bf5d-metal));
  transition: transform 0.22s ease;
}
.shell0bf5d-bottomnav-item:hover { color: var(--shell0bf5d-gold); text-decoration: none; }
.shell0bf5d-bottomnav-item.shell0bf5d-active { color: var(--shell0bf5d-gold); }
.shell0bf5d-bottomnav-item.shell0bf5d-active::after { transform: translateX(-50%) scaleX(1); }

.shell0bf5d-bottomnav-tile {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--shell0bf5d-surface);
  border: 1px solid var(--shell0bf5d-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.shell0bf5d-bottomnav-item:hover .shell0bf5d-bottomnav-tile { transform: translateY(-2px) scale(1.04); }
.shell0bf5d-bottomnav-item.shell0bf5d-active .shell0bf5d-bottomnav-tile {
  background: linear-gradient(140deg, rgba(255, 215, 0, 0.16), rgba(212, 175, 55, 0.1));
  border-color: var(--shell0bf5d-gold);
  color: var(--shell0bf5d-gold);
  transform: translateY(-1px);
}
.shell0bf5d-bottomnav-tile svg { width: 19px; height: 19px; }

.shell0bf5d-bottomnav-item.shell0bf5d-promo .shell0bf5d-bottomnav-tile {
  background: linear-gradient(140deg, rgba(0, 100, 0, 0.28), rgba(212, 175, 55, 0.16));
  border-color: var(--shell0bf5d-metal);
  color: var(--shell0bf5d-gold);
}
.shell0bf5d-bottomnav-item.shell0bf5d-promo:hover .shell0bf5d-bottomnav-tile { transform: translateY(-2px) rotate(-4deg); }

/* ============================================================
   UTILITIES
   ============================================================ */
.shell0bf5d-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.shell0bf5d-hidden { display: none !important; }

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--shell0bf5d-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
