/* ============================================================
   789bb.click - shell-compact-1aab42.css
   Mobile-first portal shell (320-430px canvas, centered on wide screens)
   Palette: #8B008B / #2E4057 (deep backgrounds),
            #40E0D0 / #ADD8E6 (light accents and text)
   Design direction: tech headings + open body text, low-radius
   sectioned blocks, pure-image game cards, short list rhythm,
   icon micro-transitions, light rounded text CTA groups.
   ============================================================ */

:root {
  --shellaab42-deep-magenta: #8B008B;
  --shellaab42-deep-slate: #2E4057;
  --shellaab42-ink: #1c2b3d;
  --shellaab42-ink-2: #16222f;
  --shellaab42-ink-3: #24374e;
  --shellaab42-teal: #40E0D0;
  --shellaab42-mist: #ADD8E6;
  --shellaab42-mist-soft: rgba(173, 216, 230, 0.72);
  --shellaab42-mist-dim: rgba(173, 216, 230, 0.55);
  --shellaab42-line: rgba(64, 224, 208, 0.22);
  --shellaab42-line-soft: rgba(173, 216, 230, 0.14);
  --shellaab42-magenta-glow: rgba(139, 0, 139, 0.38);
  --shellaab42-teal-glow: rgba(64, 224, 208, 0.16);
  --shellaab42-radius: 6px;
  --shellaab42-radius-lg: 10px;
  --shellaab42-shell-max: 430px;
  --shellaab42-header-h: 56px;
  --shellaab42-bottomnav-h: 62px;
  --shellaab42-font-head: "Trebuchet MS", "Segoe UI", "Arial Narrow", sans-serif;
  --shellaab42-font-body: "Segoe UI", Verdana, Geneva, sans-serif;
}

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

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

body {
  margin: 0;
  padding: 0;
  background: #0d1725;
  color: var(--shellaab42-mist);
  font-family: var(--shellaab42-font-body);
  font-size: 15px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--shellaab42-teal);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--shellaab42-teal);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--shellaab42-font-head);
  color: #eaf6fb;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
  line-height: 1.32;
}

p {
  margin: 0 0 12px;
}

ul, ol {
  margin: 0 0 14px;
  padding-left: 20px;
}

li {
  margin-bottom: 7px;
}

/* ---------- Phone canvas ---------- */
.shellaab42-shell {
  position: relative;
  max-width: var(--shellaab42-shell-max);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(120% 46% at 50% 0%, var(--shellaab42-magenta-glow) 0%, rgba(30, 41, 59, 0) 62%),
    linear-gradient(178deg, #22344c 0%, var(--shellaab42-ink) 34%, var(--shellaab42-ink-2) 100%);
  box-shadow: 0 0 44px rgba(0, 0, 0, 0.55);
  overflow-x: hidden;
}

.shellaab42-main {
  padding: var(--shellaab42-header-h) 0 calc(var(--shellaab42-bottomnav-h) + 34px);
}

/* ---------- Top brand bar ---------- */
.shellaab42-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--shellaab42-shell-max);
  height: var(--shellaab42-header-h);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 10px;
  background: linear-gradient(90deg, rgba(28, 43, 61, 0.97) 0%, rgba(46, 64, 87, 0.97) 55%, rgba(139, 0, 139, 0.4) 100%);
  border-bottom: 1px solid var(--shellaab42-line);
  backdrop-filter: blur(8px);
}

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

.shellaab42-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: var(--shellaab42-radius);
  border: 1px solid var(--shellaab42-line);
  object-fit: cover;
  background: var(--shellaab42-ink-3);
  flex: 0 0 auto;
}

.shellaab42-brand-name {
  font-family: var(--shellaab42-font-head);
  font-size: 19px;
  font-weight: 700;
  color: #f2fbff;
  white-space: nowrap;
}

.shellaab42-brand-name em {
  font-style: normal;
  color: var(--shellaab42-teal);
}

