/* ============================================================
   2025.homes — viewbc800- mobile-first viewport stylesheet
   Design language: compact premium slate card system
   Accent stack: gold (CTA) + royal blue (interactive) + mint (fresh)
   Canvas: stable 320-430px phone frame, no horizontal scroll
   ============================================================ */

:root {
  --viewbc800-slate: #34495E;
  --viewbc800-slate-deep: #243240;
  --viewbc800-slate-soft: #3d5167;
  --viewbc800-slate-mist: #4a617b;
  --viewbc800-mint: #9AFF9A;
  --viewbc800-mint-deep: #5fd175;
  --viewbc800-blue: #4169E1;
  --viewbc800-blue-deep: #2f51b8;
  --viewbc800-yellow: #FFF176;
  --viewbc800-gold: #FFBF00;
  --viewbc800-gold-soft: #e0a800;
  --viewbc800-ink: #0f1722;
  --viewbc800-ink-soft: #28323f;
  --viewbc800-paper: #f5f8fc;
  --viewbc800-mist: #e9eff6;
  --viewbc800-cloud: #dfe7f0;
  --viewbc800-line: rgba(154, 255, 154, 0.16);
  --viewbc800-line-strong: rgba(154, 255, 154, 0.32);
  --viewbc800-shadow-sm: 0 4px 10px rgba(15, 23, 34, 0.18);
  --viewbc800-shadow-md: 0 10px 22px rgba(15, 23, 34, 0.24);
  --viewbc800-shadow-lg: 0 18px 38px rgba(15, 23, 34, 0.34);
  --viewbc800-radius-xl: 22px;
  --viewbc800-radius-lg: 16px;
  --viewbc800-radius-md: 12px;
  --viewbc800-radius-sm: 8px;
  --viewbc800-header-h: 58px;
  --viewbc800-bottomnav-h: 66px;
  --viewbc800-canvas: 430px;
  --viewbc800-font: "Segoe UI", "Helvetica Neue", "Roboto", "Arial", system-ui, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--viewbc800-font);
  color: var(--viewbc800-ink);
  background: #1a242f;
  background-image:
    radial-gradient(900px 500px at 80% -8%, rgba(65, 105, 225, 0.22), transparent 60%),
    radial-gradient(700px 420px at -10% 12%, rgba(255, 191, 0, 0.14), transparent 60%),
    linear-gradient(180deg, #1f2a37 0%, #18222e 60%, #141d28 100%);
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--viewbc800-blue);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

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

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

h1, h2, h3, h4 { margin: 0; line-height: 1.3; font-weight: 700; }

p { margin: 0 0 10px; }

/* ---------- phone canvas ---------- */
.viewbc800-canvas {
  position: relative;
  max-width: var(--viewbc800-canvas);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, #1f2a37 0%, #18222e 100%);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.viewbc800-page {
  padding-bottom: calc(var(--viewbc800-bottomnav-h) + 22px);
}

/* ---------- top brand bar ---------- */
.viewbc800-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--viewbc800-header-h);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: linear-gradient(180deg, rgba(36, 50, 64, 0.96), rgba(31, 42, 55, 0.96));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--viewbc800-line);
}

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

.viewbc800-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.35);
  flex-shrink: 0;
}

.viewbc800-brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }

.viewbc800-brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
}

.viewbc800-brand-name span { color: var(--viewbc800-gold); }

.viewbc800-brand-tag {
  font-size: 10px;
  color: var(--viewbc800-mint);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.viewbc800-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.viewbc800-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  text-decoration: none;
  white-space: nowrap;
}

.viewbc800-btn:hover { text-decoration: none; transform: translateY(-1px); }

.viewbc800-btn:active { transform: translateY(0) scale(0.98); }

.viewbc800-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(154, 255, 154, 0.28);
}

.viewbc800-btn--gold {
  background: linear-gradient(135deg, #FFD24a 0%, var(--viewbc800-gold) 55%, var(--viewbc800-gold-soft) 100%);
  color: #2a1d00;
  box-shadow: 0 8px 18px rgba(255, 191, 0, 0.32);
}

.viewbc800-btn--blue {
  background: linear-gradient(135deg, #5a82f0 0%, var(--viewbc800-blue) 60%, var(--viewbc800-blue-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(65, 105, 225, 0.32);
}

.viewbc800-btn--block { width: 100%; padding: 0 14px; }

.viewbc800-menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--viewbc800-line);
  color: #fff;
}

