/* ============================================================
 * mmlive basefiles stylesheet
 * Prefix contract: every class and CSS variable uses ui30fc9-.
 * Mobile-first canvas: 320px -> 430px and up stays centered.
 * ============================================================ */

:root {
  /* Brand palette (orchid / slate-blue / dark / burlywood). */
  --ui30fc9-orchid: #DA70D6;
  --ui30fc9-slate: #6A5ACD;
  --ui30fc9-dark: #262626;
  --ui30fc9-burlywood: #DEB887;

  /* Surfaces derived from the four brand colors. */
  --ui30fc9-bg-stage: #1a1a1a;
  --ui30fc9-bg-canvas: #262626;
  --ui30fc9-bg-card: #303030;
  --ui30fc9-bg-card-hi: #363036;
  --ui30fc9-bg-elev: #3a3552;
  --ui30fc9-border: rgba(222, 184, 135, 0.18);
  --ui30fc9-border-strong: rgba(222, 184, 135, 0.38);

  /* Text scale tuned for dark canvas. */
  --ui30fc9-text: #f1e3d0;
  --ui30fc9-text-soft: #c7b39a;
  --ui30fc9-text-mute: #8f8174;
  --ui30fc9-on-orchid: #1d1024;
  --ui30fc9-on-slate: #f3eefc;

  /* State colors for the "motion budget = state color only" rule. */
  --ui30fc9-state-hot: #ff5d8f;
  --ui30fc9-state-cool: #6A5ACD;
  --ui30fc9-state-warn: #ffb454;
  --ui30fc9-state-ok: #6cd3a8;

  /* Spacing and shape primitives, near-right-angle tool feel. */
  --ui30fc9-gap-xs: 4px;
  --ui30fc9-gap-sm: 8px;
  --ui30fc9-gap: 12px;
  --ui30fc9-gap-md: 16px;
  --ui30fc9-gap-lg: 22px;
  --ui30fc9-gap-xl: 32px;
  --ui30fc9-radius-xs: 3px;
  --ui30fc9-radius-sm: 5px;
  --ui30fc9-radius: 8px;
  --ui30fc9-radius-lg: 14px;
  --ui30fc9-tap: 44px;

  --ui30fc9-font-title: "Quicksand", "Nunito", "Segoe UI", system-ui, sans-serif;
  --ui30fc9-font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ui30fc9-header-h: 58px;
  --ui30fc9-bottomnav-h: 64px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--ui30fc9-font-body);
  background: var(--ui30fc9-bg-stage);
  color: var(--ui30fc9-text);
  line-height: 1.55;
  font-size: 15px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

body.ui30fc9-locked { overflow: hidden; }

/* The phone canvas: capped at 430px, centered on wide screens. */
.ui30fc9-canvas {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  background: var(--ui30fc9-bg-canvas);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.55);
}

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

a {
  color: var(--ui30fc9-orchid);
  text-decoration: none;
}
a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ui30fc9-burlywood);
  outline-offset: 2px;
  border-radius: var(--ui30fc9-radius-xs);
}

/* ============================================================
 * Top header: minimal title + action band.
 * ============================================================ */

.ui30fc9-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--ui30fc9-header-h);
  display: flex;
  align-items: center;
  gap: var(--ui30fc9-gap-sm);
  padding: 0 var(--ui30fc9-gap);
  background: linear-gradient(180deg, #2c2630 0%, #262626 100%);
  border-bottom: 1px solid var(--ui30fc9-border);
}

.ui30fc9-brand {
  display: flex;
  align-items: center;
  gap: var(--ui30fc9-gap-sm);
  min-width: 0;
  flex: 1 1 auto;
}

.ui30fc9-brand-img {
  width: 36px;
  height: 36px;
  border-radius: var(--ui30fc9-radius-sm);
  object-fit: cover;
  border: 1px solid var(--ui30fc9-border-strong);
  background: var(--ui30fc9-bg-card);
  flex-shrink: 0;
}

.ui30fc9-brand-name {
  font-family: var(--ui30fc9-font-title);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.4px;
  color: var(--ui30fc9-text);
  margin: 0;
  white-space: nowrap;
}

