@charset "utf-8";

/* ==========================================================================
   Benbet mobile-first stylesheet
   Prefix:        shell1a771-
   Palette:       #8B4513 #CD853F #1E1E1E #F5F5F5 #F4A460
   Direction:     outlined tile cards, stroke-driven restrained radii,
                  tech-feel titles + open body, conclusion-first rhythm,
                  motion reserved for key CTAs, segmented action buttons.
   Canvas:        320 - 430 px phone frame, centred on wide screens.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --shell1a771-bg: #1E1E1E;
  --shell1a771-bg-soft: #241c15;
  --shell1a771-bg-card: #2a2018;
  --shell1a771-bg-elevated: #322517;
  --shell1a771-bg-input: #1a1510;

  --shell1a771-text: #F5F5F5;
  --shell1a771-text-soft: rgba(245, 245, 245, 0.80);
  --shell1a771-text-muted: rgba(245, 245, 245, 0.58);
  --shell1a771-text-faint: rgba(245, 245, 245, 0.40);

  --shell1a771-primary: #8B4513;
  --shell1a771-primary-bright: #a6541b;
  --shell1a771-primary-deep: #6d3410;
  --shell1a771-secondary: #CD853F;
  --shell1a771-tertiary: #F4A460;

  --shell1a771-line: rgba(244, 164, 96, 0.24);
  --shell1a771-line-soft: rgba(245, 245, 245, 0.10);
  --shell1a771-line-strong: rgba(244, 164, 96, 0.55);

  --shell1a771-shadow-card: 0 1px 0 rgba(0, 0, 0, 0.35), 0 6px 18px rgba(0, 0, 0, 0.28);
  --shell1a771-shadow-float: 0 8px 28px rgba(0, 0, 0, 0.45);

  --shell1a771-radius-s: 6px;
  --shell1a771-radius-m: 10px;
  --shell1a771-radius-l: 14px;
  --shell1a771-radius-xl: 18px;

  --shell1a771-header-h: 56px;
  --shell1a771-bottomnav-h: 64px;

  --shell1a771-maxw: 480px;

  --shell1a771-font-title: "Segoe UI", "SF Pro Display", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --shell1a771-font-body: "Segoe UI", "Helvetica Neue", system-ui, -apple-system, sans-serif;

  --shell1a771-tap: 44px;
  --shell1a771-ease: cubic-bezier(0.32, 0.72, 0.18, 1);
}

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

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

body {
  margin: 0;
  padding: 0;
  background-color: var(--shell1a771-bg);
  color: var(--shell1a771-text);
  font-family: var(--shell1a771-font-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--shell1a771-tertiary);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--shell1a771-tertiary);
  outline-offset: 2px;
  border-radius: var(--shell1a771-radius-s);
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--shell1a771-font-title);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 12px;
}

/* ---------- Page frame ---------- */
.shell1a771-shell {
  width: 100%;
  max-width: var(--shell1a771-maxw);
  margin: 0 auto;
  background-color: var(--shell1a771-bg);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
}

.shell1a771-main {
  padding-top: calc(var(--shell1a771-header-h) + 4px);
  padding-bottom: calc(var(--shell1a771-bottomnav-h) + 24px);
}

/* ---------- Top bar ---------- */
.shell1a771-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--shell1a771-header-h);
  background: linear-gradient(180deg, #2a1d12 0%, #1E1E1E 100%);
  border-bottom: 1px solid var(--shell1a771-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  gap: 8px;
}

.shell1a771-shell .shell1a771-topbar {
  position: sticky;
}

.shell1a771-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--shell1a771-text);
  min-width: 0;
}

.shell1a771-brand-img {
  width: 34px;
  height: 34px;
  border-radius: var(--shell1a771-radius-s);
  border: 1px solid var(--shell1a771-line-strong);
  background-color: #110d09;
  object-fit: contain;
  padding: 2px;
  flex-shrink: 0;
}

