/* ============================================================
   Casino Plus App - Mobile First Visual System
   Selector prefix : viewf4c20-
   Canvas target   : 320 - 430 px phone stage
   Palette         : #ADD8E6 #1A1A1A #4682B4 #FF69B4 #FF91A4
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --viewf4c20-ink: #1A1A1A;
  --viewf4c20-ink-soft: #232323;
  --viewf4c20-ink-deep: #121212;
  --viewf4c20-mist: #ADD8E6;
  --viewf4c20-mist-dim: rgba(173, 216, 230, 0.62);
  --viewf4c20-steel: #4682B4;
  --viewf4c20-steel-deep: #2f5e87;
  --viewf4c20-hot: #FF69B4;
  --viewf4c20-blush: #FF91A4;
  --viewf4c20-paper: #F6FAFC;
  --viewf4c20-line: rgba(173, 216, 230, 0.16);
  --viewf4c20-line-strong: rgba(173, 216, 230, 0.34);
  --viewf4c20-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  --viewf4c20-shadow-soft: 0 6px 16px rgba(0, 0, 0, 0.32);
  --viewf4c20-radius-xs: 4px;
  --viewf4c20-radius-sm: 6px;
  --viewf4c20-radius-md: 10px;
  --viewf4c20-radius-lg: 14px;
  --viewf4c20-gap-xs: 6px;
  --viewf4c20-gap-sm: 10px;
  --viewf4c20-gap-md: 16px;
  --viewf4c20-gap-lg: 24px;
  --viewf4c20-font-title: "Cambria", "Georgia", "Times New Roman", serif;
  --viewf4c20-font-body: "Segoe UI", "Helvetica Neue", "Arial", system-ui, sans-serif;
  --viewf4c20-topbar-h: 60px;
  --viewf4c20-bottomnav-h: 64px;
  --viewf4c20-safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--viewf4c20-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--viewf4c20-paper);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255, 105, 180, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(70, 130, 180, 0.22), transparent 60%),
    var(--viewf4c20-ink-deep);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--viewf4c20-mist); text-decoration: none; }
a:hover { color: var(--viewf4c20-blush); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--viewf4c20-font-title); margin: 0; line-height: 1.28; font-weight: 600; }
p { margin: 0 0 var(--viewf4c20-gap-sm); }

/* ---------- Mobile stage ---------- */
.viewf4c20-stage {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(35, 35, 35, 0.96) 0%, rgba(18, 18, 18, 0.98) 60%, #0c0c0c 100%);
  box-shadow: var(--viewf4c20-shadow);
  overflow: hidden;
}

@media (min-width: 431px) {
  body { padding: 18px 0; }
  .viewf4c20-stage {
    border-radius: 22px;
    border: 1px solid var(--viewf4c20-line);
  }
}

/* ---------- Top identity bar ---------- */
.viewf4c20-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: var(--viewf4c20-gap-xs);
  height: var(--viewf4c20-topbar-h);
  padding: 0 var(--viewf4c20-gap-sm);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(20, 20, 20, 0.86));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--viewf4c20-line-strong);
}

.viewf4c20-menu-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--viewf4c20-radius-sm);
  color: var(--viewf4c20-mist);
  transition: background 0.25s ease, color 0.25s ease;
}
.viewf4c20-menu-btn:hover,
.viewf4c20-menu-btn:focus-visible {
  background: rgba(173, 216, 230, 0.12);
  color: var(--viewf4c20-blush);
  outline: none;
}

.viewf4c20-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--viewf4c20-gap-xs);
  min-width: 0;
}
.viewf4c20-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: var(--viewf4c20-radius-xs);
  background: rgba(173, 216, 230, 0.08);
  flex-shrink: 0;
}
.viewf4c20-brand-name {
  font-family: var(--viewf4c20-font-title);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--viewf4c20-paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.viewf4c20-brand-name span { color: var(--viewf4c20-hot); }

.viewf4c20-top-actions {
  grid-column: 1 / -1;
  display: none;
  gap: var(--viewf4c20-gap-xs);
  padding: 0 var(--viewf4c20-gap-xs);
}

/* Action chip row lives directly under brand bar on phones */
.viewf4c20-action-row {
  display: flex;
  gap: var(--viewf4c20-gap-xs);
  padding: var(--viewf4c20-gap-xs) var(--viewf4c20-gap-sm) var(--viewf4c20-gap-sm);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.92), rgba(20, 20, 20, 0.55));
  border-bottom: 1px solid var(--viewf4c20-line);
}

