/* =====================================================================
 * 220f-tokens.css
 * Site: 7999 bet apk (7999betapk.click) | lang: bn-BD
 * Mobile-first canvas (320-430px); centered phone canvas on wider screens.
 * All custom classes/variables use the "w220f-" prefix per site spec.
 * Palette: #D2691E | #8B7355 | #1E1E1E | #FFF8DC | #FFE4B5
 * Nav direction: tight brand bar / compact route panel / brand accent belt /
 *                monochrome icons w/ accent indicator / label-emphasis active
 *                / soft color transitions.
 * ===================================================================== */

:root {
  --w220f-chocolate: #D2691E;
  --w220f-taupe: #8B7355;
  --w220f-ink: #1E1E1E;
  --w220f-cornsilk: #FFF8DC;
  --w220f-moccasin: #FFE4B5;
  --w220f-bg: #140f0a;
  --w220f-bg-soft: #1f1810;
  --w220f-card: #251c12;
  --w220f-card-2: #2c2114;
  --w220f-line: #3a2c1c;
  --w220f-text: #FFF8DC;
  --w220f-muted: #d8c39a;
  --w220f-faint: #a08a64;
  --w220f-accent: #D2691E;
  --w220f-accent-soft: rgba(210, 105, 30, 0.16);
  --w220f-gold: #e7b04a;
  --w220f-success: #6fae5b;
  --w220f-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
  --w220f-r-sm: 8px;
  --w220f-r-md: 12px;
  --w220f-r-lg: 18px;
  --w220f-r-pill: 999px;
  --w220f-pad: 14px;
  --w220f-max: 480px;
  --w220f-header-h: 56px;
  --w220f-nav-h: 64px;
  --w220f-ease: 240ms cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Shonar Bangla", system-ui, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--w220f-bg);
  color: var(--w220f-text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--w220f-gold); text-decoration: none; transition: color var(--w220f-ease); }
a:hover { color: var(--w220f-accent); }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 8px; line-height: 1.32; font-weight: 700; color: var(--w220f-cornsilk); }
p { margin: 0 0 12px; color: var(--w220f-muted); }
:focus-visible { outline: 2px solid var(--w220f-accent); outline-offset: 2px; border-radius: 4px; }

/* ---- App frame ---------------------------------------------------------- */
.w220f-app {
  max-width: var(--w220f-max);
  margin: 0 auto;
  background: var(--w220f-bg);
  min-height: 100vh;
  position: relative;
  box-shadow: var(--w220f-shadow);
}