.shell1a771-brand-name {
  font-family: var(--shell1a771-font-title);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--shell1a771-text);
  white-space: nowrap;
}

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

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

/* ---------- Action buttons (segmented) ---------- */
.shell1a771-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: var(--shell1a771-tap);
  padding: 0 14px;
  border-radius: var(--shell1a771-radius-s);
  font-family: var(--shell1a771-font-title);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background-color 0.2s var(--shell1a771-ease),
              color 0.2s var(--shell1a771-ease),
              border-color 0.2s var(--shell1a771-ease),
              transform 0.12s var(--shell1a771-ease);
}

.shell1a771-btn:active {
  transform: translateY(1px);
}

.shell1a771-btn--ghost {
  background-color: transparent;
  color: var(--shell1a771-text);
  border-color: var(--shell1a771-line);
}

.shell1a771-btn--ghost:hover {
  background-color: rgba(244, 164, 96, 0.10);
  border-color: var(--shell1a771-line-strong);
}

.shell1a771-btn--primary {
  background: linear-gradient(180deg, var(--shell1a771-primary-bright) 0%, var(--shell1a771-primary) 100%);
  color: #fff5e8;
  border-color: var(--shell1a771-primary-deep);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

.shell1a771-btn--primary:hover {
  background: linear-gradient(180deg, #b6541d 0%, var(--shell1a771-primary-bright) 100%);
}

.shell1a771-btn--segment {
  background-color: var(--shell1a771-bg-card);
  color: var(--shell1a771-text);
  border-color: var(--shell1a771-line);
}

.shell1a771-btn--segment:hover {
  border-color: var(--shell1a771-line-strong);
  color: var(--shell1a771-tertiary);
}

.shell1a771-btn--block {
  width: 100%;
}

.shell1a771-btn--lg {
  min-height: 48px;
  font-size: 15px;
  padding: 0 18px;
}

/* ---------- Menu icon ---------- */
.shell1a771-menuicon {
  width: var(--shell1a771-tap);
  height: var(--shell1a771-tap);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--shell1a771-radius-s);
  border: 1px solid var(--shell1a771-line);
  color: var(--shell1a771-text);
  background-color: transparent;
  transition: background-color 0.18s var(--shell1a771-ease),
              border-color 0.18s var(--shell1a771-ease);
}

.shell1a771-menuicon:hover {
  background-color: rgba(244, 164, 96, 0.10);
  border-color: var(--shell1a771-line-strong);
}

.shell1a771-menuicon svg {
  width: 20px;
  height: 20px;
}

/* ---------- Expandable menu ---------- */
.shell1a771-menu {
  position: fixed;
  top: var(--shell1a771-header-h);
  left: 0;
  right: 0;
  z-index: 49;
  background-color: #1a1410;
  border-bottom: 1px solid var(--shell1a771-line);
  padding: 8px 12px 14px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s var(--shell1a771-ease),
              opacity 0.22s var(--shell1a771-ease);
  max-height: calc(100vh - var(--shell1a771-header-h));
  overflow-y: auto;
}

.shell1a771-menu--open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.shell1a771-menu-section {
  margin-top: 10px;
}

.shell1a771-menu-label {
  font-family: var(--shell1a771-font-title);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--shell1a771-text-muted);
  padding: 6px 4px;
}

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

.shell1a771-menu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: var(--shell1a771-tap);
  padding: 8px 10px;
  border: 1px solid var(--shell1a771-line-soft);
  border-radius: var(--shell1a771-radius-s);
  color: var(--shell1a771-text);
  font-size: 13.5px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.02);
  transition: background-color 0.18s var(--shell1a771-ease),
              border-color 0.18s var(--shell1a771-ease);
}

.shell1a771-menu-link:hover {
  background-color: rgba(244, 164, 96, 0.10);
  border-color: var(--shell1a771-line-strong);
  color: var(--shell1a771-tertiary);
}

