/* ==========================================================================
   1bet casino - shared mobile frame stylesheet
   File: css/1bet-casino-frame-6b6f29.css
   Canvas: 320-430px phone layout, centered as a phone canvas on wide screens
   All class names and custom properties use the prefix "shellf2953-"
   Design tone: dark slate canvas, gold focus accents, small radii,
   dense compact rhythm, light floating game tiles, sliding focus cues.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --shellf2953-bg: #2f2f2f;
  --shellf2953-panel: #2c3e50;
  --shellf2953-panel-deep: #243240;
  --shellf2953-panel-raise: #37536e;
  --shellf2953-line: rgba(233, 241, 248, 0.1);
  --shellf2953-line-strong: rgba(233, 241, 248, 0.24);
  --shellf2953-ink: #eaf1f8;
  --shellf2953-muted: #a9bac9;
  --shellf2953-gold: #e8a93d;
  --shellf2953-gold-bright: #f7c55c;
  --shellf2953-gold-ink: #2a1e06;
  --shellf2953-win: #7cc98b;
  --shellf2953-font-display: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  --shellf2953-font-body: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --shellf2953-radius: 8px;
  --shellf2953-radius-sm: 5px;
  --shellf2953-shadow-card: 0 6px 16px rgba(10, 16, 22, 0.35);
  --shellf2953-glow: 0 0 0 1px rgba(232, 169, 61, 0.6), 0 0 14px rgba(232, 169, 61, 0.3);
  --shellf2953-dock-h: 62px;
}

/* --------------------------------------------------------------------------
   2. Base / reset-ish
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #17191b;
  color: var(--shellf2953-ink);
  font-family: var(--shellf2953-font-body);
  font-size: 15px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
  color: inherit;
}

a {
  color: var(--shellf2953-gold-bright);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: var(--shellf2953-font-display);
  color: var(--shellf2953-ink);
  margin: 0;
  line-height: 1.25;
}

p {
  margin: 0 0 10px;
}

p:last-child {
  margin-bottom: 0;
}

.shellf2953-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;
}

/* Visible keyboard focus: sliding gold underline feel */
:focus-visible {
  outline: 2px solid var(--shellf2953-gold-bright);
  outline-offset: 2px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   3. Phone canvas shell (430px max, centered on desktop)
   -------------------------------------------------------------------------- */
.shellf2953-shell {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(120% 46% at 50% 0%, rgba(55, 83, 110, 0.5) 0%, rgba(47, 47, 47, 0) 62%),
    var(--shellf2953-bg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 60px rgba(0, 0, 0, 0.55);
}

/* --------------------------------------------------------------------------
   4. Top action band (minimal title bar + action cluster)
   -------------------------------------------------------------------------- */
.shellf2953-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 56px;
  padding: 8px 12px;
  padding-top: calc(8px + env(safe-area-inset-top, 0px));
  background: rgba(36, 50, 64, 0.94);
  border-bottom: 1px solid var(--shellf2953-line-strong);
  backdrop-filter: blur(8px);
}

.shellf2953-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--shellf2953-ink);
  text-decoration: none;
}

.shellf2953-brand:hover,
.shellf2953-brand:focus-visible {
  text-decoration: none;
}

.shellf2953-logo {
  width: 32px;
  height: 32px;
  border-radius: var(--shellf2953-radius-sm);
  box-shadow: 0 0 0 1px var(--shellf2953-line-strong), 0 2px 6px rgba(0, 0, 0, 0.4);
  flex: 0 0 auto;
}

.shellf2953-brandname {
  font-family: var(--shellf2953-font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shellf2953-brandname::after {
  content: "";
  display: block;
  height: 2px;
  width: 34px;
  margin-top: 1px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--shellf2953-gold), rgba(232, 169, 61, 0));
}

.shellf2953-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

/* Light-rounded text button group */
.shellf2953-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.shellf2953-btn--gold {
  background: linear-gradient(180deg, var(--shellf2953-gold-bright), var(--shellf2953-gold));
  color: var(--shellf2953-gold-ink);
  box-shadow: 0 3px 10px rgba(232, 169, 61, 0.25);
}

.shellf2953-btn--gold:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.shellf2953-btn--gold:active {
  transform: translateY(0);
  box-shadow: var(--shellf2953-glow);
}

