/* surface-native-194036.css
 * Visual surface for the d9d9 game mobile lobby.
 * All custom classes use the shell19403- prefix; CSS variables follow the
 * same convention. Designed for a 320-430px phone canvas that stays
 * centered on wider screens; no desktop layout is required. */

:root {
  --shell19403-bg-deep: #0F0F23;
  --shell19403-bg-soft: #15163a;
  --shell19403-bg-card: #1b1d44;
  --shell19403-bg-card-strong: #232654;
  --shell19403-text: #E8F5E8;
  --shell19403-text-muted: #9fb4c4;
  --shell19403-teal: #4DB6AC;
  --shell19403-cyan: #40E0D0;
  --shell19403-gold: #ffd76b;
  --shell19403-border: rgba(77, 182, 172, 0.28);
  --shell19403-border-strong: rgba(64, 224, 208, 0.55);
  --shell19403-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  --shell19403-radius-sm: 8px;
  --shell19403-radius: 14px;
  --shell19403-radius-lg: 22px;
  --shell19403-header-h: 60px;
  --shell19403-bottom-h: 64px;
  --shell19403-frame-w: 430px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Dark backdrop fills the area around the centered phone canvas. */
  background: #07071a;
}

body {
  margin: 0;
  font-family: "SF Pro Text", "Helvetica Neue", "Segoe UI", Roboto, system-ui, sans-serif;
  color: var(--shell19403-text);
  background: radial-gradient(circle at 20% -10%, #1c1f4a 0%, var(--shell19403-bg-deep) 55%) no-repeat;
  background-color: #07071a;
  line-height: 1.5;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  max-width: var(--shell19403-frame-w);
  margin: 0 auto;
}

.shell19403-canvas {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(77, 182, 172, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, var(--shell19403-bg-deep) 0%, #0c0c1c 100%);
  box-shadow: var(--shell19403-shadow);
  overflow-x: hidden;
}

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

a {
  color: var(--shell19403-cyan);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--shell19403-gold);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.2px;
}

p {
  margin: 0 0 0.7em;
}

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.15em;
}

/* ---------- Skip link for accessibility ---------- */
.shell19403-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--shell19403-cyan);
  color: var(--shell19403-bg-deep);
  padding: 8px 14px;
  border-radius: var(--shell19403-radius-sm);
  z-index: 200;
}

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

/* ================================================== *
 * HEADER - asymmetric brand bar
 * Logo + brand name on the left, brand actions on
 * the right, and a partition-menu trigger below.
 * ================================================== */
.shell19403-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(15, 15, 35, 0.97) 0%, rgba(15, 15, 35, 0.88) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--shell19403-border);
  padding: 8px 12px 0;
}

.shell19403-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
}

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

.shell19403-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1.5px solid var(--shell19403-teal);
  box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.12), 0 6px 14px rgba(0, 0, 0, 0.45);
  background: radial-gradient(circle at 30% 25%, #2b2f6b, #11132c);
  flex-shrink: 0;
  object-fit: cover;
}

.shell19403-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.shell19403-brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--shell19403-text);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shell19403-brand-name b {
  color: var(--shell19403-cyan);
}

.shell19403-brand-tag {
  font-size: 10.5px;
  color: var(--shell19403-text-muted);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.shell19403-header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.shell19403-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.shell19403-btn-login {
  background: rgba(77, 182, 172, 0.14);
  color: var(--shell19403-text);
  border: 1px solid var(--shell19403-border);
}

.shell19403-btn-register {
  background: linear-gradient(135deg, var(--shell19403-cyan) 0%, var(--shell19403-teal) 100%);
  color: var(--shell19403-bg-deep);
  box-shadow: 0 6px 16px rgba(64, 224, 208, 0.32);
}

.shell19403-btn:hover {
  transform: translateY(-1px);
}

.shell19403-btn-register:hover {
  color: var(--shell19403-bg-deep);
  box-shadow: 0 10px 22px rgba(64, 224, 208, 0.42);
}

/* Header bottom row: partition-menu trigger + live cue */
.shell19403-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0 9px;
}