.shell1a771-menu-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--shell1a771-secondary);
  flex-shrink: 0;
}

.shell1a771-menu-promo {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.shell1a771-menu-promo .shell1a771-btn {
  flex: 1;
}

/* ---------- Section frame ---------- */
.shell1a771-section {
  padding: 18px 12px 8px;
}

.shell1a771-section--alt {
  background-color: var(--shell1a771-bg-soft);
  border-top: 1px solid var(--shell1a771-line-soft);
  border-bottom: 1px solid var(--shell1a771-line-soft);
}

.shell1a771-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--shell1a771-font-title);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--shell1a771-tertiary);
  margin-bottom: 6px;
}

.shell1a771-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background-color: var(--shell1a771-tertiary);
}

.shell1a771-h1 {
  font-size: 22px;
  line-height: 1.22;
  margin-bottom: 8px;
  color: var(--shell1a771-text);
}

.shell1a771-h2 {
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--shell1a771-text);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.shell1a771-h2::before {
  content: "";
  width: 4px;
  height: 16px;
  background: linear-gradient(180deg, var(--shell1a771-tertiary), var(--shell1a771-primary));
  border-radius: 2px;
  flex-shrink: 0;
  transform: translateY(2px);
}

.shell1a771-h3 {
  font-size: 14.5px;
  color: var(--shell1a771-tertiary);
  margin: 10px 0 4px;
}

.shell1a771-lead {
  color: var(--shell1a771-text-soft);
  font-size: 14px;
  margin-bottom: 12px;
}

.shell1a771-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--shell1a771-line-soft);
}

.shell1a771-section-head .shell1a771-count {
  font-size: 11px;
  color: var(--shell1a771-text-muted);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.shell1a771-hero-head {
  margin-bottom: 10px;
}

.shell1a771-hero-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shell1a771-tertiary);
  border: 1px solid var(--shell1a771-line-strong);
  margin-bottom: 8px;
}

.shell1a771-carousel {
  position: relative;
  border: 1px solid var(--shell1a771-line);
  border-radius: var(--shell1a771-radius-l);
  overflow: hidden;
  background-color: #0f0b07;
  box-shadow: var(--shell1a771-shadow-card);
}

.shell1a771-viewport {
  overflow: hidden;
}

.shell1a771-track {
  display: flex;
  transition: transform 0.5s var(--shell1a771-ease);
  will-change: transform;
}

.shell1a771-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
}

.shell1a771-slide-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.shell1a771-slide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 12px 12px;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0.88) 70%, rgba(30, 30, 30, 0.96) 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shell1a771-slide-title {
  font-family: var(--shell1a771-font-title);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
}

.shell1a771-slide-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.shell1a771-slide-cta {
  align-self: flex-start;
  margin-top: 2px;
}

.shell1a771-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 10px;
  background-color: rgba(15, 11, 7, 0.85);
}

.shell1a771-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--shell1a771-line-strong);
  background-color: transparent;
  transition: background-color 0.18s var(--shell1a771-ease),
              transform 0.18s var(--shell1a771-ease);
}

.shell1a771-dot--active {
  background-color: var(--shell1a771-tertiary);
  border-color: var(--shell1a771-tertiary);
  transform: scale(1.15);
}

.shell1a771-hero-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.shell1a771-hero-quick .shell1a771-btn {
  font-size: 12px;
  padding: 0 8px;
  min-height: 40px;
}

/* ---------- Category chip strip ---------- */
.shell1a771-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px 12px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.shell1a771-chips::-webkit-scrollbar {
  display: none;
}

.shell1a771-chip {
  flex-shrink: 0;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--shell1a771-line);
  background-color: var(--shell1a771-bg-card);
  color: var(--shell1a771-text-soft);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.18s var(--shell1a771-ease),
              color 0.18s var(--shell1a771-ease),
              border-color 0.18s var(--shell1a771-ease);
}

