/* ============================================================
   aq999.cfd — mobile-first basefiles stylesheet
   Prefix: shell342b5- (all classes)
   Canvas: 320-430px phone frame, dark arcade palette
   ============================================================ */

/* ---------- Reset & root tokens ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --shell342b5-bg: #1A1A1A;
  --shell342b5-bg-2: #232323;
  --shell342b5-surface: #2a2a2a;
  --shell342b5-surface-2: #333333;
  --shell342b5-line: rgba(253, 245, 230, 0.12);
  --shell342b5-line-strong: rgba(253, 245, 230, 0.22);
  --shell342b5-text: #FDF5E6;
  --shell342b5-text-muted: rgba(253, 245, 230, 0.66);
  --shell342b5-text-dim: rgba(253, 245, 230, 0.42);
  --shell342b5-pink: #FFC0CB;
  --shell342b5-pink-deep: #FFB6C1;
  --shell342b5-green: #7CFC00;
  --shell342b5-green-deep: #5fbf00;
  --shell342b5-radius-sm: 3px;
  --shell342b5-radius: 6px;
  --shell342b5-radius-lg: 10px;
  --shell342b5-gap: 10px;
  --shell342b5-header-h: 56px;
  --shell342b5-bottomnav-h: 62px;
  --shell342b5-shadow-card: 0 2px 10px rgba(0, 0, 0, 0.45);
  --shell342b5-shadow-cta: 0 3px 0 rgba(0, 0, 0, 0.55);
  --shell342b5-font: "Hind Siliguri", "Noto Sans Bengali", "SolaimanLipi", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

body {
  font-family: var(--shell342b5-font);
  background: var(--shell342b5-bg);
  color: var(--shell342b5-text);
  line-height: 1.55;
  font-size: 15px;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Page shell ---------- */
.shell342b5-page {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(124, 252, 0, 0.10), transparent 60%),
    radial-gradient(140% 50% at 100% 0%, rgba(255, 192, 203, 0.10), transparent 55%),
    var(--shell342b5-bg);
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.shell342b5-main {
  padding-bottom: calc(var(--shell342b5-bottomnav-h) + 16px);
}

/* ---------- Header ---------- */
.shell342b5-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--shell342b5-header-h);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--shell342b5-line);
}

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

.shell342b5-logo {
  width: 34px;
  height: 34px;
  border-radius: var(--shell342b5-radius-sm);
  object-fit: cover;
  border: 1px solid var(--shell342b5-line-strong);
  background: var(--shell342b5-surface);
  flex-shrink: 0;
}

.shell342b5-brandname {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}
.shell342b5-brandname span {
  color: var(--shell342b5-green);
}
.shell342b5-brandtag {
  display: none;
}

.shell342b5-topactions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.shell342b5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--shell342b5-radius-sm);
  padding: 9px 12px;
  font-size: 13px;
  transition: transform 0.08s ease, filter 0.15s ease, background 0.15s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.shell342b5-btn:active { transform: translateY(1px); filter: brightness(0.92); }

.shell342b5-btn--register {
  background: linear-gradient(180deg, var(--shell342b5-green), var(--shell342b5-green-deep));
  color: #0c1a00;
  box-shadow: var(--shell342b5-shadow-cta);
}

.shell342b5-btn--login {
  background: var(--shell342b5-surface-2);
  color: var(--shell342b5-text);
  border: 1px solid var(--shell342b5-line-strong);
}

.shell342b5-menubtn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--shell342b5-radius-sm);
  background: var(--shell342b5-surface);
  border: 1px solid var(--shell342b5-line);
}
.shell342b5-menubtn svg { width: 20px; height: 20px; stroke: var(--shell342b5-text); }

/* ---------- Mobile slide menu ---------- */
.shell342b5-mobilemenu {
  position: fixed;
  inset: 0 0 0 auto;
  width: 84%;
  max-width: 340px;
  background: var(--shell342b5-bg-2);
  border-left: 1px solid var(--shell342b5-line-strong);
  transform: translateX(105%);
  transition: transform 0.24s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 14px 0 calc(var(--shell342b5-bottomnav-h) + 14px);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}