.viewf4c20-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: var(--viewf4c20-radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  touch-action: manipulation;
}
.viewf4c20-btn:focus-visible { outline: 2px solid var(--viewf4c20-mist); outline-offset: 2px; }
.viewf4c20-btn:active { transform: translateY(1px); }

.viewf4c20-btn-register {
  flex: 1;
  color: #1A1A1A;
  background: linear-gradient(135deg, var(--viewf4c20-hot), var(--viewf4c20-blush));
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.32);
}
.viewf4c20-btn-register:hover { color: #1A1A1A; box-shadow: 0 8px 22px rgba(255, 105, 180, 0.45); }

.viewf4c20-btn-login {
  flex: 1;
  color: var(--viewf4c20-mist);
  background: rgba(70, 130, 180, 0.18);
  border: 1px solid var(--viewf4c20-steel);
}
.viewf4c20-btn-login:hover { color: var(--viewf4c20-paper); background: rgba(70, 130, 180, 0.32); }

/* ---------- Slide-in zoned menu ---------- */
.viewf4c20-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}
.viewf4c20-menu[data-open="true"] { visibility: visible; pointer-events: auto; }

.viewf4c20-menu-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.viewf4c20-menu[data-open="true"] .viewf4c20-menu-scrim { opacity: 1; }

.viewf4c20-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 86%;
  max-width: 360px;
  height: 100%;
  background: linear-gradient(180deg, #1c1c1c, #101010);
  border-right: 1px solid var(--viewf4c20-line-strong);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.viewf4c20-menu[data-open="true"] .viewf4c20-menu-panel { transform: translateX(0); }

.viewf4c20-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--viewf4c20-gap-md);
  border-bottom: 1px solid var(--viewf4c20-line);
}
.viewf4c20-menu-head img { width: 36px; height: 36px; border-radius: var(--viewf4c20-radius-xs); }
.viewf4c20-menu-title { font-size: 16px; font-weight: 700; color: var(--viewf4c20-paper); }
.viewf4c20-menu-close {
  width: 36px; height: 36px;
  border-radius: var(--viewf4c20-radius-sm);
  color: var(--viewf4c20-mist);
}
.viewf4c20-menu-close:hover { background: rgba(173, 216, 230, 0.12); color: var(--viewf4c20-blush); }

.viewf4c20-menu-zone { padding: var(--viewf4c20-gap-sm) var(--viewf4c20-gap-md); }
.viewf4c20-menu-zone-label {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--viewf4c20-mist-dim);
  margin-bottom: var(--viewf4c20-gap-xs);
}
.viewf4c20-menu-list { display: grid; gap: 2px; }
.viewf4c20-menu-list a {
  display: flex;
  align-items: center;
  gap: var(--viewf4c20-gap-sm);
  padding: 11px var(--viewf4c20-gap-sm);
  border-radius: var(--viewf4c20-radius-sm);
  color: var(--viewf4c20-paper);
  font-size: 14px;
  transition: background 0.22s ease, color 0.22s ease, padding 0.22s ease;
}
.viewf4c20-menu-list a:hover,
.viewf4c20-menu-list a:focus-visible {
  background: rgba(70, 130, 180, 0.22);
  color: var(--viewf4c20-mist);
  padding-left: 16px;
  outline: none;
}
.viewf4c20-menu-list a span.viewf4c20-menu-tag {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--viewf4c20-blush);
}
.viewf4c20-menu-promo {
  margin: var(--viewf4c20-gap-sm) var(--viewf4c20-gap-md) var(--viewf4c20-gap-md);
  padding: var(--viewf4c20-gap-md);
  border-radius: var(--viewf4c20-radius-md);
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.22), rgba(70, 130, 180, 0.18));
  border: 1px solid var(--viewf4c20-line-strong);
  text-align: center;
}
.viewf4c20-menu-promo p { margin: 0 0 var(--viewf4c20-gap-sm); font-size: 13px; color: var(--viewf4c20-mist); }