/* ---- Compact brand bar (header) ---------------------------------------- */
.w220f-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--w220f-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(180deg, #211810 0%, #160f08 100%);
  border-bottom: 1px solid var(--w220f-line);
}
.w220f-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.w220f-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--w220f-accent);
  display: grid;
  place-items: center;
  color: #1a120a;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .3px;
  box-shadow: 0 0 0 2px rgba(255, 248, 220, .25) inset;
  flex: 0 0 auto;
}
.w220f-brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--w220f-cornsilk);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w220f-brand-name small {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  color: var(--w220f-gold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.w220f-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.w220f-btn {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  border-radius: var(--w220f-r-pill);
  padding: 0 14px;
  height: 34px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #1a120a;
  background: var(--w220f-cornsilk);
  transition: background var(--w220f-ease), color var(--w220f-ease), transform var(--w220f-ease);
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.w220f-btn:hover { background: var(--w220f-moccasin); }
.w220f-btn:active { transform: scale(.96); }
.w220f-btn--primary { background: var(--w220f-accent); color: #fff8dc; }
.w220f-btn--primary:hover { background: #b95712; color: #fff; }
.w220f-btn--ghost { background: transparent; color: var(--w220f-cornsilk); border: 1px solid var(--w220f-line); }
.w220f-btn--ghost:hover { background: rgba(255, 248, 220, .08); color: var(--w220f-moccasin); }
.w220f-btn--block { width: 100%; height: 44px; font-size: 14px; }
.w220f-btn--lg { height: 46px; padding: 0 22px; font-size: 15px; }
.w220f-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--w220f-line);
  background: rgba(255, 248, 220, .05);
  color: var(--w220f-cornsilk);
  display: grid;
  place-items: center;
  transition: background var(--w220f-ease), color var(--w220f-ease);
}
.w220f-icon-btn:hover { background: var(--w220f-accent-soft); color: var(--w220f-moccasin); }
.w220f-icon-btn svg { width: 18px; height: 18px; }

/* ---- Compact route panel (expanded menu) -------------------------------- */
.w220f-route-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 2, .62);
  opacity: 0;
  pointer-events: none;
  z-index: 60;
  transition: opacity var(--w220f-ease);
}
.w220f-route-backdrop--show { opacity: 1; pointer-events: auto; }
.w220f-route-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 84%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(180deg, #1c1409 0%, #120b05 100%);
  z-index: 70;
  transform: translateX(100%);
  transition: transform var(--w220f-ease);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(0, 0, 0, .5);
  overflow-y: auto;
}
.w220f-route-panel--open { transform: translateX(0); }
.w220f-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--w220f-line);
}
.w220f-route-title { font-size: 14px; font-weight: 700; color: var(--w220f-cornsilk); letter-spacing: .4px; }
.w220f-route-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--w220f-line);
  background: transparent;
  color: var(--w220f-cornsilk);
  display: grid; place-items: center;
}
.w220f-route-body { padding: 8px 12px 24px; }
.w220f-route-section { margin-top: 14px; }
.w220f-route-section > h4 {
  font-size: 11px; color: var(--w220f-gold);
  text-transform: uppercase; letter-spacing: 1.4px;
  padding: 0 6px 6px; margin: 0;
}
.w220f-route-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 10px;
  border-radius: 10px;
  color: var(--w220f-text);
  font-size: 13.5px;
  font-weight: 500;
  transition: background var(--w220f-ease), color var(--w220f-ease);
}
.w220f-route-link:hover { background: var(--w220f-accent-soft); color: var(--w220f-moccasin); }
.w220f-route-link .w220f-route-pin {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--w220f-taupe); flex: 0 0 auto;
  transition: background var(--w220f-ease), transform var(--w220f-ease);
}
.w220f-route-link:hover .w220f-route-pin { background: var(--w220f-accent); transform: scale(1.4); }
.w220f-route-promo {
  margin: 14px 6px 0;
  padding: 14px;
  border-radius: var(--w220f-r-md);
  background: linear-gradient(135deg, rgba(210,105,30,.18), rgba(255,228,181,.06));
  border: 1px solid rgba(210,105,30,.35);
}
.w220f-route-promo p { font-size: 12.5px; margin: 0 0 10px; color: var(--w220f-moccasin); }

/* ---- Main wrapper / safe spacing ---------------------------------------- */
.w220f-main { padding-bottom: calc(var(--w220f-nav-h) + 18px); }

/* ---- Section primitives ------------------------------------------------- */
.w220f-section { padding: 22px 14px 8px; }
.w220f-section--tight { padding: 14px; }
.w220f-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--w220f-line);
}
.w220f-section-head h2 {
  font-size: 17px;
  letter-spacing: .2px;
  color: var(--w220f-cornsilk);
}
.w220f-section-head h2 .w220f-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--w220f-gold);
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 600;
}
.w220f-section-link {
  font-size: 12px;
  color: var(--w220f-gold);
  white-space: nowrap;
}
.w220f-section-link:hover { color: var(--w220f-accent); }
.w220f-lead { font-size: 13.5px; color: var(--w220f-muted); }

/* ---- Hero / carousel ---------------------------------------------------- */
.w220f-hero {
  position: relative;
  margin: 12px 14px 0;
  border-radius: var(--w220f-r-lg);
  overflow: hidden;
  border: 1px solid var(--w220f-line);
  background: #0d0805;
}
.w220f-hero-viewport { overflow: hidden; }
.w220f-hero-track {
  display: flex;
  transition: transform 520ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.w220f-hero-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  cursor: pointer;
}
.w220f-hero-slide img {
  width: 100%;
  height: 196px;
  object-fit: cover;
  display: block;
}
.w220f-hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 14px 16px;
  background: linear-gradient(0deg, rgba(8,5,2,.92) 0%, rgba(8,5,2,.5) 60%, transparent 100%);
}
.w220f-hero-overlay .w220f-tag {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--w220f-r-pill);
  background: var(--w220f-accent);
  color: #fff8dc;
  margin-bottom: 6px;
  font-weight: 700;
}
.w220f-hero-overlay h2 {
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--w220f-cornsilk);
}
.w220f-hero-overlay p {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--w220f-moccasin);
}
.w220f-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff8dc;
  background: var(--w220f-accent);
  padding: 6px 14px;
  border-radius: var(--w220f-r-pill);
}
.w220f-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(20,15,10,.7);
  border: 1px solid var(--w220f-line);
  color: var(--w220f-cornsilk);
  display: grid;
  place-items: center;
  z-index: 2;
}
.w220f-hero-arrow:hover { background: var(--w220f-accent); }
.w220f-hero-arrow svg { width: 14px; height: 14px; }
.w220f-hero-prev { left: 8px; }
.w220f-hero-next { right: 8px; }
.w220f-hero-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.w220f-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 248, 220, .35);
  border: 0;
  padding: 0;
  transition: background var(--w220f-ease), width var(--w220f-ease);
}
.w220f-hero-dot--active {
  background: var(--w220f-accent);
  width: 18px;
  border-radius: var(--w220f-r-pill);
}

