/**
 * nnph games - compact-171812-shell.css
 * Mobile-first canvas (320-430px). Wider screens keep the centered phone canvas.
 * All custom classes and CSS variables use the shell71812- prefix.
 *
 * Palette: #7CFC00 | #008000 | #228B22 | #0E1621 | #FFB347
 */

:root {
  --shell71812-bg: #0E1621;
  --shell71812-bg-deep: #0A121C;
  --shell71812-bg-elev: #142133;
  --shell71812-bg-card: #18283F;
  --shell71812-bg-card-2: #1B2D46;
  --shell71812-green-bright: #7CFC00;
  --shell71812-green: #008000;
  --shell71812-green-deep: #228B22;
  --shell71812-amber: #FFB347;
  --shell71812-amber-deep: #E8941E;
  --shell71812-text: #F1F8E9;
  --shell71812-text-mute: #A8BCA8;
  --shell71812-text-faint: #6F8270;
  --shell71812-line: rgba(124, 252, 0, 0.18);
  --shell71812-line-soft: rgba(255, 255, 255, 0.07);
  --shell71812-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  --shell71812-radius: 14px;
  --shell71812-radius-sm: 10px;
  --shell71812-header-h: 58px;
  --shell71812-bottom-h: 64px;
  --shell71812-slide-fade: 420ms;
}

* { box-sizing: border-box; }

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--shell71812-bg);
  color: var(--shell71812-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(34, 139, 34, 0.28), transparent 60%),
    radial-gradient(80% 40% at 100% 0%, rgba(124, 252, 0, 0.10), transparent 60%),
    var(--shell71812-bg);
}

img { display: block; max-width: 100%; }
a { color: var(--shell71812-green-bright); text-decoration: none; }
a:hover, a:focus-visible { color: var(--shell71812-amber); }
:focus-visible { outline: 2px solid var(--shell71812-green-bright); outline-offset: 2px; border-radius: 4px; }

/* ---------------------------------------------------------------- *
 * Mobile canvas: phone-width column, centered on wider screens
 * ---------------------------------------------------------------- */
.shell71812-canvas {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--shell71812-bg);
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.55);
  overflow-x: hidden;
}

/* ---------------------------------------------------------------- *
 * Header - asymmetric brand header
 * ---------------------------------------------------------------- */
.shell71812-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--shell71812-header-h);
  background: linear-gradient(180deg, rgba(14, 22, 33, 0.98), rgba(14, 22, 33, 0.92));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--shell71812-line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

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

.shell71812-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
  background: var(--shell71812-bg-deep);
  border: 1px solid var(--shell71812-line);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(124, 252, 0, 0.08);
}

.shell71812-brand-text { min-width: 0; }
.shell71812-brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--shell71812-text);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shell71812-brand-tag {
  font-size: 10px;
  color: var(--shell71812-green-bright);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  line-height: 1.2;
  margin-top: 2px;
}

.shell71812-actions { display: flex; align-items: center; gap: 6px; }

.shell71812-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.shell71812-btn-login {
  background: transparent;
  color: var(--shell71812-text);
  border: 1px solid var(--shell71812-line);
}
.shell71812-btn-login:hover, .shell71812-btn-login:focus-visible {
  border-color: var(--shell71812-green-bright);
  color: var(--shell71812-green-bright);
}
.shell71812-btn-register {
  background: linear-gradient(135deg, var(--shell71812-green-bright), var(--shell71812-green-deep));
  color: #06120A;
  box-shadow: 0 4px 14px rgba(124, 252, 0, 0.32);
}
.shell71812-btn-register:hover, .shell71812-btn-register:focus-visible {
  transform: translateY(-1px);
  color: #06120A;
  box-shadow: 0 6px 18px rgba(124, 252, 0, 0.42);
}

.shell71812-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--shell71812-bg-card);
  border: 1px solid var(--shell71812-line);
  color: var(--shell71812-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.shell71812-icon-btn:hover, .shell71812-icon-btn:focus-visible,
.shell71812-icon-btn--active {
  color: var(--shell71812-green-bright);
  border-color: var(--shell71812-green-bright);
}
.shell71812-icon-btn svg { width: 20px; height: 20px; }

/* ---------------------------------------------------------------- *
 * Menu veil + partitioned menu drawer
 * ---------------------------------------------------------------- */
.shell71812-veil {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 14, 0.7);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  max-width: 430px;
  left: 50%;
  transform: translateX(-50%);
}
.shell71812-veil[data-open="true"] { opacity: 1; pointer-events: auto; }