.ui30fc9-brand-name span { color: var(--ui30fc9-orchid); }

.ui30fc9-actions {
  display: flex;
  align-items: center;
  gap: var(--ui30fc9-gap-xs);
  flex-shrink: 0;
}

.ui30fc9-btn {
  font-family: var(--ui30fc9-font-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--ui30fc9-radius-sm);
  min-height: var(--ui30fc9-tap);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ui30fc9-gap-xs);
  padding: 0 14px;
  font-size: 13.5px;
  transition: background-color .15s ease, color .15s ease, transform .08s ease;
}
.ui30fc9-btn:active { transform: scale(.96); }

.ui30fc9-btn-primary {
  background: var(--ui30fc9-orchid);
  color: var(--ui30fc9-on-orchid);
}
.ui30fc9-btn-primary:hover { background: #e88ee2; }

.ui30fc9-btn-ghost {
  background: transparent;
  color: var(--ui30fc9-text);
  border: 1px solid var(--ui30fc9-border-strong);
}
.ui30fc9-btn-ghost:hover { background: rgba(222, 184, 135, 0.08); color: var(--ui30fc9-burlywood); }

.ui30fc9-menu-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ui30fc9-border);
  color: var(--ui30fc9-text);
  border-radius: var(--ui30fc9-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ui30fc9-menu-btn svg { width: 20px; height: 20px; }
.ui30fc9-menu-btn:hover { color: var(--ui30fc9-orchid); border-color: var(--ui30fc9-orchid); }

/* ============================================================
 * Side drawer menu.
 * ============================================================ */

.ui30fc9-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 50;
}
.ui30fc9-scrim.ui30fc9-scrim-on { opacity: 1; pointer-events: auto; }

.ui30fc9-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(82vw, 320px);
  background: var(--ui30fc9-bg-canvas);
  border-left: 1px solid var(--ui30fc9-border-strong);
  transform: translateX(105%);
  transition: transform .25s ease;
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: var(--ui30fc9-gap-md);
  overflow-y: auto;
}
.ui30fc9-drawer.ui30fc9-drawer-open { transform: translateX(0); }

.ui30fc9-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--ui30fc9-gap-md);
}
.ui30fc9-drawer-title {
  font-family: var(--ui30fc9-font-title);
  font-size: 17px;
  margin: 0;
  color: var(--ui30fc9-text);
}
.ui30fc9-drawer-close {
  background: transparent;
  border: 1px solid var(--ui30fc9-border);
  color: var(--ui30fc9-text);
  width: 36px;
  height: 36px;
  border-radius: var(--ui30fc9-radius-sm);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.ui30fc9-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: var(--ui30fc9-gap-sm);
  margin-bottom: var(--ui30fc9-gap-md);
}
.ui30fc9-drawer-cta .ui30fc9-btn { width: 100%; min-height: 46px; font-size: 14px; }

.ui30fc9-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ui30fc9-drawer-nav a {
  display: flex;
  align-items: center;
  gap: var(--ui30fc9-gap-sm);
  padding: 12px var(--ui30fc9-gap-sm);
  color: var(--ui30fc9-text);
  border-radius: var(--ui30fc9-radius-xs);
  font-size: 14px;
  border-left: 3px solid transparent;
}
.ui30fc9-drawer-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ui30fc9-slate);
}
.ui30fc9-drawer-nav a:hover,
.ui30fc9-drawer-nav a.ui30fc9-nav-active {
  background: var(--ui30fc9-bg-card-hi);
  border-left-color: var(--ui30fc9-orchid);
  text-decoration: none;
}
.ui30fc9-drawer-nav a.ui30fc9-nav-active::before { background: var(--ui30fc9-orchid); }

/* ============================================================
 * Main column and section primitives.
 * ============================================================ */

.ui30fc9-main {
  flex: 1 1 auto;
  padding-bottom: calc(var(--ui30fc9-bottomnav-h) + 18px);
}

.ui30fc9-section {
  padding: var(--ui30fc9-gap-lg) var(--ui30fc9-gap) var(--ui30fc9-gap-md);
}
.ui30fc9-section + .ui30fc9-section { border-top: 1px solid var(--ui30fc9-border); }