/* ---------- Main / shared layout ---------- */
.viewf4c20-main {
  padding: var(--viewf4c20-gap-md) var(--viewf4c20-gap-sm) calc(var(--viewf4c20-bottomnav-h) + var(--viewf4c20-safe-bottom) + 36px);
}

.viewf4c20-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--viewf4c20-blush);
  margin-bottom: 6px;
}
.viewf4c20-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--viewf4c20-hot), transparent);
}

.viewf4c20-page-title {
  font-size: 22px;
  line-height: 1.22;
  color: var(--viewf4c20-paper);
  margin: 0 0 var(--viewf4c20-gap-sm);
}
.viewf4c20-page-title em { font-style: normal; color: var(--viewf4c20-hot); }

.viewf4c20-lede {
  font-size: 15px;
  color: var(--viewf4c20-mist);
  margin: 0 0 var(--viewf4c20-gap-md);
}

.viewf4c20-section {
  margin: var(--viewf4c20-gap-lg) 0;
  padding: var(--viewf4c20-gap-md);
  border: 1px solid var(--viewf4c20-line);
  border-radius: var(--viewf4c20-radius-lg);
  background: linear-gradient(180deg, rgba(35, 35, 35, 0.55), rgba(18, 18, 18, 0.4));
}
.viewf4c20-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--viewf4c20-gap-sm);
  margin-bottom: var(--viewf4c20-gap-sm);
}
.viewf4c20-section-head h2 {
  font-size: 18px;
  color: var(--viewf4c20-paper);
}
.viewf4c20-section-head h2 em { font-style: normal; color: var(--viewf4c20-hot); }
.viewf4c20-section-tag {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--viewf4c20-steel);
  white-space: nowrap;
}
.viewf4c20-section-intro {
  font-size: 13.5px;
  color: var(--viewf4c20-mist-dim);
  margin: 0 0 var(--viewf4c20-gap-md);
}

/* ---------- Hero carousel ---------- */
.viewf4c20-hero {
  position: relative;
  margin: var(--viewf4c20-gap-sm) 0 var(--viewf4c20-gap-md);
  border-radius: var(--viewf4c20-radius-lg);
  overflow: hidden;
  border: 1px solid var(--viewf4c20-line-strong);
  box-shadow: var(--viewf4c20-shadow-soft);
}
.viewf4c20-carousel {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.viewf4c20-slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  cursor: pointer;
}
.viewf4c20-slide img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
}
.viewf4c20-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: var(--viewf4c20-gap-md);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.78) 100%);
  color: var(--viewf4c20-paper);
}
.viewf4c20-slide-title {
  font-family: var(--viewf4c20-font-title);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.viewf4c20-slide-title em { font-style: normal; color: var(--viewf4c20-blush); }
.viewf4c20-slide-sub { font-size: 12.5px; color: var(--viewf4c20-mist); }
.viewf4c20-slide-cta {
  align-self: flex-start;
  margin-top: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1A1A1A;
  background: linear-gradient(135deg, var(--viewf4c20-hot), var(--viewf4c20-blush));
  border-radius: var(--viewf4c20-radius-xs);
}

.viewf4c20-carousel-controls {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 5;
}
.viewf4c20-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(173, 216, 230, 0.4);
  border: 1px solid rgba(173, 216, 230, 0.6);
  transition: background 0.25s ease, transform 0.25s ease;
}
.viewf4c20-carousel-dot[aria-current="true"] {
  background: var(--viewf4c20-hot);
  transform: scale(1.15);
  border-color: var(--viewf4c20-blush);
}

/* ---------- Game grid ---------- */
.viewf4c20-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--viewf4c20-gap-xs);
}
@media (min-width: 360px) { .viewf4c20-grid { gap: 8px; } }
@media (min-width: 400px) { .viewf4c20-grid { grid-template-columns: repeat(5, 1fr); } }