.shellf2953-btn--ghost {
  background: rgba(233, 241, 248, 0.05);
  border-color: var(--shellf2953-line-strong);
  color: var(--shellf2953-ink);
}

.shellf2953-btn--ghost:active {
  box-shadow: var(--shellf2953-glow);
}

.shellf2953-btn--ghost:hover {
  text-decoration: none;
  background: rgba(233, 241, 248, 0.1);
}

/* Hamburger: three sliding bars */
.shellf2953-menubtn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 10px 11px;
  background: rgba(233, 241, 248, 0.05);
  border: 1px solid var(--shellf2953-line-strong);
  border-radius: 7px;
  cursor: pointer;
}

.shellf2953-menuline {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--shellf2953-ink);
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.shellf2953-menubtn[aria-expanded="true"] .shellf2953-menuline:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.shellf2953-menubtn[aria-expanded="true"] .shellf2953-menuline:nth-child(2) {
  opacity: 0;
}

.shellf2953-menubtn[aria-expanded="true"] .shellf2953-menuline:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.shellf2953-menubtn:active {
  box-shadow: var(--shellf2953-glow);
}

/* --------------------------------------------------------------------------
   5. Slide-up route panel (drawer) + scrim
   -------------------------------------------------------------------------- */
.shellf2953-scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(9, 13, 17, 0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.shellf2953-scrim--on {
  opacity: 1;
  pointer-events: auto;
}

.shellf2953-drawer {
  position: fixed;
  z-index: 50;
  bottom: 0;
  left: 50%;
  width: min(100%, 430px);
  max-height: min(78vh, 620px);
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, var(--shellf2953-panel-raise), var(--shellf2953-panel-deep) 42%);
  border-radius: 14px 14px 0 0;
  border: 1px solid var(--shellf2953-line-strong);
  border-bottom: 0;
  box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%) translateY(103%);
  transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shellf2953-drawer--open {
  transform: translateX(-50%) translateY(0);
}

.shellf2953-drawerhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 8px;
}

.shellf2953-drawertitle {
  font-family: var(--shellf2953-font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--shellf2953-ink);
}

.shellf2953-drawertitle::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 2px;
  background: var(--shellf2953-gold);
}

.shellf2953-drawerclose {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--shellf2953-line);
  border-radius: 7px;
  color: var(--shellf2953-muted);
  font-size: 17px;
  cursor: pointer;
}

.shellf2953-drawerclose:active {
  color: var(--shellf2953-ink);
  box-shadow: var(--shellf2953-glow);
}

.shellf2953-routegroups {
  overflow-y: auto;
  padding: 2px 14px 10px;
}

.shellf2953-routegroup {
  padding: 6px 0;
  border-top: 1px solid var(--shellf2953-line);
}

.shellf2953-routegroup:first-child {
  border-top: 0;
}

.shellf2953-routegrouplabel {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--shellf2953-muted);
  padding: 6px 2px 4px;
}

.shellf2953-route {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  margin: 3px 0;
  border-radius: var(--shellf2953-radius-sm);
  border: 1px solid transparent;
  color: var(--shellf2953-ink);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.shellf2953-route::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--shellf2953-gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.shellf2953-route:hover,
.shellf2953-route:focus-visible {
  background: rgba(233, 241, 248, 0.07);
  text-decoration: none;
}

.shellf2953-route--on {
  background: rgba(232, 169, 61, 0.12);
  border-color: rgba(232, 169, 61, 0.4);
  color: var(--shellf2953-gold-bright);
}

.shellf2953-route--on::before,
.shellf2953-route:hover::before {
  transform: scaleY(1);
}

.shellf2953-drawercta {
  margin: 8px 14px 0;
  display: flex;
  gap: 8px;
}

.shellf2953-drawercta .shellf2953-btn {
  flex: 1;
}

/* --------------------------------------------------------------------------
   6. Main column + section scaffolding
   -------------------------------------------------------------------------- */
.shellf2953-main {
  padding: 14px 12px calc(var(--shellf2953-dock-h) + 34px + env(safe-area-inset-bottom, 0px));
}

.shellf2953-section {
  margin: 0 0 26px;
}

.shellf2953-sechead {
  position: relative;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.shellf2953-sechead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--shellf2953-gold) 0%, rgba(232, 169, 61, 0.12) 58%, rgba(232, 169, 61, 0) 100%);
  transform-origin: left center;
  transform: scaleX(0.32);
  transition: transform 0.3s ease;
}