.ui30fc9-eyebrow {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ui30fc9-orchid);
  font-weight: 700;
  margin: 0 0 4px;
}

.ui30fc9-h1 {
  font-family: var(--ui30fc9-font-title);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 var(--ui30fc9-gap-sm);
  color: var(--ui30fc9-text);
}
.ui30fc9-h2 {
  font-family: var(--ui30fc9-font-title);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 var(--ui30fc9-gap-sm);
  color: var(--ui30fc9-text);
}
.ui30fc9-h3 {
  font-family: var(--ui30fc9-font-title);
  font-weight: 700;
  font-size: 16px;
  margin: var(--ui30fc9-gap-md) 0 var(--ui30fc9-gap-xs);
  color: var(--ui30fc9-burlywood);
}

.ui30fc9-lead {
  margin: 0 0 var(--ui30fc9-gap);
  color: var(--ui30fc9-text-soft);
  font-size: 14.5px;
}

.ui30fc9-p { margin: 0 0 var(--ui30fc9-gap); color: var(--ui30fc9-text-soft); font-size: 14.5px; }

.ui30fc9-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--ui30fc9-gap-sm);
  margin-bottom: var(--ui30fc9-gap);
}
.ui30fc9-section-head .ui30fc9-h2 { margin: 0; }
.ui30fc9-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--ui30fc9-burlywood);
  background: rgba(222, 184, 135, 0.08);
  border: 1px solid var(--ui30fc9-border);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============================================================
 * Hero carousel.
 * ============================================================ */

.ui30fc9-hero {
  position: relative;
  margin: var(--ui30fc9-gap-md) var(--ui30fc9-gap) 0;
  border-radius: var(--ui30fc9-radius-lg);
  overflow: hidden;
  background: #111;
  border: 1px solid var(--ui30fc9-border);
}

.ui30fc9-slides { position: relative; aspect-ratio: 16 / 9; }
.ui30fc9-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  cursor: pointer;
}
.ui30fc9-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ui30fc9-slide.ui30fc9-slide-active { opacity: 1; }
.ui30fc9-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--ui30fc9-gap-md) var(--ui30fc9-gap) calc(var(--ui30fc9-gap) + 28px);
  background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.25) 70%, transparent 100%);
  color: #fff;
}
.ui30fc9-slide-caption strong {
  display: block;
  font-family: var(--ui30fc9-font-title);
  font-size: 16px;
  margin-bottom: 2px;
}
.ui30fc9-slide-caption span { font-size: 12.5px; color: var(--ui30fc9-burlywood); }

.ui30fc9-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--ui30fc9-border-strong);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}
.ui30fc9-hero-arrow:hover { background: var(--ui30fc9-orchid); color: var(--ui30fc9-on-orchid); }
.ui30fc9-prev { left: 8px; }
.ui30fc9-next { right: 8px; }

.ui30fc9-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 6;
}
.ui30fc9-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}
.ui30fc9-dots button.ui30fc9-dot-active { background: var(--ui30fc9-orchid); transform: scale(1.25); }

/* ============================================================
 * Quick search + game tiles.
 * ============================================================ */

.ui30fc9-search-wrap {
  padding: var(--ui30fc9-gap-md) var(--ui30fc9-gap) 0;
}
.ui30fc9-search {
  width: 100%;
  background: var(--ui30fc9-bg-card);
  border: 1px solid var(--ui30fc9-border);
  color: var(--ui30fc9-text);
  border-radius: var(--ui30fc9-radius);
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
}
.ui30fc9-search::placeholder { color: var(--ui30fc9-text-mute); }

.ui30fc9-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ui30fc9-burlywood);
  letter-spacing: 0.4px;
  margin-bottom: var(--ui30fc9-gap-sm);
}
.ui30fc9-cat-tag::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 3px;
  background: var(--ui30fc9-orchid);
  border-radius: 2px;
}

.ui30fc9-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ui30fc9-gap-sm);
}