/* ---- Quick stats -------------------------------------------------------- */
.w220f-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 14px 0;
}
.w220f-stat {
  background: var(--w220f-card);
  border: 1px solid var(--w220f-line);
  border-radius: var(--w220f-r-md);
  padding: 10px 6px;
  text-align: center;
}
.w220f-stat b {
  display: block;
  font-size: 15px;
  color: var(--w220f-gold);
  font-weight: 800;
}
.w220f-stat span {
  display: block;
  font-size: 10px;
  color: var(--w220f-muted);
  margin-top: 2px;
}

/* ---- Category quick chips ---------------------------------------------- */
.w220f-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 14px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.w220f-chips::-webkit-scrollbar { display: none; }
.w220f-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--w220f-r-pill);
  background: var(--w220f-card);
  border: 1px solid var(--w220f-line);
  font-size: 12.5px;
  color: var(--w220f-cornsilk);
  font-weight: 600;
  transition: background var(--w220f-ease), color var(--w220f-ease), border-color var(--w220f-ease);
}
.w220f-chip:hover { background: var(--w220f-accent-soft); color: var(--w220f-moccasin); border-color: var(--w220f-accent); }
.w220f-chip .w220f-chip-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--w220f-accent);
}

/* ---- Category anchor block --------------------------------------------- */
.w220f-cat-block { padding: 22px 14px 6px; scroll-margin-top: 96px; }
.w220f-cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.w220f-cat-badge {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--w220f-accent-soft);
  display: grid; place-items: center;
  color: var(--w220f-moccasin);
  flex: 0 0 auto;
}
.w220f-cat-badge svg { width: 16px; height: 16px; }
.w220f-cat-head h2 { font-size: 16px; margin: 0; color: var(--w220f-cornsilk); }
.w220f-cat-head .w220f-cat-meta {
  font-size: 11px;
  color: var(--w220f-faint);
  margin-top: 2px;
  font-weight: 500;
}

/* ---- Game grid (4 cols at 320, 4-5 at 375+) ---------------------------- */
.w220f-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 8px;
}
@media (min-width: 360px) {
  .w220f-grid { gap: 12px 10px; }
}
@media (min-width: 400px) {
  .w220f-grid { grid-template-columns: repeat(5, 1fr); }
}
.w220f-game {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
  color: inherit;
  transition: transform var(--w220f-ease);
}
.w220f-game:hover { transform: translateY(-2px); }
.w220f-game:active { transform: scale(.96); }
.w220f-game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--w220f-r-md);
  overflow: hidden;
  background: linear-gradient(180deg, var(--w220f-card-2), #1a130a);
  border: 1px solid var(--w220f-line);
}
.w220f-game-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}
.w220f-game:hover .w220f-game-thumb img { transform: scale(1.06); }
.w220f-game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--w220f-r-md);
  box-shadow: inset 0 0 0 0 var(--w220f-accent);
  transition: box-shadow var(--w220f-ease);
  pointer-events: none;
}
.w220f-game:hover .w220f-game-thumb::after { box-shadow: inset 0 0 0 2px var(--w220f-accent); }
.w220f-game-name {
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--w220f-cornsilk);
  line-height: 1.25;
  min-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.w220f-game-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 8.5px;
  padding: 2px 6px;
  border-radius: var(--w220f-r-pill);
  background: rgba(210,105,30,.92);
  color: #fff8dc;
  font-weight: 700;
  letter-spacing: .4px;
}

/* ---- Info / promo cards ------------------------------------------------- */
.w220f-card {
  background: var(--w220f-card);
  border: 1px solid var(--w220f-line);
  border-radius: var(--w220f-r-lg);
  padding: 16px;
  margin: 14px 14px 0;
}
.w220f-card h3 { font-size: 15px; color: var(--w220f-cornsilk); margin-bottom: 6px; }
.w220f-card p { font-size: 13px; margin: 0; }