.shell71812-menu {
  position: fixed;
  top: 0;
  right: 50%;
  transform: translateX(50%) translateX(215px);
  width: 86%;
  max-width: 340px;
  height: 100vh;
  background: var(--shell71812-bg-elev);
  z-index: 80;
  transition: transform 0.30s cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow-y: auto;
  padding: 16px 14px calc(var(--shell71812-bottom-h) + 24px);
  border-left: 1px solid var(--shell71812-line);
  margin-right: 0;
}
.shell71812-menu[data-open="true"] { transform: translateX(50%) translateX(0); }

@media (min-width: 430px) {
  .shell71812-menu { right: calc(50% - 215px); transform: translateX(100%); }
  .shell71812-menu[data-open="true"] { transform: translateX(0); }
}

.shell71812-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--shell71812-line-soft);
}
.shell71812-menu-title { font-size: 16px; font-weight: 800; margin: 0; color: var(--shell71812-text); }
.shell71812-menu-close {
  background: var(--shell71812-bg-card); color: var(--shell71812-text);
  border: 1px solid var(--shell71812-line); border-radius: 8px;
  width: 32px; height: 32px; cursor: pointer; font-size: 18px; line-height: 1;
}

.shell71812-menu-section { margin-bottom: 14px; }
.shell71812-menu-section-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--shell71812-green-bright); margin: 0 0 8px 4px; font-weight: 700;
}
.shell71812-menu-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 5px; }
.shell71812-menu-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 12px; border-radius: 10px;
  color: var(--shell71812-text); background: var(--shell71812-bg-card);
  border: 1px solid var(--shell71812-line-soft);
  font-size: 13px; font-weight: 600;
}
.shell71812-menu-list a:hover, .shell71812-menu-list a[data-active="true"] {
  background: linear-gradient(135deg, rgba(124, 252, 0, 0.16), rgba(34, 139, 34, 0.16));
  border-color: var(--shell71812-green-bright); color: var(--shell71812-green-bright);
}
.shell71812-menu-list a::after {
  content: "›"; color: var(--shell71812-text-faint); font-size: 18px; line-height: 1;
}

.shell71812-menu-cta {
  display: flex; flex-direction: column; gap: 8px; margin-top: 6px;
}
.shell71812-menu-cta button {
  width: 100%; padding: 12px; border-radius: 10px; font-weight: 800;
  border: none; cursor: pointer; font-family: inherit; font-size: 14px;
}
.shell71812-menu-cta-register {
  background: linear-gradient(135deg, var(--shell71812-green-bright), var(--shell71812-green-deep));
  color: #06120A;
}
.shell71812-menu-cta-login {
  background: var(--shell71812-bg-card); color: var(--shell71812-text);
  border: 1px solid var(--shell71812-line);
}

/* ---------------------------------------------------------------- *
 * Main content
 * ---------------------------------------------------------------- */
.shell71812-main {
  padding: 14px 12px calc(var(--shell71812-bottom-h) + 28px);
}

.shell71812-intro { margin: 4px 0 14px; }
.shell71812-h1 {
  font-size: 26px; font-weight: 900; margin: 4px 0 8px;
  line-height: 1.2; color: var(--shell71812-text);
  letter-spacing: -0.2px;
}
.shell71812-h1 .shell71812-h1-accent { color: var(--shell71812-green-bright); }
.shell71812-lede {
  font-size: 14px; color: var(--shell71812-text-mute); margin: 0;
}
.shell71812-quick-row {
  display: flex; gap: 8px; margin: 12px 0 4px; flex-wrap: wrap;
}
.shell71812-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px;
  background: var(--shell71812-bg-card); border: 1px solid var(--shell71812-line-soft);
  font-size: 11px; color: var(--shell71812-text-mute); font-weight: 600;
}
.shell71812-chip strong { color: var(--shell71812-green-bright); }