.viewf4c20-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6px 4px 8px;
  border-radius: var(--viewf4c20-radius-md);
  background: linear-gradient(180deg, rgba(70, 130, 180, 0.16), rgba(35, 35, 35, 0.55));
  border: 1px solid var(--viewf4c20-line);
  transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  min-width: 0;
}
.viewf4c20-card:hover,
.viewf4c20-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--viewf4c20-blush);
  box-shadow: 0 8px 18px rgba(255, 105, 180, 0.22);
  outline: none;
}
.viewf4c20-card:active { transform: translateY(0); }
.viewf4c20-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--viewf4c20-radius-sm);
  background: rgba(0, 0, 0, 0.35);
  margin-bottom: 5px;
}
.viewf4c20-card-name {
  font-size: 11px;
  line-height: 1.25;
  color: var(--viewf4c20-mist);
  font-weight: 600;
  letter-spacing: 0.1px;
  word-break: break-word;
  hyphens: auto;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Latest winners ---------- */
.viewf4c20-winners {
  display: grid;
  gap: 8px;
}
.viewf4c20-winner {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: var(--viewf4c20-gap-sm);
  padding: 10px var(--viewf4c20-gap-sm);
  border-radius: var(--viewf4c20-radius-md);
  background: rgba(70, 130, 180, 0.12);
  border: 1px solid var(--viewf4c20-line);
}
.viewf4c20-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--viewf4c20-font-title);
  font-weight: 700;
  color: #1A1A1A;
  background: linear-gradient(135deg, var(--viewf4c20-mist), var(--viewf4c20-steel));
}
.viewf4c20-winner-meta { min-width: 0; }
.viewf4c20-winner-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--viewf4c20-paper);
}
.viewf4c20-winner-game {
  font-size: 11.5px;
  color: var(--viewf4c20-mist-dim);
}
.viewf4c20-winner-amount {
  font-family: var(--viewf4c20-font-title);
  font-weight: 700;
  font-size: 15px;
  color: var(--viewf4c20-hot);
  white-space: nowrap;
}

/* ---------- Promotions ---------- */
.viewf4c20-promo-grid {
  display: grid;
  gap: 10px;
}
.viewf4c20-promo-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--viewf4c20-gap-sm);
  padding: var(--viewf4c20-gap-sm) var(--viewf4c20-gap-md);
  border-radius: var(--viewf4c20-radius-md);
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.16), rgba(70, 130, 180, 0.12));
  border: 1px solid var(--viewf4c20-line-strong);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.25s ease;
}
.viewf4c20-promo-card:hover { transform: translateY(-2px); border-color: var(--viewf4c20-blush); }
.viewf4c20-promo-card h3 { font-size: 14px; color: var(--viewf4c20-paper); margin-bottom: 2px; }
.viewf4c20-promo-card p { margin: 0; font-size: 12px; color: var(--viewf4c20-mist-dim); }
.viewf4c20-promo-pill {
  align-self: center;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1A1A1A;
  background: linear-gradient(135deg, var(--viewf4c20-hot), var(--viewf4c20-blush));
  border-radius: var(--viewf4c20-radius-xs);
}

/* ---------- Payment methods ---------- */
.viewf4c20-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.viewf4c20-pay {
  padding: 10px 6px;
  text-align: center;
  border-radius: var(--viewf4c20-radius-md);
  background: rgba(173, 216, 230, 0.08);
  border: 1px solid var(--viewf4c20-line);
}
.viewf4c20-pay-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--viewf4c20-mist);
}
.viewf4c20-pay-note {
  display: block;
  font-size: 10.5px;
  color: var(--viewf4c20-mist-dim);
  margin-top: 2px;
}

/* ---------- Play now CTA band ---------- */
.viewf4c20-cta-band {
  margin: var(--viewf4c20-gap-lg) 0;
  padding: var(--viewf4c20-gap-md);
  border-radius: var(--viewf4c20-radius-lg);
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255, 105, 180, 0.32), transparent 60%),
    linear-gradient(135deg, #20303f, #14202c);
  border: 1px solid var(--viewf4c20-line-strong);
}
.viewf4c20-cta-band h2 {
  font-size: 19px;
  color: var(--viewf4c20-paper);
  margin-bottom: 6px;
}
.viewf4c20-cta-band p { color: var(--viewf4c20-mist); margin: 0 0 var(--viewf4c20-gap-md); font-size: 13.5px; }
.viewf4c20-cta-actions {
  display: flex;
  gap: var(--viewf4c20-gap-xs);
  justify-content: center;
  flex-wrap: wrap;
}
.viewf4c20-cta-primary {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  background: linear-gradient(135deg, var(--viewf4c20-hot), var(--viewf4c20-blush));
  border-radius: var(--viewf4c20-radius-sm);
  box-shadow: 0 10px 22px rgba(255, 105, 180, 0.34);
}
.viewf4c20-cta-secondary {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--viewf4c20-mist);
  border: 1px solid var(--viewf4c20-steel);
  border-radius: var(--viewf4c20-radius-sm);
  background: rgba(70, 130, 180, 0.14);
}