.viewbc800-menu-toggle:hover { background: rgba(154, 255, 154, 0.16); }

.viewbc800-menu-toggle svg { width: 20px; height: 20px; }

/* ---------- slide-down route panel ---------- */
.viewbc800-route-panel {
  position: absolute;
  top: var(--viewbc800-header-h);
  left: 0;
  right: 0;
  z-index: 39;
  background: linear-gradient(180deg, rgba(28, 39, 52, 0.98), rgba(22, 32, 43, 0.98));
  border-bottom: 1px solid var(--viewbc800-line);
  padding: 14px 14px 18px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.viewbc800-route-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.viewbc800-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.viewbc800-route-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--viewbc800-line);
  border-radius: var(--viewbc800-radius-md);
  color: #fff;
  text-align: center;
  min-height: 44px;
  justify-content: center;
}

.viewbc800-route-item .viewbc800-route-ico { font-size: 18px; color: var(--viewbc800-mint); }
.viewbc800-route-item .viewbc800-route-label { font-size: 12px; font-weight: 600; }
.viewbc800-route-item:hover { background: rgba(65, 105, 225, 0.22); text-decoration: none; }

/* ---------- hero / carousel ---------- */
.viewbc800-hero {
  padding: 14px;
}

.viewbc800-hero-card {
  position: relative;
  border-radius: var(--viewbc800-radius-xl);
  overflow: hidden;
  box-shadow: var(--viewbc800-shadow-md);
  background: var(--viewbc800-slate-deep);
}

.viewbc800-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--viewbc800-radius-xl);
}

.viewbc800-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.viewbc800-slide {
  flex: 0 0 100%;
  position: relative;
}

.viewbc800-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(1.05);
}

.viewbc800-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 34, 0) 35%, rgba(15, 23, 34, 0.82) 100%);
}

.viewbc800-slide-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #fff;
}

.viewbc800-slide-caption h2 {
  font-size: 18px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.viewbc800-slide-caption p {
  margin: 4px 0 10px;
  font-size: 12px;
  color: var(--viewbc800-mist);
}

.viewbc800-carousel-dots {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 3;
}

.viewbc800-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.2s ease, width 0.2s ease;
}

.viewbc800-dot.is-active {
  background: var(--viewbc800-gold);
  width: 18px;
  border-radius: 6px;
}

.viewbc800-hero-cta {
  display: flex;
  gap: 10px;
  padding: 14px 16px 16px;
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.22), rgba(255, 191, 0, 0.12));
  border-top: 1px solid var(--viewbc800-line);
}

/* ---------- promo strip ---------- */
.viewbc800-promo-strip {
  margin: 4px 14px 14px;
  padding: 12px 14px;
  border-radius: var(--viewbc800-radius-md);
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.14), rgba(65, 105, 225, 0.14));
  border: 1px solid var(--viewbc800-line-strong);
  display: flex;
  align-items: center;
  gap: 12px;
}

.viewbc800-promo-strip-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--viewbc800-gold), var(--viewbc800-gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.viewbc800-promo-strip-text { flex: 1; min-width: 0; }
.viewbc800-promo-strip-text strong { color: #fff; font-size: 13px; display: block; }
.viewbc800-promo-strip-text span { color: var(--viewbc800-mist); font-size: 11px; }

/* ---------- section heading ---------- */
.viewbc800-section {
  padding: 8px 14px 14px;
}

.viewbc800-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.viewbc800-section-bar {
  width: 4px;
  height: 20px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--viewbc800-gold), var(--viewbc800-mint));
}

.viewbc800-section-title {
  font-size: 17px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.viewbc800-section-title em {
  font-style: normal;
  color: var(--viewbc800-gold);
}

.viewbc800-section-link {
  margin-left: auto;
  font-size: 12px;
  color: var(--viewbc800-mint);
  font-weight: 600;
}

/* ---------- category tabs (scroll hint, not hide) ---------- */
.viewbc800-cat-list {
  display: flex;
  gap: 8px;
  padding: 0 14px 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.viewbc800-cat-list::-webkit-scrollbar { display: none; }

.viewbc800-cat-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--viewbc800-line);
  color: var(--viewbc800-mist);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.viewbc800-cat-chip.is-active {
  background: linear-gradient(135deg, var(--viewbc800-gold), var(--viewbc800-gold-soft));
  color: #2a1d00;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(255, 191, 0, 0.28);
}

.viewbc800-cat-chip .viewbc800-cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--viewbc800-mint);
}