.shell342b5-mobilemenu.open { transform: translateX(0); }

.shell342b5-mobilemenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 12px;
  border-bottom: 1px solid var(--shell342b5-line);
}
.shell342b5-mobilemenu-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--shell342b5-text);
}
.shell342b5-mobilemenu-close {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--shell342b5-radius-sm);
  background: var(--shell342b5-surface);
  font-size: 18px; line-height: 1;
  color: var(--shell342b5-text-muted);
}

.shell342b5-mobilemenu-section {
  padding: 12px 16px 4px;
}
.shell342b5-mobilemenu-heading {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--shell342b5-pink);
  margin-bottom: 6px;
}
.shell342b5-mobilemenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: var(--shell342b5-radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--shell342b5-text);
  border-bottom: 1px solid var(--shell342b5-line);
}
.shell342b5-mobilemenu-item:active { background: var(--shell342b5-surface); }
.shell342b5-mobilemenu-item .shell342b5-mobilemenu-ic {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--shell342b5-green);
  font-size: 16px;
  flex-shrink: 0;
}
.shell342b5-mobilemenu-item.is-promo .shell342b5-mobilemenu-ic { color: var(--shell342b5-pink); }
.shell342b5-mobilemenu-foot {
  margin-top: auto;
  padding: 14px 16px 0;
  font-size: 11px;
  color: var(--shell342b5-text-dim);
  line-height: 1.5;
}

.shell342b5-scrim {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 90;
}
.shell342b5-scrim.open { opacity: 1; visibility: visible; }

/* ---------- Hero / carousel ---------- */
.shell342b5-hero {
  position: relative;
  padding: 14px 12px 6px;
}

.shell342b5-carousel {
  position: relative;
  border-radius: var(--shell342b5-radius-lg);
  overflow: hidden;
  background: var(--shell342b5-surface);
  border: 1px solid var(--shell342b5-line);
  box-shadow: var(--shell342b5-shadow-card);
}

.shell342b5-slides { position: relative; }
.shell342b5-slide {
  position: relative;
  display: none;
  min-height: 168px;
}
.shell342b5-slide.active { display: block; }
.shell342b5-slide img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  filter: saturate(1.05);
}
.shell342b5-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0) 30%, rgba(26,26,26,0.86) 100%);
}
.shell342b5-hero-text {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  z-index: 2;
}
.shell342b5-hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #0c1a00;
  background: var(--shell342b5-green);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}
.shell342b5-hero-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.shell342b5-hero-sub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(253,245,230,0.86);
  line-height: 1.4;
}
.shell342b5-hero-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--shell342b5-pink-deep);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: var(--shell342b5-radius-sm);
  box-shadow: var(--shell342b5-shadow-cta);
}

.shell342b5-carouselbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(26,26,26,0.55);
  color: var(--shell342b5-text);
  z-index: 3;
  font-size: 16px; line-height: 1;
  border: 1px solid var(--shell342b5-line);
}
.shell342b5-carouselbtn--prev { left: 8px; }
.shell342b5-carouselbtn--next { right: 8px; }

.shell342b5-carouselindicators {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 5px;
  z-index: 3;
}
.shell342b5-carouselindicators button {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(253,245,230,0.35);
  padding: 0;
}
.shell342b5-carouselindicators button.active {
  background: var(--shell342b5-green);
  width: 16px;
  border-radius: 3px;
}

/* ---------- Trust strip ---------- */
.shell342b5-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px 12px 4px;
}
.shell342b5-trust-item {
  background: var(--shell342b5-surface);
  border: 1px solid var(--shell342b5-line);
  border-radius: var(--shell342b5-radius-sm);
  padding: 8px 4px;
  text-align: center;
}
.shell342b5-trust-num {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--shell342b5-green);
  line-height: 1.1;
}
.shell342b5-trust-label {
  display: block;
  font-size: 9.5px;
  color: var(--shell342b5-text-muted);
  margin-top: 3px;
  line-height: 1.2;
}

