/* ============================================================
   bxb bet · compact-dee486-canvas.css
   Mobile-first canvas for the bxb bet club platform.
   Palette: #CC99FF #C0C0C0 #DA70D6 #333333 #FFFACD #FF8C00
   Class prefix: c486de-
   ============================================================ */

:root {
  --c486de-bg: #333333;
  --c486de-bg-deep: #232327;
  --c486de-bg-soft: #3c3c44;
  --c486de-surface: #3a3a42;
  --c486de-surface-2: #44444d;
  --c486de-surface-3: #50505a;
  --c486de-border: rgba(192, 192, 192, 0.16);
  --c486de-border-strong: rgba(204, 153, 255, 0.42);
  --c486de-text: #FFFACD;
  --c486de-text-soft: #F2E8B8;
  --c486de-text-muted: #C0C0C0;
  --c486de-purple: #CC99FF;
  --c486de-orchid: #DA70D6;
  --c486de-orange: #FF8C00;
  --c486de-orange-deep: #d97400;
  --c486de-mono: "SFMono-Regular", ui-monospace, "JetBrains Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  --c486de-body-font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --c486de-radius: 8px;
  --c486de-radius-lg: 12px;
  --c486de-canvas-max: 430px;
  --c486de-header-h: 116px;
  --c486de-bottom-h: 74px;
  --c486de-shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.32);
  --c486de-shadow-pop: 0 14px 38px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

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

html, body {
  margin: 0;
  padding: 0;
  background: #16161a;
  color: var(--c486de-text);
  font-family: var(--c486de-body-font);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(204, 153, 255, 0.16), transparent 42%),
    radial-gradient(circle at 90% 18%, rgba(218, 112, 214, 0.14), transparent 46%),
    radial-gradient(circle at 60% 95%, rgba(255, 140, 0, 0.10), transparent 50%),
    #16161a;
  z-index: -1;
}

a { color: var(--c486de-purple); text-decoration: none; }
a:focus-visible { outline: 2px solid var(--c486de-orange); outline-offset: 2px; border-radius: 4px; }

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

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

h1, h2, h3, h4, p { margin: 0; }

/* ---------- Skip link ---------- */
.c486de-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c486de-orange);
  color: #1a1a1a;
  padding: 10px 16px;
  border-radius: 0 0 var(--c486de-radius) 0;
  z-index: 200;
  font-weight: 700;
}
.c486de-skip:focus { left: 0; }

/* ---------- Mobile canvas ---------- */
.c486de-canvas {
  max-width: var(--c486de-canvas-max);
  margin: 0 auto;
  background: var(--c486de-bg);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

/* ============================================================
   Top header — brand + action dual row, compact route panel
   ============================================================ */
.c486de-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(180deg, rgba(58, 58, 66, 0.96), rgba(51, 51, 51, 0.96));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c486de-border);
}

.c486de-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 6px;
  gap: 10px;
}

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

.c486de-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  background: #1c1c20;
  border: 1px solid var(--c486de-border-strong);
  box-shadow: 0 0 0 3px rgba(204, 153, 255, 0.10);
  flex-shrink: 0;
}

.c486de-brand-name {
  font-family: var(--c486de-mono);
  font-size: 19px;
  letter-spacing: 1.2px;
  color: var(--c486de-text);
  line-height: 1;
}
.c486de-brand-name strong {
  color: var(--c486de-orange);
  font-weight: 700;
}

.c486de-menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--c486de-border);
  background: var(--c486de-surface-2);
  color: var(--c486de-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.c486de-menu-toggle:hover { background: var(--c486de-surface-3); border-color: var(--c486de-border-strong); }
.c486de-menu-toggle-bars {
  width: 18px;
  height: 14px;
  position: relative;
}
.c486de-menu-toggle-bars::before,
.c486de-menu-toggle-bars::after,
.c486de-menu-toggle-bars span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c486de-text);
  border-radius: 2px;
}
.c486de-menu-toggle-bars::before { top: 0; }
.c486de-menu-toggle-bars span { top: 6px; }
.c486de-menu-toggle-bars::after { top: 12px; }

.c486de-action-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8px;
  padding: 0 14px 10px;
}

.c486de-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--c486de-radius);
  font-family: var(--c486de-mono);
  font-size: 13.5px;
  letter-spacing: 0.6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.18s ease;
  background: transparent;
  color: var(--c486de-text);
  text-align: center;
}
.c486de-btn:active { transform: translateY(1px); }