.shell19403-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--shell19403-text);
  background: rgba(232, 245, 232, 0.06);
  border: 1px solid var(--shell19403-border);
}

.shell19403-menu-trigger .shell19403-burger {
  width: 16px;
  height: 12px;
  position: relative;
}

.shell19403-menu-trigger .shell19403-burger::before,
.shell19403-menu-trigger .shell19403-burger::after,
.shell19403-menu-trigger .shell19403-burger i {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--shell19403-cyan);
  border-radius: 2px;
}

.shell19403-menu-trigger .shell19403-burger::before { top: 0; }
.shell19403-menu-trigger .shell19403-burger i { top: 5px; }
.shell19403-menu-trigger .shell19403-burger::after { top: 10px; }

.shell19403-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--shell19403-text-muted);
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid var(--shell19403-border);
}

.shell19403-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shell19403-cyan);
  box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.25);
  animation: shell19403-pulse 1.6s infinite ease-in-out;
}

@keyframes shell19403-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* ================================================== *
 * PARTITION MENU (categorised slide-in panel)
 * ================================================== */
.shell19403-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 86%;
  max-width: 360px;
  height: 100vh;
  z-index: 120;
  background: linear-gradient(180deg, #14163a 0%, #0d0e22 100%);
  border-left: 1px solid var(--shell19403-border);
  box-shadow: -22px 0 50px rgba(0, 0, 0, 0.6);
  transform: translateX(105%);
  transition: transform 0.26s ease;
  overflow-y: auto;
  padding: 16px 16px calc(var(--shell19403-bottom-h) + 24px);
  visibility: hidden;
}

body.shell19403-menu-open .shell19403-menu {
  transform: translateX(0);
  visibility: visible;
}

.shell19403-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 14, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 115;
}

body.shell19403-menu-open .shell19403-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.shell19403-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.shell19403-menu-head h3 {
  font-size: 14px;
  color: var(--shell19403-text-muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.shell19403-menu-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(232, 245, 232, 0.08);
  color: var(--shell19403-text);
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--shell19403-border);
}

.shell19403-menu-cta {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.shell19403-menu-cta .shell19403-btn {
  flex: 1;
}

.shell19403-menu-section {
  margin-bottom: 14px;
  padding: 12px;
  border-radius: var(--shell19403-radius);
  background: rgba(232, 245, 232, 0.04);
  border: 1px solid var(--shell19403-border);
}

.shell19403-menu-section h4 {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--shell19403-teal);
  margin-bottom: 9px;
}

.shell19403-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.shell19403-menu-list a {
  display: block;
  padding: 9px 10px;
  font-size: 13px;
  color: var(--shell19403-text);
  border-radius: var(--shell19403-radius-sm);
  background: rgba(15, 15, 35, 0.55);
  border: 1px solid transparent;
}

.shell19403-menu-list a:hover {
  border-color: var(--shell19403-border-strong);
  background: rgba(64, 224, 208, 0.1);
  color: var(--shell19403-text);
}

/* ================================================== *
 * MAIN
 * ================================================== */
.shell19403-main {
  padding: 14px 12px calc(var(--shell19403-bottom-h) + 28px);
}

/* ---------- H1 + INTRO ---------- */
.shell19403-page-h1 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--shell19403-text);
}

.shell19403-page-h1 b {
  color: var(--shell19403-cyan);
}

.shell19403-lead {
  font-size: 13px;
  color: var(--shell19403-text-muted);
  margin-bottom: 14px;
}

/* ---------- HERO / CAROUSEL ---------- */
.shell19403-hero {
  position: relative;
  border-radius: var(--shell19403-radius-lg);
  overflow: hidden;
  box-shadow: var(--shell19403-shadow);
  border: 1px solid var(--shell19403-border);
  margin-bottom: 16px;
  background: #0a0b1c;
}

.shell19403-hero-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 170px;
}

.shell19403-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.7s ease;
  pointer-events: none;
}

.shell19403-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shell19403-slide-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.shell19403-slide-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 35, 0.05) 35%, rgba(15, 15, 35, 0.82) 100%);
}