.shell1a771-chip:hover,
.shell1a771-chip:focus-visible {
  border-color: var(--shell1a771-line-strong);
  color: var(--shell1a771-tertiary);
}

/* ---------- Game grid + outlined tile card ---------- */
.shell1a771-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.shell1a771-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 6px 6px 8px;
  background-color: var(--shell1a771-bg-card);
  border: 1px solid var(--shell1a771-line-soft);
  border-radius: var(--shell1a771-radius-m);
  text-align: center;
  color: var(--shell1a771-text);
  transition: border-color 0.18s var(--shell1a771-ease),
              transform 0.12s var(--shell1a771-ease),
              background-color 0.18s var(--shell1a771-ease);
  -webkit-tap-highlight-color: transparent;
}

.shell1a771-tile:hover {
  border-color: var(--shell1a771-line-strong);
  background-color: var(--shell1a771-bg-elevated);
}

.shell1a771-tile:active {
  transform: translateY(1px) scale(0.99);
}

.shell1a771-tile-media {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--shell1a771-radius-s);
  overflow: hidden;
  background-color: #110d09;
  margin-bottom: 6px;
}

.shell1a771-tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--shell1a771-line);
  border-radius: var(--shell1a771-radius-s);
  pointer-events: none;
}

.shell1a771-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shell1a771-tile-name {
  display: block;
  font-size: 11.5px;
  line-height: 1.25;
  color: var(--shell1a771-text-soft);
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 28px;
}

.shell1a771-tile-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 2px 5px;
  border-radius: 3px;
  background-color: rgba(139, 69, 19, 0.92);
  color: #fff5e8;
  text-transform: uppercase;
  z-index: 1;
}

/* ---------- Compare / feature rows ---------- */
.shell1a771-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shell1a771-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--shell1a771-line-soft);
  border-left: 3px solid var(--shell1a771-secondary);
  border-radius: var(--shell1a771-radius-m);
  background-color: var(--shell1a771-bg-card);
}

.shell1a771-row-title {
  font-family: var(--shell1a771-font-title);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--shell1a771-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.shell1a771-row-title b {
  color: var(--shell1a771-tertiary);
}

.shell1a771-row-desc {
  font-size: 13px;
  color: var(--shell1a771-text-soft);
  margin: 0;
  line-height: 1.55;
}

.shell1a771-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 11.5px;
  color: var(--shell1a771-text-muted);
  margin-top: 4px;
}

.shell1a771-row-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.shell1a771-row-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--shell1a771-secondary);
  border-radius: 50%;
}

/* ---------- Two-column comparison ---------- */
.shell1a771-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.shell1a771-compare-cell {
  padding: 10px;
  border: 1px solid var(--shell1a771-line-soft);
  border-radius: var(--shell1a771-radius-m);
  background-color: var(--shell1a771-bg-card);
}

.shell1a771-compare-cell h4 {
  font-size: 12.5px;
  color: var(--shell1a771-tertiary);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shell1a771-compare-cell p {
  margin: 0;
  font-size: 12.5px;
  color: var(--shell1a771-text-soft);
  line-height: 1.5;
}

/* ---------- Payment methods ---------- */
.shell1a771-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.shell1a771-pay {
  padding: 10px 8px;
  border: 1px solid var(--shell1a771-line-soft);
  border-radius: var(--shell1a771-radius-m);
  background-color: var(--shell1a771-bg-card);
  text-align: center;
}

.shell1a771-pay-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--shell1a771-text);
  display: block;
  margin-bottom: 2px;
}

.shell1a771-pay-meta {
  font-size: 11px;
  color: var(--shell1a771-text-muted);
  display: block;
}