/* ---------------------------------------------------------------- *
 * Carousel
 * ---------------------------------------------------------------- */
.shell71812-carousel {
  position: relative;
  border-radius: var(--shell71812-radius);
  overflow: hidden;
  background: var(--shell71812-bg-deep);
  border: 1px solid var(--shell71812-line);
  box-shadow: var(--shell71812-shadow);
  margin: 14px 0 4px;
}
.shell71812-slides { position: relative; aspect-ratio: 16 / 9; }
.shell71812-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity var(--shell71812-slide-fade) ease;
  display: block; cursor: pointer;
}
.shell71812-slide[data-active="true"] { opacity: 1; }
.shell71812-slide img { width: 100%; height: 100%; object-fit: cover; }
.shell71812-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(7, 12, 18, 0.92));
  color: var(--shell71812-text);
  pointer-events: none;
}
.shell71812-slide-caption strong { color: var(--shell71812-green-bright); font-size: 15px; display: block; line-height: 1.2; }
.shell71812-slide-caption span { font-size: 12px; color: var(--shell71812-text-mute); }

.shell71812-dots {
  position: absolute; bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; pointer-events: none;
}
.shell71812-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.35); border: none; cursor: pointer; padding: 0;
  transition: all 0.2s ease; pointer-events: auto;
}
.shell71812-dot[data-active="true"] {
  background: var(--shell71812-green-bright); transform: scale(1.3);
  box-shadow: 0 0 8px rgba(124, 252, 0, 0.6);
}

.shell71812-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(7, 12, 18, 0.6); border: 1px solid var(--shell71812-line);
  color: var(--shell71812-text); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; padding: 0;
}
.shell71812-carousel-arrow:hover { background: rgba(124, 252, 0, 0.25); color: var(--shell71812-green-bright); }
.shell71812-carousel-arrow-prev { left: 8px; }
.shell71812-carousel-arrow-next { right: 8px; }

/* ---------------------------------------------------------------- *
 * Section header + game grid
 * ---------------------------------------------------------------- */
.shell71812-section { margin: 22px 0 6px; scroll-margin-top: calc(var(--shell71812-header-h) + 8px); }
.shell71812-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px; gap: 8px;
}
.shell71812-section-title {
  font-size: 17px; font-weight: 800; margin: 0; color: var(--shell71812-text);
  position: relative; padding-left: 12px; line-height: 1.25;
}
.shell71812-section-title::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px;
  background: linear-gradient(180deg, var(--shell71812-green-bright), var(--shell71812-green-deep));
  border-radius: 3px;
}
.shell71812-section-sub { font-size: 11px; color: var(--shell71812-text-mute); white-space: nowrap; }

.shell71812-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.shell71812-game {
  display: flex; flex-direction: column; align-items: center;
  background: var(--shell71812-bg-card);
  border: 1px solid var(--shell71812-line-soft);
  border-radius: 10px;
  padding: 5px 4px 7px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  text-align: center;
}
.shell71812-game:hover, .shell71812-game:focus-within {
  transform: translateY(-2px);
  border-color: var(--shell71812-green-bright);
  background: var(--shell71812-bg-card-2);
}
.shell71812-game-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 7px; background: var(--shell71812-bg-deep);
}
.shell71812-game-name {
  font-size: 10.5px; color: var(--shell71812-text); margin-top: 5px;
  line-height: 1.2; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 25px;
  word-break: break-word;
}
.shell71812-game:hover .shell71812-game-name { color: var(--shell71812-green-bright); }