.w220f-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 14px 0;
}
@media (min-width: 400px) {
  .w220f-grid-2 { grid-template-columns: repeat(3, 1fr); }
}
.w220f-tile {
  background: var(--w220f-card);
  border: 1px solid var(--w220f-line);
  border-radius: var(--w220f-r-md);
  padding: 12px;
  transition: transform var(--w220f-ease), border-color var(--w220f-ease), background var(--w220f-ease);
}
.w220f-tile:hover { transform: translateY(-2px); border-color: var(--w220f-accent); background: var(--w220f-card-2); }
.w220f-tile-ic {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--w220f-accent-soft);
  color: var(--w220f-gold);
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.w220f-tile-ic svg { width: 16px; height: 16px; }
.w220f-tile h4 { font-size: 13.5px; margin: 0 0 4px; color: var(--w220f-cornsilk); }
.w220f-tile p { font-size: 12px; margin: 0; color: var(--w220f-muted); }

/* ---- CTA banner --------------------------------------------------------- */
.w220f-cta {
  margin: 18px 14px 4px;
  border-radius: var(--w220f-r-lg);
  padding: 18px 16px;
  background:
    radial-gradient(circle at 90% 10%, rgba(231,176,74,.25), transparent 55%),
    linear-gradient(135deg, #2a1d0e 0%, #4a2c12 100%);
  border: 1px solid rgba(231,176,74,.32);
  position: relative;
  overflow: hidden;
}
.w220f-cta::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210,105,30,.4), transparent 70%);
}
.w220f-cta-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #1a120a;
  background: var(--w220f-moccasin);
  padding: 3px 10px;
  border-radius: var(--w220f-r-pill);
  margin-bottom: 8px;
  font-weight: 700;
}
.w220f-cta h2 { font-size: 18px; color: var(--w220f-cornsilk); margin: 0 0 6px; }
.w220f-cta p { font-size: 13px; color: var(--w220f-moccasin); margin: 0 0 12px; max-width: 92%; }
.w220f-cta-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---- Comparison list ---------------------------------------------------- */
.w220f-compare {
  margin: 14px 14px 0;
  border: 1px solid var(--w220f-line);
  border-radius: var(--w220f-r-lg);
  overflow: hidden;
  background: var(--w220f-card);
}
.w220f-compare-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--w220f-line);
  font-size: 12.5px;
}
.w220f-compare-row:last-child { border-bottom: 0; }
.w220f-compare-row b { color: var(--w220f-gold); font-weight: 700; font-size: 12.5px; }
.w220f-compare-row span { color: var(--w220f-muted); }

/* ---- Article paragraphs (SEO) ------------------------------------------ */
.w220f-article { padding: 18px 14px 4px; }
.w220f-article h2 { font-size: 16px; margin-top: 18px; }
.w220f-article h3 { font-size: 14px; margin-top: 12px; color: var(--w220f-gold); }
.w220f-article p { font-size: 13.5px; color: var(--w220f-muted); }
.w220f-article a { color: var(--w220f-gold); border-bottom: 1px dashed rgba(231,176,74,.4); }
.w220f-article a:hover { color: var(--w220f-accent); border-bottom-color: var(--w220f-accent); }
.w220f-article ul { list-style: disc; padding-left: 18px; margin: 6px 0 12px; }
.w220f-article ul li { color: var(--w220f-muted); font-size: 13px; margin-bottom: 4px; }

/* ---- Step list --------------------------------------------------------- */
.w220f-steps { margin: 14px 14px 0; display: grid; gap: 10px; }
.w220f-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--w220f-card);
  border: 1px solid var(--w220f-line);
  border-radius: var(--w220f-r-md);
  padding: 12px 14px;
}
.w220f-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--w220f-accent);
  color: #fff8dc;
  display: grid; place-items: center;
  font-weight: 800; font-size: 12px;
}
.w220f-step h4 { font-size: 13.5px; margin: 2px 0 4px; color: var(--w220f-cornsilk); }
.w220f-step p { font-size: 12.5px; margin: 0; color: var(--w220f-muted); }