/* ---------- CTA band ---------- */
.shell1a771-cta {
  border: 1px solid var(--shell1a771-line-strong);
  border-radius: var(--shell1a771-radius-l);
  background:
    radial-gradient(circle at 80% 0%, rgba(244, 164, 96, 0.18), transparent 60%),
    linear-gradient(180deg, #2c2014 0%, #1E1E1E 100%);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shell1a771-cta-title {
  font-size: 17px;
  color: var(--shell1a771-text);
}

.shell1a771-cta-sub {
  font-size: 13px;
  color: var(--shell1a771-text-soft);
  margin: 0;
}

.shell1a771-cta-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.shell1a771-cta-actions .shell1a771-btn {
  flex: 1 1 140px;
}

/* ---------- Achievements ---------- */
.shell1a771-timeline {
  position: relative;
  padding-left: 18px;
}

.shell1a771-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--shell1a771-tertiary), transparent);
}

.shell1a771-milestone {
  position: relative;
  padding: 6px 0 12px 6px;
}

.shell1a771-milestone::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--shell1a771-bg);
  border: 2px solid var(--shell1a771-tertiary);
}

.shell1a771-milestone-title {
  font-size: 13.5px;
  color: var(--shell1a771-text);
  font-weight: 700;
  margin-bottom: 2px;
}

.shell1a771-milestone-desc {
  font-size: 12.5px;
  color: var(--shell1a771-text-soft);
  margin: 0;
}

/* ---------- Scenario Q&A ---------- */
.shell1a771-qa {
  border: 1px solid var(--shell1a771-line-soft);
  border-radius: var(--shell1a771-radius-m);
  background-color: var(--shell1a771-bg-card);
  padding: 12px;
  margin-bottom: 8px;
}

.shell1a771-qa-q {
  font-family: var(--shell1a771-font-title);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--shell1a771-tertiary);
  margin-bottom: 4px;
}

.shell1a771-qa-a {
  font-size: 13px;
  color: var(--shell1a771-text-soft);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Extended footer (homepage only) ---------- */
.shell1a771-extended {
  margin-top: 14px;
  padding: 18px 12px 12px;
  border-top: 1px solid var(--shell1a771-line);
  background-color: var(--shell1a771-bg-soft);
}

.shell1a771-extended-block {
  margin-bottom: 16px;
}

.shell1a771-brand-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border: 1px solid var(--shell1a771-line-soft);
  border-radius: var(--shell1a771-radius-m);
  background-color: var(--shell1a771-bg-card);
}

.shell1a771-brand-card-img {
  width: 40px;
  height: 40px;
  border-radius: var(--shell1a771-radius-s);
  background-color: #110d09;
  border: 1px solid var(--shell1a771-line-strong);
  padding: 2px;
  flex-shrink: 0;
  object-fit: contain;
}

.shell1a771-brand-card p {
  margin: 0;
  font-size: 12.5px;
  color: var(--shell1a771-text-soft);
  line-height: 1.55;
}

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

.shell1a771-promo-strip .shell1a771-btn {
  font-size: 12px;
  padding: 0 8px;
  min-height: 40px;
  justify-content: flex-start;
  text-align: left;
}

.shell1a771-promo-strip .shell1a771-btn:nth-child(odd):last-child {
  grid-column: 1 / -1;
}

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

.shell1a771-directory a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border: 1px solid var(--shell1a771-line-soft);
  border-radius: var(--shell1a771-radius-s);
  background-color: var(--shell1a771-bg-card);
  font-size: 12.5px;
  color: var(--shell1a771-text);
  font-weight: 600;
  transition: border-color 0.18s var(--shell1a771-ease),
              color 0.18s var(--shell1a771-ease);
}

.shell1a771-directory a:hover {
  border-color: var(--shell1a771-line-strong);
  color: var(--shell1a771-tertiary);
}

.shell1a771-directory a small {
  font-size: 11px;
  color: var(--shell1a771-text-muted);
  font-weight: 400;
}

.shell1a771-disclaimer {
  font-size: 11.5px;
  color: var(--shell1a771-text-muted);
  border-top: 1px dashed var(--shell1a771-line-soft);
  padding-top: 10px;
  line-height: 1.55;
}