/* ---------- game grid ---------- */
.viewbc800-game-block { padding: 6px 14px 14px; }

.viewbc800-game-block + .viewbc800-game-block {
  border-top: 1px dashed var(--viewbc800-line);
  padding-top: 14px;
}

.viewbc800-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.viewbc800-game-card {
  position: relative;
  border-radius: var(--viewbc800-radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--viewbc800-line);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  display: block;
  color: #fff;
}

.viewbc800-game-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--viewbc800-shadow-sm);
  border-color: var(--viewbc800-line-strong);
}

.viewbc800-game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0f1722;
}

.viewbc800-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.viewbc800-game-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 2px 7px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff5e5e, #ff2a2a);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(255, 42, 42, 0.35);
}

.viewbc800-game-badge--hot { background: linear-gradient(135deg, #ffb347, #ff7a00); }
.viewbc800-game-badge--new { background: linear-gradient(135deg, var(--viewbc800-mint), var(--viewbc800-mint-deep)); color: #0c2a10; }

.viewbc800-game-name {
  padding: 6px 7px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--viewbc800-mist);
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- content modules ---------- */
.viewbc800-module {
  margin: 4px 14px 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--viewbc800-line);
  border-radius: var(--viewbc800-radius-lg);
  padding: 16px;
  box-shadow: var(--viewbc800-shadow-sm);
}

.viewbc800-module-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.viewbc800-module-title::before {
  content: "";
  width: 6px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--viewbc800-blue), var(--viewbc800-gold));
}

.viewbc800-module p,
.viewbc800-module li {
  color: var(--viewbc800-cloud);
  font-size: 13.5px;
}

.viewbc800-module a { color: var(--viewbc800-mint); font-weight: 600; }

.viewbc800-prose { color: var(--viewbc800-cloud); font-size: 13.5px; line-height: 1.7; }
.viewbc800-prose strong { color: #fff; }
.viewbc800-prose a { color: var(--viewbc800-mint); font-weight: 600; }

/* checklist */
.viewbc800-checklist { display: grid; gap: 8px; }
.viewbc800-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  background: rgba(65, 105, 225, 0.1);
  border-radius: var(--viewbc800-radius-sm);
  border-left: 3px solid var(--viewbc800-blue);
  font-size: 13px;
  color: var(--viewbc800-cloud);
}
.viewbc800-checklist li::before {
  content: "✓";
  color: var(--viewbc800-mint);
  font-weight: 800;
  flex-shrink: 0;
}

/* testimonial cards */
.viewbc800-testi-grid { display: grid; gap: 10px; }
.viewbc800-testi {
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(154, 255, 154, 0.08), rgba(65, 105, 225, 0.08));
  border: 1px solid var(--viewbc800-line);
  border-radius: var(--viewbc800-radius-md);
}
.viewbc800-testi-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.viewbc800-testi-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--viewbc800-gold), var(--viewbc800-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.viewbc800-testi-name { color: #fff; font-size: 13px; font-weight: 700; }
.viewbc800-testi-stars { color: var(--viewbc800-gold); font-size: 11px; letter-spacing: 1px; }
.viewbc800-testi p { margin: 0; font-size: 12.5px; color: var(--viewbc800-cloud); line-height: 1.6; }

/* app download */
.viewbc800-app-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: var(--viewbc800-radius-md);
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.22), rgba(255, 191, 0, 0.16));
  border: 1px solid var(--viewbc800-line-strong);
}
.viewbc800-app-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--viewbc800-blue), var(--viewbc800-blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(65, 105, 225, 0.35);
}
.viewbc800-app-meta { flex: 1; min-width: 0; }
.viewbc800-app-meta strong { color: #fff; font-size: 14px; display: block; margin-bottom: 2px; }
.viewbc800-app-meta span { color: var(--viewbc800-mist); font-size: 11px; }

/* highlights grid */
.viewbc800-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.viewbc800-highlight {
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--viewbc800-line);
  border-radius: var(--viewbc800-radius-md);
}
.viewbc800-highlight-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--viewbc800-mint), var(--viewbc800-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 6px;
}
.viewbc800-highlight h4 { color: #fff; font-size: 13px; margin-bottom: 4px; }
.viewbc800-highlight p { color: var(--viewbc800-cloud); font-size: 11.5px; margin: 0; line-height: 1.5; }

/* takeaway banner */
.viewbc800-takeaway {
  margin: 4px 14px 16px;
  padding: 16px;
  border-radius: var(--viewbc800-radius-lg);
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.12), rgba(154, 255, 154, 0.1));
  border: 1px solid var(--viewbc800-line-strong);
}
.viewbc800-takeaway h3 { color: var(--viewbc800-gold); font-size: 15px; margin-bottom: 10px; }
.viewbc800-takeaway ol { padding-left: 18px; counter-reset: tk; list-style: none; }
.viewbc800-takeaway li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--viewbc800-cloud);
  font-size: 13px;
  line-height: 1.6;
}
.viewbc800-takeaway li::before {
  counter-increment: tk;
  content: counter(tk);
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--viewbc800-gold);
  color: #2a1d00;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- extended footer ---------- */