.ui30fc9-tile {
  background: var(--ui30fc9-bg-card);
  border: 1px solid var(--ui30fc9-border);
  border-radius: var(--ui30fc9-radius-sm);
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s ease, background-color .15s ease, transform .08s ease;
  min-height: var(--ui30fc9-tap);
  font-family: inherit;
  color: inherit;
}
.ui30fc9-tile:hover {
  border-color: var(--ui30fc9-orchid);
  background: var(--ui30fc9-bg-card-hi);
}
.ui30fc9-tile:active { transform: scale(.96); }
.ui30fc9-tile-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--ui30fc9-radius-xs);
  background: #1c1c1c;
}
.ui30fc9-tile-name {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.25;
  color: var(--ui30fc9-text-soft);
  text-align: center;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 28px;
}
.ui30fc9-tile.ui30fc9-hidden { display: none; }

.ui30fc9-empty { display: none; }
.ui30fc9-empty .ui30fc9-empty-note {
  display: block;
  color: var(--ui30fc9-text-mute);
  font-size: 13px;
  padding: var(--ui30fc9-gap) 0;
}
.ui30fc9-empty .ui30fc9-grid { display: none; }
.ui30fc9-empty .ui30fc9-empty-note { display: block; }

/* Wider phones stretch to 5 columns. */
@media (min-width: 380px) {
  .ui30fc9-grid { grid-template-columns: repeat(5, 1fr); }
}

/* At the 430 canvas edge we keep 5 columns but loosen the gutters. */
@media (min-width: 430px) {
  .ui30fc9-section { padding-left: var(--ui30fc9-gap-md); padding-right: var(--ui30fc9-gap-md); }
  .ui30fc9-hero { margin-left: var(--ui30fc9-gap-md); margin-right: var(--ui30fc9-gap-md); }
}

/* ============================================================
 * Info / feature blocks: fact-first, expand-after rhythm.
 * ============================================================ */

.ui30fc9-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ui30fc9-gap-sm);
  margin: var(--ui30fc9-gap) 0;
}
.ui30fc9-stat {
  background: var(--ui30fc9-bg-card);
  border: 1px solid var(--ui30fc9-border);
  border-left: 3px solid var(--ui30fc9-orchid);
  padding: var(--ui30fc9-gap) var(--ui30fc9-gap-sm);
  border-radius: var(--ui30fc9-radius-xs);
}
.ui30fc9-stat-num {
  font-family: var(--ui30fc9-font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--ui30fc9-burlywood);
  display: block;
}
.ui30fc9-stat-label {
  font-size: 12px;
  color: var(--ui30fc9-text-mute);
  margin-top: 2px;
  display: block;
}

.ui30fc9-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--ui30fc9-gap-sm);
}
.ui30fc9-feature-list li {
  background: var(--ui30fc9-bg-card);
  border: 1px solid var(--ui30fc9-border);
  padding: var(--ui30fc9-gap) var(--ui30fc9-gap-sm) var(--ui30fc9-gap) calc(var(--ui30fc9-gap) + 6px);
  border-radius: var(--ui30fc9-radius-xs);
  position: relative;
}
.ui30fc9-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--ui30fc9-gap);
  bottom: var(--ui30fc9-gap);
  width: 3px;
  background: var(--ui30fc9-slate);
}
.ui30fc9-feature-list strong { color: var(--ui30fc9-text); font-family: var(--ui30fc9-font-title); }
.ui30fc9-feature-list p { margin: 4px 0 0; font-size: 13.5px; color: var(--ui30fc9-text-soft); }

.ui30fc9-faq { display: flex; flex-direction: column; gap: var(--ui30fc9-gap-sm); }
.ui30fc9-faq details {
  background: var(--ui30fc9-bg-card);
  border: 1px solid var(--ui30fc9-border);
  border-radius: var(--ui30fc9-radius-xs);
  padding: var(--ui30fc9-gap-sm) var(--ui30fc9-gap);
  cursor: pointer;
}
.ui30fc9-faq summary {
  font-weight: 700;
  color: var(--ui30fc9-text);
  font-family: var(--ui30fc9-font-title);
  font-size: 14px;
  list-style: none;
  position: relative;
  padding-right: 18px;
}
.ui30fc9-faq summary::-webkit-details-marker { display: none; }
.ui30fc9-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--ui30fc9-orchid);
  font-weight: 700;
}
.ui30fc9-faq details[open] summary::after { content: "−"; }
.ui30fc9-faq details p { margin: 8px 0 0; color: var(--ui30fc9-text-soft); font-size: 13.5px; }