.shell19403-slide-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--shell19403-text);
}

.shell19403-slide-title {
  font-size: 17px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.shell19403-slide-sub {
  font-size: 12.5px;
  color: var(--shell19403-text-muted);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.shell19403-slide-cta {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--shell19403-cyan), var(--shell19403-teal));
  color: var(--shell19403-bg-deep);
  font-weight: 700;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(64, 224, 208, 0.4);
}

.shell19403-hero-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 5;
}

.shell19403-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(232, 245, 232, 0.45);
  transition: width 0.2s ease, background 0.2s ease;
  padding: 0;
}

.shell19403-dot-active {
  width: 20px;
  background: var(--shell19403-cyan);
}

/* ---------- TRUST STRIP ---------- */
.shell19403-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
  border-radius: var(--shell19403-radius);
  background: linear-gradient(135deg, rgba(77, 182, 172, 0.16), rgba(64, 224, 208, 0.06));
  border: 1px solid var(--shell19403-border);
  font-size: 12px;
}

.shell19403-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.shell19403-trust-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--shell19403-cyan);
}

.shell19403-trust-label {
  font-size: 10.5px;
  color: var(--shell19403-text-muted);
  margin-top: 1px;
}

/* ---------- SECTION HEADERS ---------- */
.shell19403-section {
  margin-bottom: 22px;
}

.shell19403-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  padding: 0 2px;
  gap: 8px;
}

.shell19403-section-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--shell19403-text);
  flex: 1;
}

.shell19403-section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(64, 224, 208, 0.16);
  border: 1px solid var(--shell19403-border-strong);
  font-size: 13px;
  color: var(--shell19403-cyan);
  flex-shrink: 0;
}

.shell19403-section-link {
  font-size: 12px;
  color: var(--shell19403-cyan);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- GAME GRID (4 cols compact at 320px) ---------- */
.shell19403-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.shell19403-tile {
  position: relative;
  display: block;
  border-radius: var(--shell19403-radius);
  overflow: hidden;
  background: var(--shell19403-bg-card);
  border: 1px solid var(--shell19403-border);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.shell19403-tile:hover,
.shell19403-tile:focus {
  transform: translateY(-2px);
  border-color: var(--shell19403-border-strong);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.45);
}

.shell19403-tile-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #232654, #14163a);
  overflow: hidden;
}

.shell19403-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.shell19403-tile-ready {
  opacity: 1 !important;
}

.shell19403-tile-broken {
  filter: grayscale(1) brightness(0.6);
}

.shell19403-tile:hover .shell19403-tile-media img {
  transform: scale(1.05);
}

.shell19403-tile-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: linear-gradient(135deg, #ff5e7e, #ffd76b);
  color: #221101;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
}

.shell19403-tile-name {
  display: block;
  padding: 5px 6px 6px;
  font-size: 10.8px;
  line-height: 1.2;
  color: var(--shell19403-text);
  text-align: center;
  background: rgba(15, 15, 35, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.shell19403-press {
  transform: scale(0.94);
}

/* ---------- CONTENT MODULES ---------- */
.shell19403-module {
  border-radius: var(--shell19403-radius);
  padding: 14px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(27, 29, 68, 0.85), rgba(15, 15, 35, 0.85));
  border: 1px solid var(--shell19403-border);
}

.shell19403-module-title {
  font-size: 15.5px;
  margin-bottom: 9px;
  color: var(--shell19403-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shell19403-module-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--shell19403-cyan), var(--shell19403-teal));
}

.shell19403-module p {
  font-size: 13.5px;
  color: var(--shell19403-text);
}

.shell19403-module p:last-child {
  margin-bottom: 0;
}

.shell19403-module ul,
.shell19403-module ol {
  font-size: 13px;
  color: var(--shell19403-text);
}

.shell19403-module ul li,
.shell19403-module ol li {
  margin-bottom: 6px;
}

.shell19403-module a {
  font-weight: 600;
}

/* Inline promo pill inside modules */
.shell19403-inline-promo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--shell19403-cyan), var(--shell19403-teal));
  color: var(--shell19403-bg-deep);
}