.c486de-btn--register {
  background: linear-gradient(135deg, var(--c486de-orange), var(--c486de-orange-deep));
  color: #1a1206;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(255, 140, 0, 0.32);
}
.c486de-btn--register:hover { filter: brightness(1.08); }

.c486de-btn--login {
  background: transparent;
  color: var(--c486de-purple);
  border-color: var(--c486de-purple);
}
.c486de-btn--login:hover { background: rgba(204, 153, 255, 0.12); }

.c486de-btn--ghost {
  background: var(--c486de-surface-2);
  color: var(--c486de-text);
  border-color: var(--c486de-border);
}
.c486de-btn--ghost:hover { background: var(--c486de-surface-3); }

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

/* ---------- Compact route panel ---------- */
.c486de-route-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 8px;
  right: 8px;
  background: var(--c486de-bg-deep);
  border: 1px solid var(--c486de-border-strong);
  border-radius: var(--c486de-radius-lg);
  padding: 10px;
  box-shadow: var(--c486de-shadow-pop);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 90;
}
.c486de-route-panel--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.c486de-route-panel-h {
  font-family: var(--c486de-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--c486de-text-muted);
  padding: 4px 8px 8px;
  border-bottom: 1px dashed var(--c486de-border);
  margin-bottom: 6px;
}
.c486de-route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.c486de-route-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: var(--c486de-radius);
  color: var(--c486de-text-soft);
  font-size: 13.5px;
  transition: background 0.22s ease, color 0.22s ease;
}
.c486de-route-link:hover { background: var(--c486de-surface-2); color: var(--c486de-text); }
.c486de-route-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c486de-orchid);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(218, 112, 214, 0.7);
}
.c486de-route-dot--alt { background: var(--c486de-orange); box-shadow: 0 0 6px rgba(255, 140, 0, 0.7); }

/* ============================================================
   Main container
   ============================================================ */
.c486de-main {
  padding-bottom: calc(var(--c486de-bottom-h) + 24px);
}

/* ============================================================
   Hero carousel
   ============================================================ */
.c486de-carousel {
  position: relative;
  margin: 12px 12px 4px;
  border-radius: var(--c486de-radius-lg);
  overflow: hidden;
  border: 1px solid var(--c486de-border);
  background: #1c1c22;
  box-shadow: var(--c486de-shadow-soft);
}
.c486de-carousel-track {
  position: relative;
  aspect-ratio: 16 / 9;
}
.c486de-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.c486de-carousel-slide--active { opacity: 1; }
.c486de-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c486de-carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 18, 30, 0) 30%, rgba(22, 18, 30, 0.78) 100%);
}
.c486de-carousel-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color: var(--c486de-text);
}
.c486de-carousel-eyebrow {
  display: inline-block;
  font-family: var(--c486de-mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #1a1206;
  background: var(--c486de-orange);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-weight: 700;
}
.c486de-carousel-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.c486de-carousel-sub {
  font-size: 12.5px;
  color: var(--c486de-text-soft);
  margin-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.c486de-carousel-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c486de-purple);
  color: #1a1206;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--c486de-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  cursor: pointer;
  border: none;
}
.c486de-carousel-cta:hover { background: var(--c486de-orchid); color: var(--c486de-text); }

.c486de-carousel-dots {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.c486de-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 250, 205, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}
.c486de-carousel-dot--active {
  background: var(--c486de-orange);
  transform: scale(1.25);
}

.c486de-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(22, 18, 30, 0.55);
  border: 1px solid var(--c486de-border);
  color: var(--c486de-text);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.22s ease;
}
.c486de-carousel-arrow:hover { background: rgba(22, 18, 30, 0.85); }
.c486de-carousel-arrow--prev { left: 8px; }
.c486de-carousel-arrow--next { right: 8px; }

/* ============================================================
   Quick promo strip
   ============================================================ */
.c486de-quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 12px 4px;
}
.c486de-quick-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: var(--c486de-radius);
  background: var(--c486de-surface);
  border: 1px solid var(--c486de-border);
  color: var(--c486de-text);
  text-align: center;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.c486de-quick-chip:hover { background: var(--c486de-surface-2); border-color: var(--c486de-border-strong); }
.c486de-quick-chip-glyph {
  font-family: var(--c486de-mono);
  font-size: 16px;
  color: var(--c486de-orange);
  line-height: 1;
}
.c486de-quick-chip-label {
  font-size: 11px;
  letter-spacing: 0.4px;
  color: var(--c486de-text-soft);
}

/* ============================================================
   Generic section frame
   ============================================================ */