.ui30fc9-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ui30fc9-gap-sm);
}
.ui30fc9-review {
  background: var(--ui30fc9-bg-card);
  border: 1px solid var(--ui30fc9-border);
  border-radius: var(--ui30fc9-radius-xs);
  padding: var(--ui30fc9-gap);
}
.ui30fc9-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.ui30fc9-review-name { font-weight: 700; color: var(--ui30fc9-burlywood); font-size: 13px; }
.ui30fc9-review-stars { color: var(--ui30fc9-orchid); font-size: 12px; letter-spacing: 1px; }
.ui30fc9-review p { margin: 0; color: var(--ui30fc9-text-soft); font-size: 13.5px; }

.ui30fc9-rtp {
  background: linear-gradient(135deg, rgba(106, 90, 205, 0.22), rgba(218, 112, 214, 0.16));
  border: 1px solid var(--ui30fc9-border-strong);
  border-radius: var(--ui30fc9-radius);
  padding: var(--ui30fc9-gap-md);
}
.ui30fc9-rtp-bar {
  height: 10px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  overflow: hidden;
  margin: var(--ui30fc9-gap-sm) 0;
}
.ui30fc9-rtp-fill {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--ui30fc9-slate), var(--ui30fc9-orchid));
}
.ui30fc9-rtp-legend {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--ui30fc9-text-mute);
}

.ui30fc9-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ui30fc9-checklist li {
  padding-left: 24px;
  position: relative;
  font-size: 13.5px;
  color: var(--ui30fc9-text-soft);
}
.ui30fc9-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--ui30fc9-on-orchid);
  background: var(--ui30fc9-orchid);
  border-radius: 50%;
}

.ui30fc9-usecase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ui30fc9-gap-sm);
}
.ui30fc9-usecase-card {
  background: var(--ui30fc9-bg-card);
  border: 1px solid var(--ui30fc9-border);
  border-radius: var(--ui30fc9-radius-xs);
  padding: var(--ui30fc9-gap);
}
.ui30fc9-usecase-card h3 { margin-top: 0; }
.ui30fc9-usecase-card p { margin: 0; font-size: 13.5px; color: var(--ui30fc9-text-soft); }

.ui30fc9-text-link {
  color: var(--ui30fc9-orchid);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ui30fc9-text-link:hover { color: var(--ui30fc9-burlywood); }

/* Inline CTA strip used between content modules. */
.ui30fc9-cta-strip {
  background: var(--ui30fc9-bg-card-hi);
  border: 1px solid var(--ui30fc9-border-strong);
  border-radius: var(--ui30fc9-radius);
  padding: var(--ui30fc9-gap-md);
  display: flex;
  flex-direction: column;
  gap: var(--ui30fc9-gap-sm);
  align-items: flex-start;
}
.ui30fc9-cta-strip p { margin: 0; font-size: 13.5px; color: var(--ui30fc9-text-soft); }
.ui30fc9-cta-strip .ui30fc9-btn { align-self: stretch; }

/* ============================================================
 * Extended footer (home only): compact groups.
 * ============================================================ */

.ui30fc9-ext {
  margin-top: var(--ui30fc9-gap-lg);
  padding: var(--ui30fc9-gap-lg) var(--ui30fc9-gap) var(--ui30fc9-gap-md);
  background: linear-gradient(180deg, #2b2630 0%, #1f1f1f 100%);
  border-top: 1px solid var(--ui30fc9-border);
}
.ui30fc9-ext-group { margin-bottom: var(--ui30fc9-gap-md); }
.ui30fc9-ext-title {
  font-family: var(--ui30fc9-font-title);
  font-size: 14px;
  color: var(--ui30fc9-burlywood);
  margin: 0 0 var(--ui30fc9-gap-sm);
  letter-spacing: 0.4px;
}

.ui30fc9-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ui30fc9-gap-sm);
}
.ui30fc9-promo-card {
  background: var(--ui30fc9-bg-card);
  border: 1px solid var(--ui30fc9-border);
  border-radius: var(--ui30fc9-radius-sm);
  padding: var(--ui30fc9-gap);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: border-color .15s ease, transform .08s ease;
}
.ui30fc9-promo-card:hover { border-color: var(--ui30fc9-orchid); }
.ui30fc9-promo-card:active { transform: scale(.97); }
.ui30fc9-promo-card strong {
  font-family: var(--ui30fc9-font-title);
  font-size: 13.5px;
  color: var(--ui30fc9-text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ui30fc9-promo-card span { font-size: 12px; color: var(--ui30fc9-text-soft); }
.ui30fc9-promo-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--ui30fc9-radius-xs);
  background: var(--ui30fc9-orchid);
  color: var(--ui30fc9-on-orchid);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.ui30fc9-brand-blurb {
  font-size: 13px;
  color: var(--ui30fc9-text-soft);
  margin: 0;
  line-height: 1.6;
}

.ui30fc9-directory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ui30fc9-directory li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
}
.ui30fc9-directory a { color: var(--ui30fc9-text-soft); }
.ui30fc9-directory a:hover { color: var(--ui30fc9-orchid); }
.ui30fc9-directory small { color: var(--ui30fc9-text-mute); font-size: 11px; margin-left: auto; }