/* ---------- Category bar ---------- */
.shell342b5-categorybar {
  display: flex;
  gap: 6px;
  padding: 10px 12px 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.shell342b5-categorybar::-webkit-scrollbar { display: none; }
.shell342b5-category {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--shell342b5-text-muted);
  background: var(--shell342b5-surface);
  border: 1px solid var(--shell342b5-line);
  border-radius: 999px;
  white-space: nowrap;
}
.shell342b5-category.active {
  color: #0c1a00;
  background: var(--shell342b5-green);
  border-color: var(--shell342b5-green);
}

/* ---------- Section frame ---------- */
.shell342b5-section {
  padding: 16px 12px 4px;
}
.shell342b5-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--shell342b5-line);
}
.shell342b5-section-title {
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.2px;
}
.shell342b5-section-title em {
  font-style: normal;
  color: var(--shell342b5-green);
}
.shell342b5-section-kicker {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--shell342b5-pink);
  margin-bottom: 3px;
}
.shell342b5-section-link {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--shell342b5-green);
  white-space: nowrap;
  border-bottom: 1px dashed rgba(124,252,0,0.5);
  padding-bottom: 1px;
}

/* ---------- Game grid & cards ---------- */
.shell342b5-gamegrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.shell342b5-gamecard {
  position: relative;
  background: var(--shell342b5-surface);
  border: 1px solid var(--shell342b5-line);
  border-radius: var(--shell342b5-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.1s ease, border-color 0.15s ease;
}
.shell342b5-gamecard:active {
  transform: scale(0.98);
  border-color: var(--shell342b5-green);
}
.shell342b5-gamecard-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0e0e0e;
  overflow: hidden;
}
.shell342b5-gamecard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.shell342b5-gamecard-tag {
  position: absolute;
  top: 5px; left: 5px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #0c1a00;
  background: var(--shell342b5-green);
  padding: 2px 5px;
  border-radius: 2px;
}
.shell342b5-gamecard-tag.is-hot { background: var(--shell342b5-pink-deep); color: #1a1a1a; }
.shell342b5-gamecard-tag.is-new { background: #fff; color: #1a1a1a; }
.shell342b5-gamecard-body {
  padding: 6px 7px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shell342b5-gamecard-name {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--shell342b5-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 28px;
}
.shell342b5-gamecard-play {
  display: none;
}

/* ---------- Wide row (showcase) ---------- */
.shell342b5-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.shell342b5-showcard {
  position: relative;
  border-radius: var(--shell342b5-radius);
  overflow: hidden;
  border: 1px solid var(--shell342b5-line);
  background: var(--shell342b5-surface);
  min-height: 96px;
  display: flex;
  align-items: flex-end;
}
.shell342b5-showcard img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.shell342b5-showcard::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0) 30%, rgba(26,26,26,0.88) 100%);
}
.shell342b5-showcard-text {
  position: relative;
  z-index: 2;
  padding: 10px;
}
.shell342b5-showcard-text h3 {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.shell342b5-showcard-text p {
  font-size: 10.5px;
  color: rgba(253,245,230,0.78);
  margin-top: 3px;
  line-height: 1.3;
}

/* ---------- Promo banner block ---------- */
.shell342b5-promo {
  padding: 16px 12px 4px;
}
.shell342b5-promocard {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(124,252,0,0.18), transparent 55%),
    radial-gradient(120% 80% at 100% 100%, rgba(255,192,203,0.16), transparent 55%),
    var(--shell342b5-surface);
  border: 1px solid var(--shell342b5-line-strong);
  border-radius: var(--shell342b5-radius-lg);
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.shell342b5-promocard-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--shell342b5-pink);
}
.shell342b5-promocard-title {
  font-size: 17px;
  font-weight: 800;
  margin-top: 4px;
  line-height: 1.25;
}
.shell342b5-promocard-title em { font-style: normal; color: var(--shell342b5-green); }
.shell342b5-promocard-list {
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shell342b5-promocard-list li {
  font-size: 12px;
  color: var(--shell342b5-text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.shell342b5-promocard-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  background: var(--shell342b5-green);
  border-radius: 1px;
}
.shell342b5-promocard-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.shell342b5-promocard-actions .shell342b5-btn { flex: 1; }

/* ---------- Feature / question-driven ---------- */
.shell342b5-features {
  padding: 16px 12px 4px;
}
.shell342b5-featurelist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shell342b5-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 12px;
  background: var(--shell342b5-surface);
  border: 1px solid var(--shell342b5-line);
  border-left: 3px solid var(--shell342b5-green);
  border-radius: var(--shell342b5-radius-sm);
}
.shell342b5-feature:nth-child(2n) { border-left-color: var(--shell342b5-pink); }
.shell342b5-feature-ic {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--shell342b5-bg-2);
  border: 1px solid var(--shell342b5-line-strong);
  border-radius: var(--shell342b5-radius-sm);
  font-size: 15px;
  color: var(--shell342b5-green);
}
.shell342b5-feature h3 {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 3px;
}
.shell342b5-feature p {
  font-size: 12px;
  color: var(--shell342b5-text-muted);
  line-height: 1.45;
}