.c486de-section {
  margin: 22px 12px 4px;
}
.c486de-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c486de-border);
}
.c486de-section-head-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.c486de-section-eyebrow {
  font-family: var(--c486de-mono);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--c486de-orange);
}
.c486de-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--c486de-text);
  line-height: 1.25;
}
.c486de-section-more {
  font-size: 12px;
  color: var(--c486de-purple);
  white-space: nowrap;
  font-family: var(--c486de-mono);
}
.c486de-section-intro {
  margin: -4px 0 14px;
  font-size: 13.5px;
  color: var(--c486de-text-muted);
  line-height: 1.6;
}

/* ============================================================
   Category anchor strip (sticky, in-page nav)
   ============================================================ */
.c486de-cat-bar {
  position: sticky;
  top: var(--c486de-header-h);
  z-index: 50;
  margin: 12px 0 0;
  padding: 8px 12px;
  background: linear-gradient(180deg, rgba(35, 35, 39, 0.96), rgba(35, 35, 39, 0.92));
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--c486de-border);
  border-bottom: 1px solid var(--c486de-border);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.c486de-cat-bar::-webkit-scrollbar { display: none; }
.c486de-cat-link {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--c486de-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--c486de-text-soft);
  background: var(--c486de-surface-2);
  border: 1px solid var(--c486de-border);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.c486de-cat-link:hover { color: var(--c486de-text); border-color: var(--c486de-border-strong); }

/* ============================================================
   Game grid + grouped cover cards
   ============================================================ */
.c486de-game-block {
  margin: 18px 0 4px;
  scroll-margin-top: calc(var(--c486de-header-h) + 60px);
}
.c486de-game-block-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  margin-bottom: 10px;
}
.c486de-game-block-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--c486de-text);
}
.c486de-game-block-tag {
  font-family: var(--c486de-mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #1a1206;
  background: var(--c486de-orange);
  padding: 2px 7px;
  border-radius: 999px;
}
.c486de-game-block-tag--purple { background: var(--c486de-purple); color: #1a1206; }
.c486de-game-block-tag--orchid { background: var(--c486de-orchid); color: #1a1206; }
.c486de-game-block-count {
  font-size: 11.5px;
  color: var(--c486de-text-muted);
  font-family: var(--c486de-mono);
}

.c486de-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 12px;
}
@media (min-width: 360px) {
  .c486de-game-grid { gap: 10px; }
}
@media (min-width: 395px) {
  .c486de-game-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

.c486de-game-card {
  background: var(--c486de-surface);
  border: 1px solid var(--c486de-border);
  border-radius: var(--c486de-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.22s ease, background 0.22s ease;
}
.c486de-game-card:hover {
  transform: translateY(-2px);
  border-color: var(--c486de-border-strong);
  background: var(--c486de-surface-2);
}
.c486de-game-card:active { transform: translateY(0); }

.c486de-game-card-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #1c1c22;
  overflow: hidden;
}
.c486de-game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.c486de-game-card:hover .c486de-game-card-img { transform: scale(1.04); }
.c486de-game-card-name {
  padding: 6px 6px 7px;
  font-size: 11px;
  line-height: 1.25;
  color: var(--c486de-text);
  text-align: center;
  letter-spacing: 0.2px;
  word-break: break-word;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--c486de-mono);
}
.c486de-game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(204, 153, 255, 0.18));
  pointer-events: none;
}

/* ============================================================
   Info modules
   ============================================================ */
.c486de-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 395px) {
  .c486de-info-grid { grid-template-columns: 1fr 1fr; }
}
.c486de-info-card {
  background: var(--c486de-surface);
  border: 1px solid var(--c486de-border);
  border-left: 3px solid var(--c486de-purple);
  border-radius: var(--c486de-radius);
  padding: 14px 14px 16px;
}
.c486de-info-card--orange { border-left-color: var(--c486de-orange); }
.c486de-info-card--orchid { border-left-color: var(--c486de-orchid); }
.c486de-info-card-h {
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--c486de-text);
}
.c486de-info-card-body {
  font-size: 13.5px;
  color: var(--c486de-text-soft);
  line-height: 1.62;
}
.c486de-info-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.c486de-info-card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--c486de-text-soft);
  line-height: 1.55;
}
.c486de-info-card-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--c486de-mono);
  color: var(--c486de-orange);
  font-weight: 700;
}