/* Header action cluster */
.shellaab42-topacts {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.shellaab42-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: var(--shellaab42-radius);
  font-family: var(--shellaab42-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.shellaab42-btn:active {
  transform: scale(0.96);
}

.shellaab42-btn-register {
  background: linear-gradient(135deg, var(--shellaab42-deep-magenta) 0%, #b4088f 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(139, 0, 139, 0.45);
}

.shellaab42-btn-register:hover {
  box-shadow: 0 3px 14px rgba(139, 0, 139, 0.6);
}

.shellaab42-btn-login {
  background: rgba(64, 224, 208, 0.1);
  color: var(--shellaab42-teal);
  border-color: var(--shellaab42-line);
}

.shellaab42-btn-login:hover {
  background: rgba(64, 224, 208, 0.18);
}

/* Menu trigger */
.shellaab42-menu-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--shellaab42-radius);
  background: rgba(173, 216, 230, 0.08);
  border: 1px solid var(--shellaab42-line-soft);
  cursor: pointer;
}

.shellaab42-menu-btn span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--shellaab42-mist);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.shellaab42-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.shellaab42-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.shellaab42-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Expandable nav panel ---------- */
.shellaab42-nav {
  position: fixed;
  top: var(--shellaab42-header-h);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 100%;
  max-width: var(--shellaab42-shell-max);
  z-index: 55;
  background: linear-gradient(180deg, rgba(22, 34, 47, 0.99) 0%, rgba(28, 43, 61, 0.98) 100%);
  border-bottom: 1px solid var(--shellaab42-line);
  border-radius: 0 0 var(--shellaab42-radius-lg) var(--shellaab42-radius-lg);
  padding: 8px 10px 14px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.shellaab42-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.shellaab42-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.shellaab42-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 10px;
  border-radius: var(--shellaab42-radius);
  background: rgba(173, 216, 230, 0.06);
  border: 1px solid var(--shellaab42-line-soft);
  color: var(--shellaab42-mist);
  font-size: 13.5px;
  font-family: var(--shellaab42-font-head);
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.shellaab42-nav-link:hover,
.shellaab42-nav-link.is-current {
  background: var(--shellaab42-teal-glow);
  border-color: var(--shellaab42-line);
  color: #eafcff;
}

.shellaab42-nav-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--shellaab42-teal);
  opacity: 0.55;
  flex: 0 0 auto;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.shellaab42-nav-link:hover::before,
.shellaab42-nav-link.is-current::before {
  opacity: 1;
  transform: scale(1.25);
}

/* ---------- Section shell ---------- */
.shellaab42-section {
  padding: 18px 12px 4px;
}

.shellaab42-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.shellaab42-section-head::before {
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--shellaab42-teal) 0%, var(--shellaab42-deep-magenta) 100%);
  flex: 0 0 auto;
}

.shellaab42-section-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

/* Sliding indicator underline for section titles */
.shellaab42-section-title span {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  background-image: linear-gradient(90deg, var(--shellaab42-teal) 0%, var(--shellaab42-deep-magenta) 100%);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size 0.35s ease;
}

.shellaab42-section:hover .shellaab42-section-title span,
.shellaab42-section-title span:hover {
  background-size: 100% 2px;
}

.shellaab42-lede {
  font-size: 13.5px;
  color: var(--shellaab42-mist-soft);
  margin-bottom: 12px;
}

/* ---------- Hero carousel ---------- */
.shellaab42-hero {
  position: relative;
  margin: 12px 10px 4px;
  border-radius: var(--shellaab42-radius-lg);
  overflow: hidden;
  border: 1px solid var(--shellaab42-line);
  background: var(--shellaab42-ink-3);
}

.shellaab42-hero-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.33, 0.8, 0.4, 1);
  touch-action: pan-y;
}

.shellaab42-hero-slide {
  position: relative;
  flex: 0 0 100%;
  cursor: pointer;
}

.shellaab42-hero-slide img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.shellaab42-hero-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(180deg, rgba(22, 34, 47, 0) 0%, rgba(22, 34, 47, 0.88) 78%);
  font-family: var(--shellaab42-font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: #f2fbff;
  letter-spacing: 0.3px;
}

/* Carousel dots with sliding indicator */
.shellaab42-hero-dots {
  position: absolute;
  bottom: 8px;
  right: 10px;
  display: flex;
  gap: 5px;
  z-index: 3;
}

.shellaab42-hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--shellaab42-teal);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.shellaab42-hero-dot.is-on {
  background: var(--shellaab42-teal);
  transform: scale(1.2);
}