/* 5th column appears on slightly wider phone canvas */
@media (min-width: 376px) {
  .shell71812-game-grid { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .shell71812-h1 { font-size: 28px; }
}

/* ---------------------------------------------------------------- *
 * Content modules (Mobile App / Play Styles / Promotions / Features)
 * ---------------------------------------------------------------- */
.shell71812-card {
  background: var(--shell71812-bg-card);
  border: 1px solid var(--shell71812-line-soft);
  border-radius: var(--shell71812-radius);
  padding: 14px;
  margin: 12px 0;
}
.shell71812-card-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.shell71812-card-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(124, 252, 0, 0.22), rgba(34, 139, 34, 0.18));
  display: flex; align-items: center; justify-content: center;
  color: var(--shell71812-green-bright); flex-shrink: 0;
}
.shell71812-card-icon svg { width: 18px; height: 18px; }
.shell71812-card h2 {
  font-size: 16px; font-weight: 800; margin: 0; color: var(--shell71812-text);
  line-height: 1.25;
}
.shell71812-card h3 { font-size: 13px; font-weight: 700; margin: 12px 0 4px; color: var(--shell71812-amber); }
.shell71812-card p { font-size: 13px; color: var(--shell71812-text-mute); margin: 0 0 8px; }
.shell71812-card p:last-child { margin-bottom: 0; }
.shell71812-card ul { margin: 4px 0 8px; padding-left: 18px; font-size: 13px; color: var(--shell71812-text-mute); }
.shell71812-card li { margin-bottom: 4px; }
.shell71812-card a { color: var(--shell71812-green-bright); font-weight: 600; }

.shell71812-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px;
}
.shell71812-mini {
  background: var(--shell71812-bg-elev);
  border: 1px solid var(--shell71812-line-soft);
  border-radius: 10px; padding: 10px;
}
.shell71812-mini-num {
  font-size: 11px; color: var(--shell71812-green-bright); font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px;
}
.shell71812-mini h3 { margin: 0 0 4px; font-size: 13px; color: var(--shell71812-text); }
.shell71812-mini p { margin: 0; font-size: 12px; color: var(--shell71812-text-mute); }

/* Promo CTA */
.shell71812-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px;
  background: linear-gradient(135deg, var(--shell71812-green-bright), var(--shell71812-green-deep));
  color: #06120A; font-weight: 800; font-size: 14px;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 14px rgba(124, 252, 0, 0.30);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.shell71812-cta:hover, .shell71812-cta:focus-visible {
  transform: translateY(-1px); color: #06120A;
  box-shadow: 0 7px 20px rgba(124, 252, 0, 0.42);
}
.shell71812-cta-alt {
  background: linear-gradient(135deg, var(--shell71812-amber), var(--shell71812-amber-deep));
  color: #221202; box-shadow: 0 4px 14px rgba(255, 179, 71, 0.30);
}
.shell71812-cta-alt:hover, .shell71812-cta-alt:focus-visible {
  color: #221202; box-shadow: 0 7px 20px rgba(255, 179, 71, 0.42);
}

.shell71812-promo-strip {
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.35), rgba(124, 252, 0, 0.10));
  border: 1px solid var(--shell71812-line);
  border-radius: var(--shell71812-radius);
  padding: 14px; margin: 14px 0;
}
.shell71812-promo-strip strong { color: var(--shell71812-green-bright); }

/* Inline text link styled for promo anchors */
.shell71812-text-link {
  color: var(--shell71812-green-bright); font-weight: 700; cursor: pointer;
  border-bottom: 1px dashed rgba(124, 252, 0, 0.5);
}
.shell71812-text-link:hover { color: var(--shell71812-amber); border-bottom-color: var(--shell71812-amber); }

/* ---------------------------------------------------------------- *
 * Extended footer (compact groups: brand > promotions > directory > disclaimer)
 * ---------------------------------------------------------------- */
.shell71812-extended {
  margin: 28px 0 0; padding: 18px 0 0; border-top: 1px solid var(--shell71812-line);
}
.shell71812-extended-intro {
  background: var(--shell71812-bg-card); border: 1px solid var(--shell71812-line-soft);
  border-radius: var(--shell71812-radius); padding: 14px; margin-bottom: 12px;
}
.shell71812-extended-intro h2 {
  font-size: 15px; font-weight: 800; margin: 0 0 6px; color: var(--shell71812-text);
}
.shell71812-extended-intro p { font-size: 12px; color: var(--shell71812-text-mute); margin: 0 0 10px; }

.shell71812-extended-promos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 12px;
}
.shell71812-promo-tile {
  background: var(--shell71812-bg-card);
  border: 1px solid var(--shell71812-line-soft);
  border-radius: 10px; padding: 10px;
  cursor: pointer; text-align: left;
  color: var(--shell71812-text); font-family: inherit;
  display: flex; flex-direction: column; gap: 2px;
}
.shell71812-promo-tile:hover, .shell71812-promo-tile:focus-visible {
  border-color: var(--shell71812-green-bright);
}
.shell71812-promo-tile strong { font-size: 12px; color: var(--shell71812-green-bright); }
.shell71812-promo-tile span { font-size: 11px; color: var(--shell71812-text-mute); }