.ui30fc9-disclaimer {
  font-size: 11.5px;
  color: var(--ui30fc9-text-mute);
  line-height: 1.55;
  border-top: 1px dashed var(--ui30fc9-border);
  padding-top: var(--ui30fc9-gap-sm);
  margin-top: var(--ui30fc9-gap-sm);
}

/* ============================================================
 * Common footer + bottom navigation rail.
 * ============================================================ */

.ui30fc9-footer {
  background: #181818;
  border-top: 1px solid var(--ui30fc9-border);
  padding: var(--ui30fc9-gap-md) var(--ui30fc9-gap) calc(var(--ui30fc9-bottomnav-h) + var(--ui30fc9-gap-md));
  text-align: center;
}
.ui30fc9-footer small { color: var(--ui30fc9-text-mute); font-size: 11.5px; line-height: 1.6; display: block; }

.ui30fc9-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--ui30fc9-bottomnav-h);
  background: rgba(24, 24, 24, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--ui30fc9-border-strong);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 45;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.ui30fc9-navlink {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--ui30fc9-text-mute);
  font-size: 10.5px;
  text-decoration: none;
  padding: 6px 2px 4px;
  position: relative;
  transition: color .15s ease, background-color .15s ease, transform .08s ease;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  min-height: var(--ui30fc9-tap);
}
.ui30fc9-navlink svg { width: 22px; height: 22px; }
.ui30fc9-navlink span { line-height: 1; font-weight: 600; }
.ui30fc9-navlink:hover { color: var(--ui30fc9-burlywood); text-decoration: none; }
.ui30fc9-navlink:active { transform: scale(.92); }
.ui30fc9-navlink.ui30fc9-nav-active {
  color: var(--ui30fc9-on-orchid);
  background: var(--ui30fc9-orchid);
  border-radius: var(--ui30fc9-radius-sm) var(--ui30fc9-radius-sm) 0 0;
}
.ui30fc9-navlink.ui30fc9-nav-promo {
  color: var(--ui30fc9-orchid);
}
.ui30fc9-navlink.ui30fc9-nav-promo::after {
  content: "";
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ui30fc9-state-hot);
}

/* ============================================================
 * Utility helpers.
 * ============================================================ */

.ui30fc9-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ui30fc9-gap-sm);
  align-items: center;
}
.ui30fc9-mt { margin-top: var(--ui30fc9-gap); }
.ui30fc9-mt-lg { margin-top: var(--ui30fc9-gap-lg); }
.ui30fc9-muted { color: var(--ui30fc9-text-mute); }
.ui30fc9-tight { font-size: 13px; line-height: 1.5; }

.ui30fc9-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
