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

:root {
  --bg-base:       #080e1c;
  --bg-surface:    #0c1526;
  --bg-elevated:   #101d33;
  --bg-card:       #111f38;
  --border:        #1c3050;
  --border-subtle: #162540;

  --text-primary:   #dde5f0;
  --text-secondary: #7a97b8;
  --text-muted:     #3f5878;

  --accent:        #00cfb8;
  --accent-hover:  #00b8a3;
  --accent-dim:    rgba(0, 207, 184, 0.08);
  --accent-glow:   rgba(0, 207, 184, 0.18);

  --amber:         #f6a623;
  --amber-dim:     rgba(246, 166, 35, 0.10);

  --danger:        #ef4444;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 32px rgba(0,207,184,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

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

/* ─── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.75; }

.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); font-size: 0.875rem; }
.text-amber  { color: var(--amber); }

/* ─── Layout ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
section.section--tight { padding: 64px 0; }
section.section--flush { padding: 0; }

/* ─── Navigation ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 14, 28, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 36px;
  width: auto;
}

.nav__logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav__links a:hover { color: var(--text-primary); }

.nav__links a.active { color: var(--text-primary); }

.nav__cta { margin-left: 8px; }

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  border: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #080e1c;
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: #080e1c;
  box-shadow: 0 0 0 3px var(--accent-glow);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn--sm {
  padding: 7px 14px;
  font-size: 0.82rem;
}

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,207,184,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,207,184,0.2);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  max-width: 780px;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero__note span { color: var(--accent); }

/* ─── Games bar ────────────────────────────────────────────────── */
.games-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  padding: 20px 0;
}

.games-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.games-bar__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-right: 8px;
  white-space: nowrap;
}

.game-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.game-badge__logo {
  height: 36px;
  width: auto;
}

.games-bar__soon {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: italic;
  white-space: nowrap;
}

.game-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── Section headers ──────────────────────────────────────────── */
.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-header p {
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ─── Feature grid ─────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: rgba(0,207,184,0.3);
  box-shadow: var(--shadow-glow);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,207,184,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-card__icon svg { width: 20px; height: 20px; }

.feature-card h3 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p  { font-size: 0.9rem; line-height: 1.65; }

/* ─── How-it-works steps ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5%);
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step {
  padding: 0 16px;
  text-align: center;
  position: relative;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step h3 { margin-bottom: 8px; font-size: 1rem; }
.step p  { font-size: 0.875rem; color: var(--text-secondary); }

/* ─── Pricing ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
}

.pricing-card--popular {
  border-color: var(--accent);
  position: relative;
  box-shadow: var(--shadow-glow);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #080e1c;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}

.pricing-card__per {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-card__skus {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 5px 10px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-card__features li .check {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__features li .cross {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__features li.dimmed {
  color: var(--text-muted);
}

/* ─── Comparison table ─────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.compare-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding-top: 18px;
  padding-bottom: 18px;
}

.compare-table thead th:first-child { border-radius: var(--radius-md) 0 0 0; }
.compare-table thead th:last-child  { border-radius: 0 var(--radius-md) 0 0; }

.compare-table tbody tr:hover { background: var(--bg-surface); }

.compare-table td:first-child { font-weight: 600; color: var(--text-primary); }

.compare-table .highlighted td { background: rgba(0,207,184,0.04); }
.compare-table .highlighted td:first-child { color: var(--accent); }

.check-cell { color: var(--accent); font-weight: 600; }
.cross-cell { color: var(--text-muted); }
.partial-cell { color: var(--amber); }

/* ─── Callout / Banner ─────────────────────────────────────────── */
.callout {
  background: var(--accent-dim);
  border: 1px solid rgba(0,207,184,0.18);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.callout--amber {
  background: var(--amber-dim);
  border-color: rgba(246,166,35,0.2);
}

.callout h3 { margin-bottom: 6px; }
.callout p  { font-size: 0.9rem; margin: 0; }

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.faq-item + .faq-item { margin-top: 8px; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}

.faq-question:hover { background: var(--bg-elevated); }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.faq-answer p + p { margin-top: 10px; }

/* ─── Prose (legal pages) ──────────────────────────────────────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.3rem;
  margin-top: 48px;
  margin-bottom: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.prose h2:first-child { border-top: none; margin-top: 0; }

.prose h3 {
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.prose p {
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.8;
}

.prose ul, .prose ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.prose li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.7;
}

.prose a { color: var(--accent); }

/* ─── Page hero (inner pages) ──────────────────────────────────── */
.page-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.page-hero h1 { max-width: 640px; margin-bottom: 16px; }
.page-hero p  { font-size: 1.05rem; max-width: 560px; }

/* ─── Guide steps ──────────────────────────────────────────────── */
.guide-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.guide-section:last-child { border-bottom: none; }

.guide-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.guide-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0,207,184,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.guide-step__content h3 { margin-bottom: 8px; }
.guide-step__content p  { font-size: 0.9rem; }

.placeholder-screen {
  background: var(--bg-elevated);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.placeholder-screen svg { opacity: 0.3; }

/* ─── Games detail page ────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.game-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.game-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.game-card h3 { margin: 0; font-size: 1rem; }
.game-card p  { font-size: 0.875rem; line-height: 1.65; margin-bottom: 14px; }

.game-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tag--accent {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,207,184,0.2);
}

.tag--muted {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ─── Stat strip ───────────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stat-strip__item {
  background: var(--bg-surface);
  padding: 28px 24px;
  text-align: center;
}

.stat-strip__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.stat-strip__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 36px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer__brand { max-width: 280px; }

.footer__logo-img {
  height: 36px;
  width: auto;
}

.footer__brand p {
  font-size: 0.85rem;
  margin-top: 10px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 40px;
}

.footer__col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.footer__col a:hover { color: var(--text-primary); }

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer__bottom a {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.footer__bottom a:hover { color: var(--accent); }

/* ─── Logo SVG ─────────────────────────────────────────────────── */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── Coming soon ──────────────────────────────────────────────── */
.coming-soon-banner {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: default;
}

.coming-soon-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.btn--coming-soon {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: default;
  pointer-events: none;
}

/* ─── Misc helpers ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--accent {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,207,184,0.2);
}

.badge--amber {
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid rgba(246,166,35,0.2);
}

.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav__links { display: none; }
  .nav__cta .btn { padding: 9px 16px; font-size: 0.82rem; }

  .steps::before { display: none; }
  .steps { gap: 32px; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { flex-wrap: wrap; gap: 24px; }

  .callout { flex-direction: column; text-align: center; }
  .callout .btn { width: 100%; justify-content: center; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .compare-table { display: block; overflow-x: auto; }

  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .who-its-for-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}