.shell71812-dir-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.shell71812-dir-card {
  background: var(--shell71812-bg-card); border: 1px solid var(--shell71812-line-soft);
  border-radius: 10px; padding: 9px 10px;
}
.shell71812-dir-card h4 {
  margin: 0 0 4px; font-size: 11px; color: var(--shell71812-amber);
  text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700;
}
.shell71812-dir-card a {
  display: block; padding: 4px 0; font-size: 12px; color: var(--shell71812-text);
  border-bottom: 1px dashed var(--shell71812-line-soft); line-height: 1.25;
}
.shell71812-dir-card a:last-child { border-bottom: none; }
.shell71812-dir-card a:hover { color: var(--shell71812-green-bright); }

.shell71812-disclaimer {
  margin-top: 14px; padding: 12px; border-radius: 10px;
  background: var(--shell71812-bg-deep); border: 1px solid var(--shell71812-line-soft);
  font-size: 11px; color: var(--shell71812-text-faint); line-height: 1.5;
}

@media (min-width: 376px) {
  .shell71812-dir-grid { grid-template-columns: repeat(3, 1fr); }
  .shell71812-extended-promos { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------------------------------------------------------- *
 * Footer
 * ---------------------------------------------------------------- */
.shell71812-footer {
  text-align: center; font-size: 11px; color: var(--shell71812-text-faint);
  padding: 14px 12px calc(var(--shell71812-bottom-h) + 14px);
  border-top: 1px solid var(--shell71812-line-soft);
  background: var(--shell71812-bg-deep);
}
.shell71812-footer p { margin: 4px 0; }

/* ---------------------------------------------------------------- *
 * Bottom navigation - compact icon rack (5 roles)
 * Active state = color switch; micro-interaction = top sliding indicator
 * ---------------------------------------------------------------- */
.shell71812-bottom {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: 0; width: 100%; max-width: 430px;
  height: var(--shell71812-bottom-h);
  background: linear-gradient(180deg, rgba(14, 22, 33, 0.98), rgba(7, 12, 18, 1));
  border-top: 1px solid var(--shell71812-line);
  display: grid; grid-template-columns: repeat(5, 1fr);
  z-index: 50;
  padding-bottom: env(safe-area-inset-bottom);
}
.shell71812-bottom-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; color: var(--shell71812-text-mute); font-size: 10px; font-weight: 600;
  text-decoration: none; background: none; border: none; cursor: pointer;
  position: relative; padding: 6px 2px; font-family: inherit;
  transition: color 0.18s ease;
}
.shell71812-bottom-item svg { width: 22px; height: 22px; transition: transform 0.18s ease; }
.shell71812-bottom-item:hover { color: var(--shell71812-text); }
.shell71812-bottom-item:hover svg { transform: translateY(-1px); }
.shell71812-bottom-item[data-active="true"] {
  color: var(--shell71812-green-bright);
}
.shell71812-bottom-item[data-active="true"]::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 3px; border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--shell71812-green-bright), var(--shell71812-green-deep));
  box-shadow: 0 0 10px rgba(124, 252, 0, 0.7);
  animation: shell71812-slide-in 0.25s ease;
}
.shell71812-bottom-item.is-promo { color: var(--shell71812-amber); }
.shell71812-bottom-item.is-promo[data-active="true"] { color: var(--shell71812-amber); }
.shell71812-bottom-item.is-promo[data-active="true"]::before {
  background: linear-gradient(90deg, var(--shell71812-amber), var(--shell71812-amber-deep));
  box-shadow: 0 0 10px rgba(255, 179, 71, 0.7);
}

@keyframes shell71812-slide-in {
  from { transform: translateX(-50%) translateY(-6px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);   opacity: 1; }
}

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