/* ---------- CTA group ---------- */
.shellaab42-cta-row {
  display: flex;
  gap: 8px;
  margin: 12px 12px 4px;
}

.shellaab42-cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--shellaab42-radius);
  font-family: var(--shellaab42-font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.shellaab42-cta:active {
  transform: scale(0.97);
}

.shellaab42-cta-primary {
  background: linear-gradient(135deg, var(--shellaab42-deep-magenta) 0%, #c00fa0 100%);
  color: #fff;
  box-shadow: 0 3px 14px rgba(139, 0, 139, 0.5);
}

.shellaab42-cta-ghost {
  background: rgba(64, 224, 208, 0.09);
  border: 1px solid var(--shellaab42-line);
  color: var(--shellaab42-teal);
}

/* ---------- Category strip ---------- */
.shellaab42-cat-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 12px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.shellaab42-cat-strip::-webkit-scrollbar {
  display: none;
}

.shellaab42-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  min-height: 36px;
  border-radius: var(--shellaab42-radius);
  border: 1px solid var(--shellaab42-line-soft);
  background: rgba(173, 216, 230, 0.06);
  color: var(--shellaab42-mist);
  font-family: var(--shellaab42-font-head);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.shellaab42-cat-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--shellaab42-deep-magenta);
  box-shadow: 0 0 0 1px rgba(64, 224, 208, 0.5);
  transition: transform 0.15s ease;
}

.shellaab42-cat-chip:hover,
.shellaab42-cat-chip.is-on {
  border-color: var(--shellaab42-line);
  background: var(--shellaab42-teal-glow);
  color: #eafcff;
}

.shellaab42-cat-chip:hover::before {
  transform: rotate(45deg);
}

/* ---------- Game grid: pure image card + short name ---------- */
.shellaab42-game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px 7px;
}