/* ---------- Step list ---------- */
.c486de-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c486de-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 12px;
  background: var(--c486de-surface);
  border: 1px solid var(--c486de-border);
  border-radius: var(--c486de-radius);
}
.c486de-step-num {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c486de-orange), var(--c486de-orange-deep));
  color: #1a1206;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--c486de-mono);
  font-weight: 800;
  font-size: 14px;
}
.c486de-step-body h4 {
  font-size: 14px;
  color: var(--c486de-text);
  margin-bottom: 4px;
}
.c486de-step-body p {
  font-size: 13px;
  color: var(--c486de-text-muted);
  line-height: 1.55;
}

/* ---------- Inline link ---------- */
.c486de-inline-link {
  color: var(--c486de-orchid);
  border-bottom: 1px dashed rgba(218, 112, 214, 0.55);
}
.c486de-inline-link:hover { color: var(--c486de-purple); border-bottom-color: var(--c486de-purple); }

/* ---------- Payment chips ---------- */
.c486de-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.c486de-pay-chip {
  background: var(--c486de-surface);
  border: 1px solid var(--c486de-border);
  border-radius: var(--c486de-radius);
  padding: 10px 6px;
  text-align: center;
  font-family: var(--c486de-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--c486de-text-soft);
}
.c486de-pay-chip strong {
  display: block;
  color: var(--c486de-orange);
  font-size: 11px;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

/* ---------- Testimonials ---------- */
.c486de-testimonials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c486de-testimonial {
  background: var(--c486de-surface);
  border: 1px solid var(--c486de-border);
  border-radius: var(--c486de-radius);
  padding: 12px 14px;
  position: relative;
}
.c486de-testimonial-quote {
  font-size: 13.5px;
  color: var(--c486de-text-soft);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.c486de-testimonial-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 24px;
  color: var(--c486de-orange);
  font-family: var(--c486de-mono);
  line-height: 1;
}
.c486de-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--c486de-mono);
  font-size: 11.5px;
  color: var(--c486de-text-muted);
}
.c486de-testimonial-meta strong { color: var(--c486de-purple); }

/* ---------- FAQ ---------- */
.c486de-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c486de-faq-item {
  background: var(--c486de-surface);
  border: 1px solid var(--c486de-border);
  border-radius: var(--c486de-radius);
  padding: 12px 14px;
}
.c486de-faq-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--c486de-text);
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
}
.c486de-faq-q::before {
  content: "Q";
  font-family: var(--c486de-mono);
  color: var(--c486de-orange);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.c486de-faq-a {
  font-size: 13px;
  color: var(--c486de-text-muted);
  line-height: 1.6;
  padding-left: 18px;
}

/* ---------- CTA band ---------- */
.c486de-cta-band {
  margin: 18px 12px 4px;
  background: linear-gradient(135deg, rgba(204, 153, 255, 0.18), rgba(255, 140, 0, 0.16));
  border: 1px solid var(--c486de-border-strong);
  border-radius: var(--c486de-radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c486de-cta-band-h {
  font-size: 16px;
  font-weight: 800;
  color: var(--c486de-text);
}
.c486de-cta-band-text {
  font-size: 13px;
  color: var(--c486de-text-soft);
  line-height: 1.55;
}
.c486de-cta-band-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ---------- Note block ---------- */
.c486de-note {
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.35);
  border-radius: var(--c486de-radius);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--c486de-text-soft);
  line-height: 1.6;
  margin-top: 10px;
}
.c486de-note strong { color: var(--c486de-orange); }

/* ---------- Definition list ---------- */
.c486de-def-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c486de-def-item {
  background: var(--c486de-surface);
  border: 1px solid var(--c486de-border);
  border-radius: var(--c486de-radius);
  padding: 12px 14px;
}
.c486de-def-term {
  font-family: var(--c486de-mono);
  font-size: 12px;
  letter-spacing: 0.8px;
  color: var(--c486de-orange);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.c486de-def-desc {
  font-size: 13.5px;
  color: var(--c486de-text-soft);
  line-height: 1.6;
}

/* ============================================================
   Extended site footer (homepage only)
   ============================================================ */
.c486de-ext-footer {
  margin: 28px 12px 4px;
  background: var(--c486de-bg-deep);
  border: 1px solid var(--c486de-border);
  border-radius: var(--c486de-radius-lg);
  padding: 16px;
}
.c486de-ext-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--c486de-border);
}
.c486de-ext-footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1c1c20;
}
.c486de-ext-footer-brand-text {
  font-family: var(--c486de-mono);
  font-size: 14px;
  color: var(--c486de-text);
  letter-spacing: 0.8px;
}
.c486de-ext-footer-brand-text strong { color: var(--c486de-orange); }
.c486de-ext-footer-brand-text span {
  display: block;
  font-family: var(--c486de-body-font);
  font-size: 11.5px;
  color: var(--c486de-text-muted);
  letter-spacing: 0;
  margin-top: 2px;
}