.shellf2953-section:focus-within .shellf2953-sechead::after,
.shellf2953-section:hover .shellf2953-sechead::after {
  transform: scaleX(1);
}

.shellf2953-seclead {
  color: var(--shellf2953-muted);
  font-size: 13.5px;
  margin: 0 0 12px;
}

.shellf2953-prose {
  color: var(--shellf2953-ink);
  font-size: 14px;
}

.shellf2953-prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   7. Hero carousel
   -------------------------------------------------------------------------- */
.shellf2953-hero {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--shellf2953-radius);
  overflow: hidden;
  border: 1px solid var(--shellf2953-line-strong);
  box-shadow: var(--shellf2953-shadow-card);
}

.shellf2953-slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.shellf2953-slides::-webkit-scrollbar {
  display: none;
}

.shellf2953-slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 0;
  border: 0;
  background: var(--shellf2953-panel-deep);
  cursor: pointer;
  min-height: 44px;
}

.shellf2953-slideimg {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.shellf2953-slidecap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 12px 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: left;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
  background: linear-gradient(180deg, rgba(10, 14, 18, 0) 0%, rgba(10, 14, 18, 0.82) 78%);
}

.shellf2953-dots {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.shellf2953-dot {
  width: 22px;
  height: 22px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.shellf2953-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.shellf2953-dot--on::before {
  background: var(--shellf2953-gold-bright);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(247, 197, 92, 0.8);
}

/* --------------------------------------------------------------------------
   8. Metric strip (compact metric + explanation cells)
   -------------------------------------------------------------------------- */
.shellf2953-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 4px;
}

.shellf2953-metric {
  background: rgba(44, 62, 80, 0.55);
  border: 1px solid var(--shellf2953-line);
  border-radius: var(--shellf2953-radius-sm);
  padding: 9px 10px;
}

.shellf2953-metricval {
  display: block;
  font-family: var(--shellf2953-font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--shellf2953-gold-bright);
  line-height: 1.1;
}

.shellf2953-metriclabel {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--shellf2953-ink);
  margin-top: 2px;
}

.shellf2953-metricnote {
  display: block;
  font-size: 11.5px;
  color: var(--shellf2953-muted);
  margin-top: 2px;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   9. Checklist (decision cells)
   -------------------------------------------------------------------------- */
.shellf2953-checklist {
  display: grid;
  gap: 8px;
}

.shellf2953-checkitem {
  position: relative;
  padding: 10px 10px 10px 38px;
  background: rgba(36, 50, 64, 0.5);
  border: 1px solid var(--shellf2953-line);
  border-radius: var(--shellf2953-radius-sm);
}

.shellf2953-checkitem::before {
  content: "\2713";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--shellf2953-gold-ink);
  background: var(--shellf2953-gold);
  border-radius: 4px;
}

.shellf2953-checktitle {
  display: block;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--shellf2953-ink);
}

.shellf2953-checktext {
  display: block;
  font-size: 12.5px;
  color: var(--shellf2953-muted);
  margin-top: 3px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   10. Game grids (light floating tiles, 4 cols -> 5 cols)
   -------------------------------------------------------------------------- */
.shellf2953-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

@media (min-width: 400px) {
  .shellf2953-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
  }
}

.shellf2953-tile {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: rgba(44, 62, 80, 0.42);
  border: 1px solid var(--shellf2953-line);
  border-radius: var(--shellf2953-radius-sm);
  cursor: pointer;
  text-align: center;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  -webkit-tap-highlight-color: rgba(232, 169, 61, 0.18);
}

.shellf2953-tile:hover,
.shellf2953-tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(232, 169, 61, 0.5);
  box-shadow: 0 8px 18px rgba(10, 16, 22, 0.5);
  text-decoration: none;
}

.shellf2953-tile:active {
  transform: translateY(-1px);
  box-shadow: var(--shellf2953-glow);
}

.shellf2953-tileimg {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  background: var(--shellf2953-panel-deep);
}

.shellf2953-tilename {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
  min-height: 2.6em;
  color: var(--shellf2953-ink);
  word-break: break-word;
}