.shellaab42-game {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border-radius: var(--shellaab42-radius);
  transition: transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.shellaab42-game:active {
  transform: scale(0.94);
}

.shellaab42-game-imgwrap {
  position: relative;
  border-radius: var(--shellaab42-radius);
  border: 1px solid var(--shellaab42-line-soft);
  background: var(--shellaab42-ink-3);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.shellaab42-game-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shellaab42-game.is-hot .shellaab42-game-imgwrap::after {
  content: "HOT";
  position: absolute;
  top: 4px;
  left: 4px;
  padding: 2px 5px;
  border-radius: 3px;
  background: var(--shellaab42-deep-magenta);
  color: #fff;
  font-family: var(--shellaab42-font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.shellaab42-game-name {
  display: block;
  font-size: 11px;
  line-height: 1.3;
  color: var(--shellaab42-mist-soft);
  text-align: center;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 28px;
}

/* ---------- Article blocks ---------- */
.shellaab42-panel {
  background: rgba(173, 216, 230, 0.05);
  border: 1px solid var(--shellaab42-line-soft);
  border-radius: var(--shellaab42-radius-lg);
  padding: 14px 13px;
  margin: 0 12px 14px;
}

.shellaab42-panel p {
  font-size: 14px;
  color: var(--shellaab42-mist-soft);
}

.shellaab42-panel h2 {
  font-size: 16.5px;
}

.shellaab42-panel h3 {
  font-size: 14.5px;
  color: var(--shellaab42-teal);
  margin-top: 14px;
}

.shellaab42-panel a {
  border-bottom: 1px dashed rgba(64, 224, 208, 0.5);
}

/* Checklist rhythm: short scan lines */
.shellaab42-scan {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.shellaab42-scan li {
  position: relative;
  padding: 8px 10px 8px 30px;
  margin-bottom: 6px;
  font-size: 13.5px;
  color: var(--shellaab42-mist-soft);
  background: rgba(173, 216, 230, 0.045);
  border: 1px solid var(--shellaab42-line-soft);
  border-radius: var(--shellaab42-radius);
}

.shellaab42-scan li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 13px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  border: 2px solid var(--shellaab42-teal);
  background: transparent;
  transition: background 0.2s ease;
}

.shellaab42-scan li:hover::before {
  background: var(--shellaab42-teal);
}

/* Two-column compact fact tiles */
.shellaab42-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 12px 16px;
}

.shellaab42-fact {
  padding: 11px 10px;
  border-radius: var(--shellaab42-radius);
  border: 1px solid var(--shellaab42-line-soft);
  background: linear-gradient(160deg, rgba(139, 0, 139, 0.16) 0%, rgba(46, 64, 87, 0.35) 100%);
}

.shellaab42-fact b {
  display: block;
  font-family: var(--shellaab42-font-head);
  font-size: 13px;
  color: var(--shellaab42-teal);
  margin-bottom: 4px;
}

.shellaab42-fact span {
  font-size: 12.5px;
  color: var(--shellaab42-mist-soft);
  line-height: 1.45;
}

/* ---------- Scenario cards ---------- */
.shellaab42-cases {
  display: grid;
  gap: 9px;
  margin: 0 12px 16px;
}

.shellaab42-case {
  display: flex;
  gap: 10px;
  padding: 12px 11px;
  border-radius: var(--shellaab42-radius);
  border: 1px solid var(--shellaab42-line-soft);
  background: rgba(22, 34, 47, 0.5);
}

.shellaab42-case-ico {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--shellaab42-radius);
  background: var(--shellaab42-teal-glow);
  border: 1px solid var(--shellaab42-line);
}

.shellaab42-case-ico svg {
  width: 21px;
  height: 21px;
  stroke: var(--shellaab42-teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.shellaab42-case:hover .shellaab42-case-ico svg {
  transform: translateY(-2px) scale(1.08);
}

.shellaab42-case b {
  display: block;
  font-family: var(--shellaab42-font-head);
  font-size: 13.5px;
  color: #eaf6fb;
  margin-bottom: 3px;
}

.shellaab42-case span {
  font-size: 12.8px;
  color: var(--shellaab42-mist-soft);
  line-height: 1.5;
}

/* ---------- Extended footer ---------- */
.shellaab42-xfooter {
  margin-top: 8px;
  border-top: 1px solid var(--shellaab42-line);
  padding: 16px 12px 6px;
  background: linear-gradient(180deg, rgba(22, 34, 47, 0.35) 0%, rgba(13, 23, 37, 0.85) 100%);
}

.shellaab42-xfooter-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.shellaab42-xfooter-brand img {
  width: 34px;
  height: 34px;
  border-radius: var(--shellaab42-radius);
  border: 1px solid var(--shellaab42-line-soft);
  object-fit: cover;
}

.shellaab42-xfooter-brand b {
  font-family: var(--shellaab42-font-head);
  font-size: 15.5px;
  color: #f2fbff;
}

.shellaab42-xfooter-brand span {
  display: block;
  font-size: 12px;
  color: var(--shellaab42-mist-dim);
}

/* Page directory: compact link tiles */
.shellaab42-dir {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.shellaab42-dir a {
  display: block;
  padding: 8px 10px;
  min-height: 40px;
  border-radius: var(--shellaab42-radius);
  border: 1px solid var(--shellaab42-line-soft);
  background: rgba(173, 216, 230, 0.05);
  color: var(--shellaab42-mist-soft);
  font-size: 12.5px;
  font-family: var(--shellaab42-font-head);
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}

.shellaab42-dir a:hover {
  background: var(--shellaab42-teal-glow);
  color: #eafcff;
}

/* Horizontal promotion shortcuts (6) */
.shellaab42-promos {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 12px;
  scrollbar-width: none;
}

.shellaab42-promos::-webkit-scrollbar {
  display: none;
}

.shellaab42-promo {
  flex: 0 0 auto;
  width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px;
  border-radius: var(--shellaab42-radius);
  border: 1px solid var(--shellaab42-line);
  background: linear-gradient(165deg, rgba(139, 0, 139, 0.28) 0%, rgba(46, 64, 87, 0.5) 100%);
  color: var(--shellaab42-mist);
  font-family: var(--shellaab42-font-head);
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.shellaab42-promo:active {
  transform: scale(0.95);
}

.shellaab42-promo-ico {
  width: 30px;
  height: 30px;
  border-radius: var(--shellaab42-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(64, 224, 208, 0.12);
  border: 1px solid var(--shellaab42-line);
}

.shellaab42-promo-ico svg {
  width: 17px;
  height: 17px;
  stroke: var(--shellaab42-teal);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shellaab42-promo:hover .shellaab42-promo-ico svg {
  transform: rotate(-6deg) scale(1.1);
}

/* Inline promo link inside article paragraphs (help pages) */
.shellaab42-inline-cta {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 2px 9px;
  margin: 0 2px;
  border-radius: 4px;
  border: 1px solid var(--shellaab42-line);
  background: rgba(139, 0, 139, 0.22);
  color: #ffd9f6;
  font-family: var(--shellaab42-font-head);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.15s ease, transform 0.15s ease;
}

.shellaab42-inline-cta:hover {
  background: rgba(139, 0, 139, 0.4);
}

.shellaab42-inline-cta:active {
  transform: scale(0.95);
}

/* Disclaimer */
.shellaab42-note {
  padding: 10px 11px;
  border-radius: var(--shellaab42-radius);
  border: 1px dashed rgba(173, 216, 230, 0.25);
  font-size: 11.8px;
  color: var(--shellaab42-mist-dim);
  line-height: 1.55;
}

/* Copyright bar */
.shellaab42-copy {
  padding: 12px 14px 8px;
  text-align: center;
  font-size: 11.5px;
  color: var(--shellaab42-mist-dim);
  border-top: 1px solid var(--shellaab42-line-soft);
}

/* ---------- Mobile bottom navigation ---------- */
.shellaab42-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--shellaab42-shell-max);
  height: var(--shellaab42-bottomnav-h);
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  background: linear-gradient(180deg, rgba(28, 43, 61, 0.98) 0%, rgba(13, 23, 37, 0.99) 100%);
  border-top: 1px solid var(--shellaab42-line);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Layered bar: thin indicator strip on top of items */
.shellaab42-bottomnav::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--shellaab42-deep-magenta) 0%, var(--shellaab42-teal) 50%, var(--shellaab42-deep-magenta) 100%);
  opacity: 0.65;
}

.shellaab42-bnav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 44px;
  padding: 6px 2px 4px;
  color: var(--shellaab42-mist-dim);
  font-family: var(--shellaab42-font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: center;
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: color 0.15s ease;
}

/* Containerized symbol tile */
.shellaab42-bnav-tile {
  width: 30px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(173, 216, 230, 0.07);
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.shellaab42-bnav-tile svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Active state: supporting background block behind tile */
.shellaab42-bnav.is-active {
  color: var(--shellaab42-teal);
}

.shellaab42-bnav.is-active .shellaab42-bnav-tile {
  background: var(--shellaab42-teal-glow);
  border-color: var(--shellaab42-line);
  transform: translateY(-2px);
}

.shellaab42-bnav:hover {
  color: var(--shellaab42-mist);
}

.shellaab42-bnav:active .shellaab42-bnav-tile {
  transform: scale(0.9);
}

/* ---------- Utility ---------- */
.shellaab42-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.shellaab42-kicker {
  display: inline-block;
  margin: 0 12px 6px;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid var(--shellaab42-line);
  background: var(--shellaab42-teal-glow);
  font-family: var(--shellaab42-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--shellaab42-teal);
  text-transform: uppercase;
}

/* ---------- Responsive: 375px+ ---------- */
@media (min-width: 375px) {
  .shellaab42-game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 8px;
  }

  .shellaab42-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .shellaab42-btn {
    padding: 8px 14px;
  }

  .shellaab42-panel h2 {
    font-size: 17.5px;
  }
}

/* ---------- Responsive: exactly 430px phone canvas ---------- */
@media (min-width: 430px) {
  .shellaab42-shell {
    border-left: 1px solid rgba(64, 224, 208, 0.14);
    border-right: 1px solid rgba(64, 224, 208, 0.14);
  }

  .shellaab42-game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .shellaab42-hero-slide img {
    aspect-ratio: 16 / 7;
  }

  .shellaab42-dir {
    grid-template-columns: repeat(3, 1fr);
  }

  .shellaab42-promo {
    width: 104px;
  }
}

/* ---------- Small phones (320px) ---------- */
@media (max-width: 359px) {
  .shellaab42-game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px 5px;
  }

  .shellaab42-facts {
    grid-template-columns: 1fr;
  }

  .shellaab42-brand-name {
    font-size: 17px;
  }

  .shellaab42-btn {
    padding: 6px 9px;
    font-size: 12px;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}