.shell19403-inline-promo:hover {
  color: var(--shell19403-bg-deep);
}

/* Promo action list */
.shell19403-promo-actions {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.shell19403-promo-actions li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border-radius: var(--shell19403-radius-sm);
  background: rgba(232, 245, 232, 0.04);
  border: 1px solid var(--shell19403-border);
  font-size: 12.5px;
}

.shell19403-promo-actions .shell19403-num {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(64, 224, 208, 0.18);
  color: var(--shell19403-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.shell19403-promo-actions strong {
  color: var(--shell19403-text);
  font-weight: 700;
  margin-right: 4px;
}

/* Requirements summary two-column mini grid */
.shell19403-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.shell19403-req-card {
  padding: 10px;
  border-radius: var(--shell19403-radius-sm);
  background: rgba(232, 245, 232, 0.04);
  border: 1px solid var(--shell19403-border);
}

.shell19403-req-card h4 {
  font-size: 12px;
  color: var(--shell19403-teal);
  margin-bottom: 4px;
  letter-spacing: 0.4px;
}

.shell19403-req-card p {
  font-size: 11.8px;
  color: var(--shell19403-text-muted);
  margin: 0;
}

/* ================================================== *
 * EXTENDED FOOTER (home-only directory)
 * ================================================== */
.shell19403-ext-footer {
  margin-top: 24px;
  padding: 16px 13px;
  border-radius: var(--shell19403-radius-lg);
  background: linear-gradient(180deg, rgba(15, 15, 35, 0.96), rgba(8, 9, 22, 0.96));
  border: 1px solid var(--shell19403-border);
}

.shell19403-ext-footer h3 {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--shell19403-teal);
  margin-bottom: 10px;
}

.shell19403-ext-brand {
  font-size: 12.5px;
  color: var(--shell19403-text-muted);
  margin-bottom: 14px;
}

.shell19403-ext-section {
  margin-bottom: 16px;
}

.shell19403-ext-section h4 {
  font-size: 12px;
  color: var(--shell19403-text);
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}

.shell19403-ext-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 5px;
}

.shell19403-ext-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--shell19403-text);
  padding: 6px 8px;
  border-radius: var(--shell19403-radius-sm);
  background: rgba(232, 245, 232, 0.03);
  border: 1px solid transparent;
}

.shell19403-ext-list a:hover {
  background: rgba(64, 224, 208, 0.1);
  border-color: var(--shell19403-border);
  color: var(--shell19403-text);
}

.shell19403-ext-list a::before {
  content: "›";
  color: var(--shell19403-cyan);
  font-weight: 800;
}

.shell19403-ext-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 6px;
}

.shell19403-ext-promo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 10px;
  border-radius: var(--shell19403-radius-sm);
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.16), rgba(77, 182, 172, 0.06));
  border: 1px solid var(--shell19403-border-strong);
  font-size: 11.5px;
  color: var(--shell19403-text);
  text-align: left;
}

.shell19403-ext-promo strong {
  font-size: 12.5px;
  color: var(--shell19403-cyan);
  font-weight: 800;
}

.shell19403-ext-disclaimer {
  font-size: 11.5px;
  color: var(--shell19403-text-muted);
  border-top: 1px dashed var(--shell19403-border);
  padding-top: 10px;
  margin-top: 4px;
}

/* ================================================== *
 * COMMON FOOTER
 * ================================================== */
.shell19403-footer {
  padding: 18px 14px calc(var(--shell19403-bottom-h) + 16px);
  text-align: center;
  background: rgba(8, 9, 22, 0.9);
  border-top: 1px solid var(--shell19403-border);
}

.shell19403-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 14px;
  color: var(--shell19403-text);
}

.shell19403-footer-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.shell19403-footer-copy {
  font-size: 11px;
  color: var(--shell19403-text-muted);
  margin-bottom: 8px;
}

.shell19403-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  font-size: 11.5px;
}

.shell19403-footer-nav a {
  color: var(--shell19403-text-muted);
}

.shell19403-footer-nav a:hover {
  color: var(--shell19403-cyan);
}