/* --------------------------------------------------------------------------
   11. Reviews
   -------------------------------------------------------------------------- */
.shellf2953-reviews {
  display: grid;
  gap: 8px;
}

.shellf2953-review {
  background: rgba(36, 50, 64, 0.5);
  border: 1px solid var(--shellf2953-line);
  border-left: 3px solid rgba(232, 169, 61, 0.55);
  border-radius: var(--shellf2953-radius-sm);
  padding: 10px 11px;
}

.shellf2953-reviewtop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.shellf2953-reviewname {
  font-weight: 800;
  font-size: 13px;
  color: var(--shellf2953-ink);
}

.shellf2953-reviewtag {
  font-size: 11px;
  color: var(--shellf2953-muted);
  white-space: nowrap;
}

.shellf2953-stars {
  color: var(--shellf2953-gold-bright);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.shellf2953-reviewtext {
  font-size: 12.5px;
  color: #c8d5e1;
  margin: 0;
  line-height: 1.52;
}

/* --------------------------------------------------------------------------
   12. Winners board
   -------------------------------------------------------------------------- */
.shellf2953-winners {
  border: 1px solid var(--shellf2953-line);
  border-radius: var(--shellf2953-radius);
  overflow: hidden;
  background: rgba(36, 50, 64, 0.42);
}

.shellf2953-winrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--shellf2953-line);
}

.shellf2953-winrow:last-child {
  border-bottom: 0;
}

.shellf2953-wingame {
  font-weight: 700;
  font-size: 13px;
  color: var(--shellf2953-ink);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shellf2953-winmeta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex: 0 0 auto;
}

.shellf2953-winamt {
  font-family: var(--shellf2953-font-display);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--shellf2953-win);
}

.shellf2953-wintime {
  font-size: 11px;
  color: var(--shellf2953-muted);
}

.shellf2953-winnote {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--shellf2953-muted);
}

/* --------------------------------------------------------------------------
   13. Steps
   -------------------------------------------------------------------------- */
.shellf2953-steps {
  display: grid;
  gap: 8px;
  counter-reset: shellf2953step;
}

.shellf2953-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  background: rgba(44, 62, 80, 0.42);
  border: 1px solid var(--shellf2953-line);
  border-radius: var(--shellf2953-radius-sm);
}

.shellf2953-stepnum {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--shellf2953-font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--shellf2953-gold-ink);
  background: linear-gradient(180deg, var(--shellf2953-gold-bright), var(--shellf2953-gold));
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(232, 169, 61, 0.22);
}

.shellf2953-steptitle {
  display: block;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--shellf2953-ink);
}

.shellf2953-steptext {
  display: block;
  font-size: 12.5px;
  color: var(--shellf2953-muted);
  margin-top: 3px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   14. Term blocks
   -------------------------------------------------------------------------- */
.shellf2953-terms {
  display: grid;
  gap: 10px;
}

.shellf2953-term {
  padding: 11px 12px;
  background: rgba(36, 50, 64, 0.5);
  border: 1px solid var(--shellf2953-line);
  border-radius: var(--shellf2953-radius-sm);
}

.shellf2953-termh {
  font-size: 14px;
  font-weight: 800;
  color: var(--shellf2953-gold-bright);
  margin-bottom: 4px;
}

.shellf2953-term p {
  font-size: 12.5px;
  color: #c8d5e1;
  margin: 0;
  line-height: 1.52;
}

/* --------------------------------------------------------------------------
   15. Extended footer (brand > promotions > directory > disclaimer)
   -------------------------------------------------------------------------- */
.shellf2953-extfoot {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--shellf2953-line-strong);
}

.shellf2953-extfoot-h {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--shellf2953-ink);
  margin: 16px 0 8px;
}

.shellf2953-extfoot-h::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 2px;
  background: var(--shellf2953-gold);
}

.shellf2953-extbrandtext {
  font-size: 13px;
  color: #c8d5e1;
  margin: 0;
}