/* ---------- FAQ (question-driven rhythm) ---------- */
.shell342b5-faq {
  padding: 16px 12px 4px;
}
.shell342b5-faq-item {
  background: var(--shell342b5-surface);
  border: 1px solid var(--shell342b5-line);
  border-radius: var(--shell342b5-radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.shell342b5-faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--shell342b5-text);
}
.shell342b5-faq-q .shell342b5-faq-toggle {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--shell342b5-bg-2);
  color: var(--shell342b5-green);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease;
}
.shell342b5-faq-item.open .shell342b5-faq-toggle { transform: rotate(45deg); }
.shell342b5-faq-a {
  display: none;
  padding: 0 12px 12px;
  font-size: 12.5px;
  color: var(--shell342b5-text-muted);
  line-height: 1.55;
}
.shell342b5-faq-item.open .shell342b5-faq-a { display: block; }

/* ---------- SEO long-form ---------- */
.shell342b5-seo {
  padding: 16px 12px 4px;
}
.shell342b5-seo-card {
  background: var(--shell342b5-surface);
  border: 1px solid var(--shell342b5-line);
  border-radius: var(--shell342b5-radius);
  padding: 14px;
}
.shell342b5-seo-card h2 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--shell342b5-text);
}
.shell342b5-seo-card h2 em { font-style: normal; color: var(--shell342b5-green); }
.shell342b5-seo-card h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 12px 0 5px;
  color: var(--shell342b5-pink);
}
.shell342b5-seo-card p {
  font-size: 12.5px;
  color: var(--shell342b5-text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.shell342b5-seo-card p a {
  color: var(--shell342b5-green);
  border-bottom: 1px dashed rgba(124,252,0,0.45);
}
.shell342b5-seo-card ul.ticklist {
  margin: 6px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shell342b5-seo-card ul.ticklist li {
  font-size: 12.5px;
  color: var(--shell342b5-text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.shell342b5-seo-card ul.ticklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--shell342b5-green);
  font-weight: 800;
}

/* ---------- Steps ---------- */
.shell342b5-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.shell342b5-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--shell342b5-bg-2);
  border: 1px solid var(--shell342b5-line);
  border-radius: var(--shell342b5-radius-sm);
  padding: 10px 12px;
}
.shell342b5-step-no {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--shell342b5-green);
  color: #0c1a00;
  font-weight: 800;
  font-size: 12px;
  border-radius: 50%;
}
.shell342b5-step h4 {
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 2px;
}
.shell342b5-step p {
  font-size: 11.5px;
  color: var(--shell342b5-text-muted);
  line-height: 1.45;
}

/* ---------- Inline link grid (subpages) ---------- */
.shell342b5-linkgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
}
.shell342b5-linkgrid a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--shell342b5-text);
  background: var(--shell342b5-bg-2);
  border: 1px solid var(--shell342b5-line);
  padding: 8px 10px;
  border-radius: var(--shell342b5-radius-sm);
}
.shell342b5-linkgrid a::before {
  content: "▸";
  color: var(--shell342b5-green);
  font-weight: 800;
}