/* ================================================== *
 * BOTTOM NAV (compact icon rack, containerized tiles)
 * ================================================== */
.shell19403-bottom {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--shell19403-frame-w);
  z-index: 95;
  background: linear-gradient(180deg, rgba(15, 15, 35, 0.92), rgba(8, 9, 22, 0.98));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--shell19403-border);
  padding: 8px 10px calc(env(safe-area-inset-bottom, 0px) + 8px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.shell19403-bottom-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 2px;
  border-radius: 12px;
  font-size: 10px;
  color: var(--shell19403-text-muted);
  transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease;
  min-height: 48px;
}

.shell19403-bottom-item .shell19403-icon-frame {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 245, 232, 0.05);
  border: 1px solid var(--shell19403-border);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.shell19403-bottom-item svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell19403-bottom-label {
  letter-spacing: 0.3px;
  font-weight: 600;
}

.shell19403-bottom-item:hover {
  color: var(--shell19403-text);
}

.shell19403-bottom-item:hover .shell19403-icon-frame {
  border-color: var(--shell19403-border-strong);
}

/* Promo role emphasis */
.shell19403-bottom-item.shell19403-bottom-promo .shell19403-icon-frame {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.22), rgba(77, 182, 172, 0.12));
  border-color: var(--shell19403-border-strong);
  color: var(--shell19403-cyan);
}

.shell19403-bottom-item.shell19403-bottom-promo {
  color: var(--shell19403-cyan);
}

/* Active state: label emphasis tone */
.shell19403-bottom-item.shell19403-bottom-active {
  color: var(--shell19403-cyan);
}