/* Horizontal shortcut chips for entry points */
.shellf2953-promorow {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.shellf2953-promochip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(232, 169, 61, 0.45);
  background: rgba(232, 169, 61, 0.1);
  color: var(--shellf2953-gold-bright);
  font-weight: 700;
  font-size: 12.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.shellf2953-promochip::before {
  content: "\2192";
  font-size: 13px;
  transition: transform 0.18s ease;
}

.shellf2953-promochip:hover {
  background: rgba(232, 169, 61, 0.18);
}

.shellf2953-promochip:active {
  box-shadow: var(--shellf2953-glow);
}

.shellf2953-promochip:active::before {
  transform: translateX(3px);
}

.shellf2953-promonote {
  font-size: 11.5px;
  color: var(--shellf2953-muted);
  margin: 2px 0 0;
}

/* Page directory: dense two-column list */
.shellf2953-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
}

.shellf2953-diritem {
  display: block;
  padding: 7px 9px;
  background: rgba(44, 62, 80, 0.35);
  border: 1px solid var(--shellf2953-line);
  border-radius: var(--shellf2953-radius-sm);
}

.shellf2953-diritem strong {
  display: block;
  font-size: 12.5px;
  color: var(--shellf2953-gold-bright);
  font-weight: 700;
}

.shellf2953-dirnote {
  display: block;
  font-size: 11px;
  color: var(--shellf2953-muted);
  line-height: 1.4;
  margin-top: 2px;
}

.shellf2953-note {
  margin-top: 14px;
  padding: 10px 11px;
  border: 1px dashed var(--shellf2953-line-strong);
  border-radius: var(--shellf2953-radius-sm);
  font-size: 11.5px;
  color: var(--shellf2953-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   16. Generic copyright bar
   -------------------------------------------------------------------------- */
.shellf2953-foot {
  padding: 4px 12px calc(10px + var(--shellf2953-dock-h) + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 11.5px;
  color: var(--shellf2953-muted);
  border-top: 1px solid var(--shellf2953-line);
}

/* --------------------------------------------------------------------------
   17. Bottom navigation rail (5 roles, fixed, phone-canvas width)
   -------------------------------------------------------------------------- */
.shellf2953-dock {
  position: fixed;
  z-index: 30;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: var(--shellf2953-dock-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(30, 41, 52, 0.97);
  border-top: 1px solid var(--shellf2953-line-strong);
  backdrop-filter: blur(8px);
}

.shellf2953-dockbtn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: var(--shellf2953-dock-h);
  padding: 8px 2px 6px;
  background: transparent;
  border: 0;
  color: var(--shellf2953-muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(232, 169, 61, 0.16);
  transition: color 0.18s ease;
}

/* Sliding focus indicator under the active role */
.shellf2953-dockbtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--shellf2953-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.shellf2953-dockbtn:active {
  color: var(--shellf2953-ink);
}

.shellf2953-dockbtn:active .shellf2953-dockicon {
  filter: drop-shadow(0 0 7px rgba(247, 197, 92, 0.85));
}

.shellf2953-dockbtn--on {
  color: var(--shellf2953-gold-bright);
}

.shellf2953-dockbtn--on::after {
  transform: scaleX(1);
}

.shellf2953-dockicon {
  width: 22px;
  height: 22px;
  display: block;
}

.shellf2953-docklabel {
  display: block;
  line-height: 1.1;
}

/* --------------------------------------------------------------------------
   18. Wide-screen framing (keeps the phone canvas experience)
   -------------------------------------------------------------------------- */
@media (min-width: 431px) {
  body {
    padding: 18px 0;
  }

  .shellf2953-shell {
    border-radius: 18px;
  }

  .shellf2953-topbar {
    border-radius: 18px 18px 0 0;
  }
}

/* Slightly roomier rhythm on 375px+ phones */
@media (min-width: 375px) {
  .shellf2953-main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .shellf2953-sechead {
    font-size: 20px;
  }
}

/* --------------------------------------------------------------------------
   19. Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* Keep long guidance readable while preserving the compact phone canvas. */
.shellf2953-main {
  min-width: 0;
  overflow-wrap: anywhere;
}

.shellf2953-main button,
.shellf2953-main a {
  touch-action: manipulation;
}

.shellf2953-dockbtn {
  min-width: 0;
}

@media (max-width: 350px) {
  .shellf2953-topbar {
    gap: 4px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .shellf2953-brandname {
    max-width: 94px;
    font-size: 15px;
  }

  .shellf2953-actions {
    gap: 4px;
  }

  .shellf2953-actions .shellf2953-btn {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 12px;
  }
}