/* ---- Extended footer / page directory ---------------------------------- */
.w220f-ext {
  margin: 22px 14px 6px;
  border-top: 1px solid var(--w220f-line);
  padding-top: 18px;
}
.w220f-ext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 400px) {
  .w220f-ext-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.w220f-ext-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--w220f-gold);
  margin-bottom: 8px;
}
.w220f-ext-col a {
  display: block;
  font-size: 12.5px;
  color: var(--w220f-muted);
  padding: 5px 0;
  border-bottom: 1px dashed rgba(255,248,220,.06);
  transition: color var(--w220f-ease);
}
.w220f-ext-col a:hover { color: var(--w220f-moccasin); }
.w220f-ext-brand {
  grid-column: 1 / -1;
  padding: 14px;
  border-radius: var(--w220f-r-md);
  background: var(--w220f-card);
  border: 1px solid var(--w220f-line);
}
.w220f-ext-brand h4 { color: var(--w220f-cornsilk); margin-bottom: 6px; }
.w220f-ext-brand p { font-size: 12.5px; margin: 0; color: var(--w220f-muted); }
.w220f-ext-promos {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 4px;
}
@media (min-width: 400px) {
  .w220f-ext-promos { grid-template-columns: repeat(4, 1fr); }
}
.w220f-ext-promo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: var(--w220f-r-md);
  background: var(--w220f-accent-soft);
  border: 1px solid rgba(210,105,30,.32);
  color: var(--w220f-cornsilk);
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  transition: background var(--w220f-ease), transform var(--w220f-ease);
}
.w220f-ext-promo:hover { background: rgba(210,105,30,.28); transform: translateY(-2px); }
.w220f-ext-promo small {
  font-size: 10px; color: var(--w220f-moccasin); font-weight: 500;
}
.w220f-ext-disclaimer {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 12px;
  border-radius: var(--w220f-r-md);
  background: rgba(255,248,220,.04);
  border-left: 3px solid var(--w220f-taupe);
  font-size: 11.5px;
  color: var(--w220f-faint);
}

/* ---- Footer ------------------------------------------------------------ */
.w220f-footer {
  padding: 18px 14px calc(var(--w220f-nav-h) + 22px);
  text-align: center;
  background: #0d0805;
  border-top: 1px solid var(--w220f-line);
  margin-top: 18px;
}
.w220f-footer .w220f-footer-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--w220f-cornsilk);
  margin-bottom: 4px;
}
.w220f-footer p { font-size: 11.5px; color: var(--w220f-faint); margin: 0 0 4px; }
.w220f-footer-copy { font-size: 11px; color: var(--w220f-faint); margin-top: 6px; }

/* ---- Mobile bottom nav (brand accent belt) ----------------------------- */
.w220f-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--w220f-max);
  height: var(--w220f-nav-h);
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(180deg, #1a120a 0%, #100a05 100%);
  border-top: 2px solid var(--w220f-accent);
  box-shadow: 0 -8px 22px rgba(0,0,0,.45);
}
.w220f-nav-item {
  position: relative;
  background: transparent;
  border: 0;
  padding: 6px 2px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--w220f-muted);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--w220f-ease);
}
.w220f-nav-item:hover { color: var(--w220f-moccasin); }
.w220f-nav-item svg {
  width: 20px; height: 20px;
  color: currentColor;
  transition: color var(--w220f-ease), transform var(--w220f-ease);
}
.w220f-nav-item:hover svg { transform: translateY(-1px); }
.w220f-nav-item .w220f-nav-label { letter-spacing: .2px; }
.w220f-nav-item .w220f-nav-indicator {
  position: absolute;
  top: 0;
  width: 18px;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background: transparent;
  transition: background var(--w220f-ease), width var(--w220f-ease);
}
.w220f-nav-item--active {
  color: var(--w220f-cornsilk);
}
.w220f-nav-item--active .w220f-nav-label {
  color: var(--w220f-accent);
  font-weight: 800;
}
.w220f-nav-item--active .w220f-nav-indicator {
  background: var(--w220f-accent);
  width: 26px;
}
.w220f-nav-item--promo svg { color: var(--w220f-gold); }
.w220f-nav-item--promo:hover svg { color: var(--w220f-accent); }

/* ---- Utility ----------------------------------------------------------- */
.w220f-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;
}
.w220f-back-to-top {
  position: fixed;
  right: 14px;
  bottom: calc(var(--w220f-nav-h) + 14px);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--w220f-accent);
  color: #fff8dc;
  display: grid; place-items: center;
  box-shadow: var(--w220f-shadow);
  z-index: 40;
  transition: background var(--w220f-ease), transform var(--w220f-ease);
}
.w220f-back-to-top:hover { background: #b95712; transform: translateY(-2px); }
.w220f-back-to-top svg { width: 18px; height: 18px; }

/* ---- Wide-screen behavior: keep phone canvas --------------------------- */
@media (min-width: 600px) {
  body { background: #06040a; }
  .w220f-app { box-shadow: 0 0 60px rgba(0,0,0,.6); }
  .w220f-nav { border-radius: 0; }
}

/* ---- Reduced motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