.c486de-ext-footer-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.c486de-ext-footer-promo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--c486de-radius);
  background: var(--c486de-surface);
  border: 1px solid var(--c486de-border);
  color: var(--c486de-text);
  font-size: 12.5px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.c486de-ext-footer-promo:hover { background: var(--c486de-surface-2); border-color: var(--c486de-border-strong); }
.c486de-ext-footer-promo-num {
  font-family: var(--c486de-mono);
  font-size: 11px;
  color: #1a1206;
  background: var(--c486de-orange);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.c486de-ext-footer-promo--featured {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.16), rgba(204, 153, 255, 0.12));
  border-color: var(--c486de-orange);
  grid-column: span 2;
}

.c486de-ext-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.c486de-ext-footer-col h4 {
  font-family: var(--c486de-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--c486de-text-muted);
  margin-bottom: 8px;
}
.c486de-ext-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c486de-ext-footer-col a {
  font-size: 12.5px;
  color: var(--c486de-text-soft);
  line-height: 1.45;
}
.c486de-ext-footer-col a:hover { color: var(--c486de-purple); }

.c486de-ext-footer-disclaimer {
  border-top: 1px dashed var(--c486de-border);
  padding-top: 12px;
  font-size: 11.5px;
  color: var(--c486de-text-muted);
  line-height: 1.55;
}

.c486de-copyright {
  text-align: center;
  font-family: var(--c486de-mono);
  font-size: 11px;
  letter-spacing: 0.6px;
  color: var(--c486de-text-muted);
  padding: 14px 16px 6px;
}

/* ============================================================
   Bottom nav — center-raised, 5 roles
   ============================================================ */
.c486de-bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--c486de-canvas-max);
  height: var(--c486de-bottom-h);
  background: linear-gradient(180deg, rgba(35, 35, 39, 0.98), rgba(28, 28, 32, 0.99));
  border-top: 1px solid var(--c486de-border-strong);
  z-index: 70;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 4px 8px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.45);
}
.c486de-bottom-nav-list {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c486de-bottom-nav-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.c486de-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  width: 100%;
  min-height: 44px;
  padding: 6px 4px 4px;
  background: transparent;
  border: none;
  color: var(--c486de-text-muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.22s ease;
}
.c486de-bottom-nav-btn:hover { color: var(--c486de-text); }
.c486de-bottom-nav-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.c486de-bottom-nav-icon svg { width: 22px; height: 22px; display: block; }
.c486de-bottom-nav-label {
  font-family: var(--c486de-mono);
  font-size: 10.5px;
  letter-spacing: 0.4px;
  line-height: 1;
}

/* Raised center promo button */
.c486de-bottom-nav-item--raised {
  align-items: flex-end;
}
.c486de-bottom-nav-item--raised .c486de-bottom-nav-btn {
  position: relative;
  margin-top: -22px;
}
.c486de-bottom-nav-raised-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c486de-orange), var(--c486de-orange-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(255, 140, 0, 0.45), 0 0 0 4px rgba(255, 140, 0, 0.18);
  color: #1a1206;
  border: 2px solid #1c1c20;
}
.c486de-bottom-nav-raised-circle svg { width: 24px; height: 24px; }
.c486de-bottom-nav-item--raised .c486de-bottom-nav-label {
  color: var(--c486de-orange);
  font-weight: 700;
}

/* Active state */
.c486de-bottom-nav-btn--active,
.c486de-bottom-nav-btn[aria-current="page"] {
  color: var(--c486de-purple);
}
.c486de-bottom-nav-btn--active .c486de-bottom-nav-label {
  color: var(--c486de-purple);
}

/* Prominent second promo (sits next to center, slightly tinted) */
.c486de-bottom-nav-btn--promo { color: var(--c486de-orchid); }
.c486de-bottom-nav-btn--promo:hover { color: var(--c486de-purple); }

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

.c486de-fade-in {
  animation: c486deFadeIn 0.5s ease both;
}
@keyframes c486deFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Wide screens keep the mobile canvas centered */
@media (min-width: 480px) {
  .c486de-bottom-nav { box-shadow: 0 -6px 24px rgba(0,0,0,0.45), 0 0 60px rgba(0,0,0,0.55); }
}