/* ---------- Decision checklist ---------- */
.viewf4c20-checklist {
  display: grid;
  gap: 8px;
}
.viewf4c20-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 10px var(--viewf4c20-gap-sm);
  border-radius: var(--viewf4c20-radius-md);
  background: rgba(173, 216, 230, 0.06);
  border: 1px solid var(--viewf4c20-line);
}
.viewf4c20-check-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  background: linear-gradient(135deg, var(--viewf4c20-mist), var(--viewf4c20-steel));
  font-size: 12px;
  font-weight: 700;
}
.viewf4c20-check strong { color: var(--viewf4c20-paper); font-size: 13.5px; display: block; }
.viewf4c20-check span { color: var(--viewf4c20-mist-dim); font-size: 12.5px; }

/* ---------- Editorial / SEO content ---------- */
.viewf4c20-prose h2 {
  font-size: 18px;
  margin: var(--viewf4c20-gap-lg) 0 8px;
  color: var(--viewf4c20-paper);
}
.viewf4c20-prose h2 em { font-style: normal; color: var(--viewf4c20-hot); }
.viewf4c20-prose h3 {
  font-size: 15px;
  margin: var(--viewf4c20-gap-md) 0 6px;
  color: var(--viewf4c20-mist);
}
.viewf4c20-prose p { font-size: 14px; color: var(--viewf4c20-mist); margin: 0 0 var(--viewf4c20-gap-sm); }
.viewf4c20-prose a { color: var(--viewf4c20-blush); border-bottom: 1px dashed rgba(255, 145, 164, 0.5); }
.viewf4c20-prose a:hover { color: var(--viewf4c20-hot); border-bottom-color: var(--viewf4c20-hot); }
.viewf4c20-prose ul { margin: 0 0 var(--viewf4c20-gap-sm); padding-left: 18px; list-style: none; }
.viewf4c20-prose ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  color: var(--viewf4c20-mist);
  font-size: 13.5px;
}
.viewf4c20-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--viewf4c20-hot);
}
.viewf4c20-prose ol { margin: 0 0 var(--viewf4c20-gap-sm); padding-left: 20px; color: var(--viewf4c20-mist); font-size: 13.5px; }
.viewf4c20-prose ol li { margin-bottom: 6px; }
.viewf4c20-prose ol li::marker { color: var(--viewf4c20-blush); font-weight: 700; }

/* ---------- Inline text CTA link ---------- */
.viewf4c20-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  color: var(--viewf4c20-blush);
  font-weight: 600;
  cursor: pointer;
}
.viewf4c20-link-cta::after {
  content: "→";
  transition: transform 0.22s ease;
}
.viewf4c20-link-cta:hover::after { transform: translateX(3px); }

/* ---------- Steps ---------- */
.viewf4c20-steps { display: grid; gap: 10px; counter-reset: step; }
.viewf4c20-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--viewf4c20-gap-sm);
  padding: 10px var(--viewf4c20-gap-sm);
  border-radius: var(--viewf4c20-radius-md);
  background: rgba(70, 130, 180, 0.1);
  border: 1px solid var(--viewf4c20-line);
  counter-increment: step;
}
.viewf4c20-step-num {
  width: 32px;
  height: 32px;
  border-radius: var(--viewf4c20-radius-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--viewf4c20-font-title);
  font-weight: 700;
  color: #1A1A1A;
  background: linear-gradient(135deg, var(--viewf4c20-mist), var(--viewf4c20-steel));
}
.viewf4c20-step-num::before { content: counter(step); }
.viewf4c20-step strong { display: block; color: var(--viewf4c20-paper); font-size: 13.5px; margin-bottom: 2px; }
.viewf4c20-step span { color: var(--viewf4c20-mist-dim); font-size: 12.5px; }