/* Help-page patterns: the two guides intentionally use different content rhythms. */
.shell71812-help-hero{padding:18px 0 16px}.shell71812-kicker{margin:0 0 6px;color:var(--shell71812-green-bright);font-size:10px;font-weight:800;letter-spacing:1.5px;text-transform:uppercase}.shell71812-help-hero h1{margin:0 0 8px;font-size:26px;line-height:1.18}.shell71812-help-hero p{margin:0;color:var(--shell71812-text-mute);font-size:14px}.shell71812-outline{display:flex;flex-wrap:wrap;gap:7px;margin-top:12px}.shell71812-outline a{padding:5px 8px;border:1px solid var(--shell71812-line-soft);border-radius:999px;font-size:11px;color:var(--shell71812-text-mute)}.shell71812-steps{display:grid;gap:9px;margin:14px 0;counter-reset:shell71812-step}.shell71812-step{position:relative;padding:13px 12px 13px 45px;background:var(--shell71812-bg-card);border:1px solid var(--shell71812-line-soft);border-radius:var(--shell71812-radius-sm);counter-increment:shell71812-step}.shell71812-step:before{content:counter(shell71812-step);position:absolute;left:13px;top:14px;width:23px;height:23px;display:grid;place-items:center;border-radius:50%;background:var(--shell71812-green-bright);color:#071208;font-size:11px;font-weight:900}.shell71812-step h2{margin:0 0 4px;font-size:15px;line-height:1.25}.shell71812-step p{margin:0;color:var(--shell71812-text-mute);font-size:12px}.shell71812-callout{padding:12px 13px;margin:13px 0;border-left:3px solid var(--shell71812-amber);background:rgba(255,179,71,.09);border-radius:0 var(--shell71812-radius-sm) var(--shell71812-radius-sm) 0;color:var(--shell71812-text-mute);font-size:12px}.shell71812-callout strong{color:var(--shell71812-amber)}.shell71812-faq-list{display:grid;gap:7px}.shell71812-faq-item{background:var(--shell71812-bg-card);border:1px solid var(--shell71812-line-soft);border-radius:var(--shell71812-radius-sm);overflow:hidden}.shell71812-faq-item summary{padding:11px 12px;cursor:pointer;font-size:13px;font-weight:700}.shell71812-faq-item p{padding:0 12px 11px;margin:0;color:var(--shell71812-text-mute);font-size:12px}.shell71812-review-layout{display:grid;gap:10px}.shell71812-score{display:flex;align-items:center;gap:12px;padding:14px;border:1px solid var(--shell71812-line);border-radius:var(--shell71812-radius);background:linear-gradient(135deg,rgba(34,139,34,.3),rgba(24,40,63,.9))}.shell71812-score strong{font-size:42px;line-height:1;color:var(--shell71812-green-bright)}.shell71812-score span{font-size:12px;color:var(--shell71812-text-mute)}.shell71812-rubric{display:grid;gap:7px;padding:13px;background:var(--shell71812-bg-card);border:1px solid var(--shell71812-line-soft);border-radius:var(--shell71812-radius)}.shell71812-rubric-row{display:grid;grid-template-columns:1fr auto;gap:8px;font-size:12px;color:var(--shell71812-text-mute)}.shell71812-meter{grid-column:1/-1;height:6px;border-radius:99px;background:var(--shell71812-bg-deep);overflow:hidden}.shell71812-meter i{display:block;height:100%;background:var(--shell71812-green-bright);border-radius:inherit}.shell71812-proscons{display:grid;grid-template-columns:1fr 1fr;gap:8px}.shell71812-proscons>div{padding:11px;background:var(--shell71812-bg-elev);border:1px solid var(--shell71812-line-soft);border-radius:var(--shell71812-radius-sm)}.shell71812-proscons h3{margin:0 0 5px;font-size:13px}.shell71812-proscons ul{padding-left:15px;margin:0;color:var(--shell71812-text-mute);font-size:11px}.shell71812-proscons li{margin:4px 0}.shell71812-table-wrap{overflow-x:auto}.shell71812-table{border-collapse:collapse;min-width:480px;width:100%;font-size:11px}.shell71812-table th,.shell71812-table td{border:1px solid var(--shell71812-line-soft);padding:8px;text-align:left;vertical-align:top}.shell71812-table th{background:var(--shell71812-bg-elev);color:var(--shell71812-green-bright)}.shell71812-table td{color:var(--shell71812-text-mute)}