.shell19403-bottom-item.shell19403-bottom-active .shell19403-icon-frame {
  background: linear-gradient(135deg, var(--shell19403-cyan), var(--shell19403-teal));
  border-color: var(--shell19403-cyan);
  color: var(--shell19403-bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(64, 224, 208, 0.4);
}

.shell19403-bottom-item.shell19403-bottom-active .shell19403-bottom-label {
  font-weight: 800;
  color: var(--shell19403-cyan);
}

/* Quick shrink feedback on tap */
.shell19403-bottom-item:active .shell19403-icon-frame {
  transform: scale(0.9);
}

/* ================================================== *
 * RESPONSIVE TWEAKS (still mobile-only canvas)
 * ================================================== */
@media (max-width: 359px) {
  .shell19403-grid {
    gap: 6px;
  }
  .shell19403-tile-name {
    font-size: 10px;
  }
  .shell19403-brand-tag {
    display: none;
  }
  .shell19403-btn {
    padding: 0 9px;
    font-size: 12px;
  }
  .shell19403-page-h1 {
    font-size: 20px;
  }
}

@media (min-width: 376px) {
  body { font-size: 15.5px; }
  .shell19403-grid {
    gap: 10px;
  }
  .shell19403-tile-name {
    font-size: 11.4px;
  }
  .shell19403-section-title {
    font-size: 17px;
  }
}

@media (min-width: 414px) {
  .shell19403-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .shell19403-page-h1 {
    font-size: 24px;
  }
  .shell19403-ext-promos {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ---------- Inner help pages: editorial mobile reading surface ---------- */
.shell19403-help-main {
  padding: 18px 13px calc(var(--shell19403-bottom-h) + 30px);
}

.shell19403-help-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  margin-bottom: 10px;
  border: 1px solid var(--shell19403-border-strong);
  border-radius: 999px;
  color: var(--shell19403-cyan);
  background: rgba(64, 224, 208, 0.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.shell19403-help-h1 {
  max-width: 390px;
  margin-bottom: 10px;
  color: var(--shell19403-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.4px;
}

.shell19403-help-dek {
  margin-bottom: 16px;
  color: var(--shell19403-text-muted);
  font-size: 13.5px;
}

.shell19403-help-spotlight {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid var(--shell19403-border-strong);
  border-radius: var(--shell19403-radius);
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(27, 29, 68, 0.9));
}

.shell19403-help-spotlight img {
  width: 76px;
  height: 76px;
  border: 1px solid var(--shell19403-teal);
  border-radius: 16px;
  object-fit: cover;
}

.shell19403-help-spotlight h2 {
  margin-bottom: 4px;
  font-size: 15px;
}

.shell19403-help-spotlight p {
  margin: 0;
  color: var(--shell19403-text-muted);
  font-size: 12px;
}

.shell19403-help-section {
  padding: 15px 13px;
  margin-bottom: 13px;
  border-left: 3px solid var(--shell19403-teal);
  border-radius: 4px var(--shell19403-radius) var(--shell19403-radius) 4px;
  background: rgba(27, 29, 68, 0.76);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.shell19403-help-section h2 {
  margin-bottom: 9px;
  color: var(--shell19403-text);
  font-size: 17px;
  line-height: 1.22;
}

.shell19403-help-section h3 {
  margin: 12px 0 5px;
  color: var(--shell19403-cyan);
  font-size: 13px;
}

.shell19403-help-section p,
.shell19403-help-section li {
  color: var(--shell19403-text);
  font-size: 13.2px;
}

.shell19403-help-section p:last-child,
.shell19403-help-section ul:last-child,
.shell19403-help-section ol:last-child { margin-bottom: 0; }

.shell19403-help-section ol { padding-left: 1.3em; }
.shell19403-help-section li { margin-bottom: 7px; }

.shell19403-help-steps {
  list-style: none;
  padding: 0;
  margin: 9px 0 0;
  display: grid;
  gap: 8px;
}

.shell19403-help-steps li {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 9px;
  align-items: start;
  padding: 9px;
  border: 1px solid var(--shell19403-border);
  border-radius: var(--shell19403-radius-sm);
  background: rgba(8, 9, 22, 0.38);
}

.shell19403-help-step-no {
  display: inline-flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--shell19403-bg-deep);
  background: var(--shell19403-cyan);
  font-size: 12px;
  font-weight: 900;
}

.shell19403-help-steps strong { display: block; margin-bottom: 2px; color: var(--shell19403-text); }
.shell19403-help-steps span:last-child { color: var(--shell19403-text-muted); font-size: 12.4px; }

.shell19403-help-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
  font-size: 12.2px;
}

.shell19403-help-table th {
  padding: 5px 7px;
  color: var(--shell19403-teal);
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.shell19403-help-table td {
  padding: 8px 7px;
  color: var(--shell19403-text);
  vertical-align: top;
  background: rgba(8, 9, 22, 0.42);
  border-top: 1px solid var(--shell19403-border);
  border-bottom: 1px solid var(--shell19403-border);
}

.shell19403-help-table td:first-child { border-left: 1px solid var(--shell19403-border); border-radius: 7px 0 0 7px; color: var(--shell19403-cyan); font-weight: 700; }
.shell19403-help-table td:last-child { border-right: 1px solid var(--shell19403-border); border-radius: 0 7px 7px 0; }

.shell19403-help-callout {
  padding: 11px;
  margin-top: 10px;
  border-radius: var(--shell19403-radius-sm);
  background: rgba(64, 224, 208, 0.09);
  border: 1px dashed var(--shell19403-border-strong);
  color: var(--shell19403-text-muted);
  font-size: 12.5px;
}

.shell19403-help-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.shell19403-help-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--shell19403-bg-deep);
  background: linear-gradient(135deg, var(--shell19403-cyan), var(--shell19403-teal));
  font-size: 12px;
  font-weight: 800;
}

.shell19403-help-cta-quiet {
  color: var(--shell19403-text);
  background: rgba(77, 182, 172, 0.14);
  border: 1px solid var(--shell19403-border);
}

.shell19403-help-plain-links {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell19403-help-plain-links a {
  display: block;
  padding: 9px 10px;
  border-radius: var(--shell19403-radius-sm);
  background: rgba(8, 9, 22, 0.4);
  color: var(--shell19403-cyan);
  font-size: 12.8px;
}

@media (max-width: 359px) {
  .shell19403-help-h1 { font-size: 24px; }
  .shell19403-help-section { padding: 13px 11px; }
  .shell19403-help-table { font-size: 11.4px; }
}