.viewbc800-ext-foot {
  margin: 6px 14px 14px;
  padding: 16px;
  background: rgba(15, 23, 34, 0.5);
  border: 1px solid var(--viewbc800-line);
  border-radius: var(--viewbc800-radius-lg);
}

.viewbc800-ext-group { margin-bottom: 14px; }
.viewbc800-ext-group:last-child { margin-bottom: 0; }

.viewbc800-ext-group h4 {
  color: var(--viewbc800-gold);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.viewbc800-ext-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--viewbc800-radius-sm);
  color: var(--viewbc800-cloud);
  font-size: 12px;
  font-weight: 600;
  min-height: 38px;
}

.viewbc800-ext-links a:hover {
  background: rgba(65, 105, 225, 0.22);
  color: #fff;
  text-decoration: none;
}

.viewbc800-ext-links a::before {
  content: "›";
  color: var(--viewbc800-mint);
  font-weight: 800;
}

.viewbc800-ext-promo {
  display: grid;
  gap: 8px;
}

.viewbc800-ext-promo-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--viewbc800-radius-sm);
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.18), rgba(65, 105, 225, 0.16));
  border: 1px solid var(--viewbc800-line-strong);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  min-height: 42px;
}
.viewbc800-ext-promo-btn:hover { text-decoration: none; filter: brightness(1.08); }
.viewbc800-ext-promo-btn span { color: var(--viewbc800-gold); font-size: 14px; }

.viewbc800-ext-disclaimer {
  font-size: 11.5px;
  color: var(--viewbc800-cloud);
  line-height: 1.6;
  padding: 10px 12px;
  border-left: 3px solid var(--viewbc800-blue);
  background: rgba(65, 105, 225, 0.08);
  border-radius: 0 var(--viewbc800-radius-sm) var(--viewbc800-radius-sm) 0;
}

/* ---------- bottom copyright footer ---------- */
.viewbc800-foot {
  padding: 14px 14px calc(var(--viewbc800-bottomnav-h) + 18px);
  text-align: center;
  border-top: 1px solid var(--viewbc800-line);
  margin-top: 4px;
}
.viewbc800-foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.viewbc800-foot-brand img { width: 24px; height: 24px; border-radius: 6px; }
.viewbc800-foot-brand strong { color: #fff; font-size: 14px; }
.viewbc800-foot p { color: var(--viewbc800-slate-mist); font-size: 11px; line-height: 1.6; margin: 0; }

/* ---------- bottom nav (floating dock) ---------- */
.viewbc800-bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 45;
  width: calc(100% - 20px);
  max-width: 410px;
  height: var(--viewbc800-bottomnav-h);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 6px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(36, 50, 64, 0.97), rgba(22, 32, 43, 0.97));
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(154, 255, 154, 0.14) inset;
}

.viewbc800-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--viewbc800-slate-mist);
  font-size: 10px;
  font-weight: 600;
  border-radius: 14px;
  position: relative;
  min-height: 44px;
  padding: 2px;
  text-align: center;
}

.viewbc800-nav-item svg { width: 20px; height: 20px; }