/* ---------- Footer ---------- */
.shell342b5-footer {
  margin-top: 14px;
  padding: 18px 14px calc(var(--shell342b5-bottomnav-h) + 22px);
  background: var(--shell342b5-bg-2);
  border-top: 1px solid var(--shell342b5-line-strong);
}
.shell342b5-footer-brand {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.shell342b5-footer-brand img { width: 30px; height: 30px; border-radius: 3px; }
.shell342b5-footer-brand strong { font-size: 16px; font-weight: 800; }
.shell342b5-footer-brand strong span { color: var(--shell342b5-green); }

.shell342b5-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 10px;
  margin-bottom: 14px;
}
.shell342b5-footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--shell342b5-pink);
  margin-bottom: 6px;
}
.shell342b5-footer-col a {
  display: block;
  font-size: 12px;
  color: var(--shell342b5-text-muted);
  padding: 4px 0;
  line-height: 1.35;
}
.shell342b5-footer-col a:active { color: var(--shell342b5-green); }

.shell342b5-footer-note {
  font-size: 11px;
  color: var(--shell342b5-text-dim);
  line-height: 1.55;
  padding-top: 10px;
  border-top: 1px solid var(--shell342b5-line);
}
.shell342b5-footer-copy {
  margin-top: 8px;
  font-size: 10.5px;
  color: var(--shell342b5-text-dim);
}

/* ---------- Mobile bottom nav ---------- */
.shell342b5-bottomnav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 430px;
  height: var(--shell342b5-bottomnav-h);
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--shell342b5-line-strong);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 80;
}
.shell342b5-bottomnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 2px 4px;
  color: var(--shell342b5-text-muted);
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.shell342b5-bottomnav-item.active { color: var(--shell342b5-green); }
.shell342b5-bottomnav-icon {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
}
.shell342b5-bottomnav-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.shell342b5-bottomnav-item.promo {
  position: relative;
  color: var(--shell342b5-pink);
}
.shell342b5-bottomnav-item.promo .shell342b5-bottomnav-icon {
  background: linear-gradient(180deg, var(--shell342b5-green), var(--shell342b5-green-deep));
  color: #0c1a00;
  border-radius: 50%;
  width: 38px; height: 38px;
  margin-top: -16px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5), 0 0 0 4px rgba(26,26,26,0.97);
}
.shell342b5-bottomnav-item.promo .shell342b5-bottomnav-label {
  position: absolute;
  bottom: 4px;
  color: var(--shell342b5-pink);
  font-weight: 700;
}

/* ---------- Sticky CTA bar (above bottom nav) ---------- */
.shell342b5-stickycta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--shell342b5-bottomnav-h) + 8px);
  width: calc(100% - 20px);
  max-width: 410px;
  display: flex;
  gap: 8px;
  background: rgba(20,20,20,0.96);
  border: 1px solid var(--shell342b5-line-strong);
  border-radius: var(--shell342b5-radius);
  padding: 8px;
  z-index: 70;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.shell342b5-stickycta.show {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(-2px);
}
.shell342b5-stickycta-text {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 4px;
}
.shell342b5-stickycta-text strong { font-size: 12.5px; font-weight: 800; }
.shell342b5-stickycta-text span { font-size: 10px; color: var(--shell342b5-text-muted); }
.shell342b5-stickycta .shell342b5-btn { flex: 0 0 auto; }

/* ---------- Utility ---------- */
.shell342b5-hidden { display: none !important; }
.shell342b5-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;
}

/* ---------- 430px breakpoint ---------- */
@media (min-width: 430px) {
  .shell342b5-gamegrid { grid-template-columns: repeat(4, 1fr); }
  .shell342b5-hero-title { font-size: 21px; }
  .shell342b5-section-title { font-size: 18px; }
  body { font-size: 15.5px; }
}

@media (min-width: 380px) {
  .shell342b5-gamecard-name { font-size: 12px; }
}

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