/* ---------- Footer ---------- */
.shell1a771-footer {
  padding: 16px 12px 8px;
  text-align: center;
  font-size: 11.5px;
  color: var(--shell1a771-text-muted);
  border-top: 1px solid var(--shell1a771-line-soft);
}

.shell1a771-footer p {
  margin: 0 0 4px;
}

/* ---------- Bottom navigation ---------- */
.shell1a771-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  height: var(--shell1a771-bottomnav-h);
  background: linear-gradient(180deg, #2a1d12 0%, #150f0a 100%);
  border-top: 1px solid var(--shell1a771-line-strong);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 4px 4px calc(4px + env(safe-area-inset-bottom));
  gap: 2px;
}

.shell1a771-shell .shell1a771-bottomnav {
  position: sticky;
}

.shell1a771-navbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--shell1a771-text-muted);
  font-size: 10.5px;
  font-weight: 600;
  border-radius: var(--shell1a771-radius-s);
  padding: 4px 2px;
  min-height: var(--shell1a771-tap);
  text-decoration: none;
  position: relative;
  transition: color 0.18s var(--shell1a771-ease),
              transform 0.12s var(--shell1a771-ease);
}

.shell1a771-navbtn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell1a771-navbtn:hover {
  color: var(--shell1a771-text);
}

.shell1a771-navbtn--active,
.shell1a771-navbtn[aria-current="page"] {
  color: var(--shell1a771-tertiary);
  transform: translateY(-2px);
}

.shell1a771-navbtn--active::after,
.shell1a771-navbtn[aria-current="page"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background-color: var(--shell1a771-tertiary);
  border-radius: 0 0 2px 2px;
}

.shell1a771-navbtn--promo {
  color: #fff5e8;
}

.shell1a771-navbtn--promo span:first-child,
.shell1a771-navbtn--promo svg {
  background: linear-gradient(180deg, var(--shell1a771-primary-bright), var(--shell1a771-primary));
  border-radius: 50%;
  padding: 5px;
  width: 30px;
  height: 30px;
  stroke: #fff5e8;
  margin-top: -4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.shell1a771-navbtn--promo:nth-of-type(3) svg {
  background: linear-gradient(180deg, var(--shell1a771-tertiary), var(--shell1a771-secondary));
}

/* ---------- Utility ---------- */
.shell1a771-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;
}

.shell1a771-note {
  font-size: 12px;
  color: var(--shell1a771-text-muted);
  border-left: 2px solid var(--shell1a771-line-strong);
  padding: 4px 10px;
  margin: 8px 0;
  background-color: rgba(244, 164, 96, 0.06);
}

/* ---------- Responsive: 360px+ ---------- */
@media (min-width: 360px) {
  .shell1a771-h1 { font-size: 24px; }
  .shell1a771-h2 { font-size: 18px; }
  .shell1a771-section { padding: 20px 14px 10px; }
  .shell1a771-hero { padding: 16px 14px 6px; }
}

/* ---------- Responsive: 400px+ (5 columns) ---------- */
@media (min-width: 400px) {
  .shell1a771-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .shell1a771-pay-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .shell1a771-promo-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .shell1a771-promo-strip .shell1a771-btn:nth-child(odd):last-child {
    grid-column: auto;
  }
}

/* ---------- Responsive: 480px+ wider shell ---------- */
@media (min-width: 480px) {
  .shell1a771-shell {
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.55);
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .shell1a771-track { transition: none; }
  .shell1a771-btn,
  .shell1a771-tile,
  .shell1a771-navbtn { transition: none; }
}

/* ---------- Print ---------- */
@media print {
  .shell1a771-topbar,
  .shell1a771-bottomnav,
  .shell1a771-menu,
  .shell1a771-carousel {
    display: none !important;
  }
  body { background: #fff; color: #000; }
}