.viewbc800-nav-item:hover { text-decoration: none; color: var(--viewbc800-mint); }

.viewbc800-nav-item.is-active {
  color: #fff;
  background: rgba(65, 105, 225, 0.22);
}

.viewbc800-nav-item.is-active::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--viewbc800-gold);
}

.viewbc800-nav-item--promo {
  color: var(--viewbc800-gold);
}

.viewbc800-nav-item--promo svg {
  filter: drop-shadow(0 2px 4px rgba(255, 191, 0, 0.4));
}

/* ---------- misc / utilities ---------- */
.viewbc800-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.viewbc800-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--viewbc800-gold);
  margin-bottom: 6px;
  font-weight: 700;
}

/* ---------- responsive tweaks at wider phone ---------- */
@media (min-width: 375px) {
  .viewbc800-slide img { height: 210px; }
  .viewbc800-game-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .viewbc800-ext-links { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 430px) {
  .viewbc800-highlights { grid-template-columns: repeat(3, 1fr); }
  .viewbc800-ext-links { grid-template-columns: repeat(3, 1fr); }
}

/* keep wide screens centered on the phone canvas */
@media (min-width: 480px) {
  body { padding: 0; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- help page presentation ---------- */
.viewbc800-help-hero {
  margin: 14px;
  padding: 20px 16px;
  border: 1px solid var(--viewbc800-line-strong);
  border-radius: 0 24px 24px 24px;
  background: linear-gradient(145deg, rgba(65,105,225,.3), rgba(154,255,154,.08));
  box-shadow: var(--viewbc800-shadow-md);
}
.viewbc800-help-hero h1 { color: #fff; font-size: 25px; letter-spacing: -.3px; }
.viewbc800-help-hero p { color: var(--viewbc800-cloud); font-size: 13.5px; margin: 9px 0 0; }
.viewbc800-help-kicker { color: var(--viewbc800-yellow); text-transform: uppercase; letter-spacing: 1.5px; font-size: 10px; font-weight: 800; }
.viewbc800-help-timeline { margin: 8px 14px 16px; display: grid; gap: 8px; }
.viewbc800-help-step { display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: start; padding: 11px 12px; border-bottom: 1px solid var(--viewbc800-line); color: var(--viewbc800-cloud); }
.viewbc800-help-step b { color: var(--viewbc800-gold); font-size: 18px; line-height: 1; }
.viewbc800-help-step strong { color: #fff; display: block; font-size: 13px; margin-bottom: 2px; }
.viewbc800-help-step span { font-size: 12.5px; line-height: 1.6; }
.viewbc800-help-aside { margin: 14px; padding: 14px; border-left: 4px solid var(--viewbc800-mint); border-radius: 0 14px 14px 0; background: rgba(154,255,154,.07); color: var(--viewbc800-cloud); font-size: 13px; }
.viewbc800-help-aside strong { color: var(--viewbc800-mint); }
.viewbc800-help-table { display: grid; gap: 7px; }
.viewbc800-help-row { display: grid; grid-template-columns: 1fr 1.25fr; gap: 8px; padding: 10px; border-radius: 9px; background: rgba(255,255,255,.045); color: var(--viewbc800-cloud); font-size: 12.5px; }
.viewbc800-help-row strong { color: var(--viewbc800-yellow); }
.viewbc800-help-faq { display: grid; gap: 8px; }
.viewbc800-help-faq details { border: 1px solid var(--viewbc800-line); border-radius: 11px; background: rgba(15,23,34,.3); padding: 10px 12px; }
.viewbc800-help-faq summary { color: #fff; cursor: pointer; font-size: 13px; font-weight: 700; min-height: 24px; }
.viewbc800-help-faq p { color: var(--viewbc800-cloud); font-size: 12.5px; margin: 8px 0 0; line-height: 1.65; }
.viewbc800-help-cta { margin: 16px 14px; padding: 15px; border-radius: var(--viewbc800-radius-lg); background: linear-gradient(135deg, rgba(255,191,0,.2), rgba(65,105,225,.22)); border: 1px solid var(--viewbc800-line-strong); }
.viewbc800-help-cta p { color: var(--viewbc800-cloud); font-size: 12.5px; margin: 0 0 10px; }
.viewbc800-help-cta .viewbc800-btn { width: 100%; }