/* ---------- Extended footer ---------- */
.viewf4c20-extended {
  margin: var(--viewf4c20-gap-lg) 0 var(--viewf4c20-gap-md);
  border-top: 1px solid var(--viewf4c20-line-strong);
  padding-top: var(--viewf4c20-gap-md);
  display: grid;
  gap: var(--viewf4c20-gap-md);
}
.viewf4c20-ext-block { display: grid; gap: var(--viewf4c20-gap-xs); }
.viewf4c20-ext-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--viewf4c20-blush);
}
.viewf4c20-ext-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.viewf4c20-ext-brand-row img { width: 30px; height: 30px; border-radius: var(--viewf4c20-radius-xs); }
.viewf4c20-ext-brand-row strong { font-family: var(--viewf4c20-font-title); font-size: 16px; color: var(--viewf4c20-paper); }
.viewf4c20-ext-block p { font-size: 12.5px; color: var(--viewf4c20-mist-dim); margin: 0; }

.viewf4c20-ext-list { display: grid; gap: 6px; }
.viewf4c20-ext-list a,
.viewf4c20-ext-list button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--viewf4c20-radius-sm);
  background: rgba(173, 216, 230, 0.06);
  border: 1px solid var(--viewf4c20-line);
  color: var(--viewf4c20-mist);
  font-size: 12.5px;
  text-align: left;
  width: 100%;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.viewf4c20-ext-list a:hover,
.viewf4c20-ext-list button:hover {
  background: rgba(70, 130, 180, 0.22);
  color: var(--viewf4c20-paper);
  border-color: var(--viewf4c20-blush);
}
.viewf4c20-ext-list .viewf4c20-ext-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--viewf4c20-hot);
}

.viewf4c20-ext-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.viewf4c20-ext-grid2 a { font-size: 12px; padding: 7px 8px; }

.viewf4c20-ext-disclaimer {
  font-size: 11.5px;
  color: var(--viewf4c20-mist-dim);
  line-height: 1.5;
  border-top: 1px dashed var(--viewf4c20-line);
  padding-top: var(--viewf4c20-gap-sm);
}

/* ---------- Footer (copyright only) ---------- */
.viewf4c20-foot {
  padding: var(--viewf4c20-gap-md) var(--viewf4c20-gap-sm) calc(var(--viewf4c20-gap-md) + var(--viewf4c20-safe-bottom));
  text-align: center;
  border-top: 1px solid var(--viewf4c20-line);
  background: rgba(12, 12, 12, 0.85);
}
.viewf4c20-foot p { margin: 0; font-size: 11.5px; color: var(--viewf4c20-mist-dim); }

/* ---------- Bottom navigation rail ---------- */
.viewf4c20-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  height: calc(var(--viewf4c20-bottomnav-h) + var(--viewf4c20-safe-bottom));
  padding-bottom: var(--viewf4c20-safe-bottom);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(8, 8, 8, 0.99));
  border-top: 1px solid var(--viewf4c20-line-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.viewf4c20-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 2px 4px;
  color: var(--viewf4c20-mist-dim);
  font-size: 10.5px;
  letter-spacing: 0.2px;
  text-align: center;
  transition: color 0.25s ease, background 0.25s ease;
  min-height: 44px;
}
.viewf4c20-nav-item svg { width: 22px; height: 22px; transition: color 0.25s ease, transform 0.25s ease; }
.viewf4c20-nav-item:hover { color: var(--viewf4c20-mist); }
.viewf4c20-nav-item:hover svg { transform: translateY(-1px); }
.viewf4c20-nav-item[aria-current="page"] {
  color: #1A1A1A;
  background: linear-gradient(180deg, var(--viewf4c20-hot), var(--viewf4c20-blush));
  border-radius: var(--viewf4c20-radius-md) var(--viewf4c20-radius-md) 0 0;
}
.viewf4c20-nav-item[aria-current="page"] svg { color: #1A1A1A; transform: translateY(-1px); }
.viewf4c20-nav-item[aria-current="page"]::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--viewf4c20-blush);
}
.viewf4c20-nav-promo-dot {
  position: absolute;
  top: 6px;
  right: calc(50% - 22px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--viewf4c20-hot);
  box-shadow: 0 0 0 2px rgba(255, 105, 180, 0.25);
}

/* ---------- Utilities ---------- */
.viewf4c20-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

.viewf4c20-fade { opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; }
.viewf4c20-fade.is-in { opacity: 1; transform: translateY(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .viewf4c20-fade { opacity: 1; transform: none; }
}
