/* =====================================================================
 * playtime app download - shared stylesheet
 * Prefix: v94b-
 * Palette: #40E0D0 / #00695C / #00FFFF / #D3D3D3 / #2C3E50
 * Canvas: 320-430px mobile-first, centered on wide screens.
 * ===================================================================== */

:root {
  --v94b-mint: #40E0D0;
  --v94b-teal: #00695C;
  --v94b-cyan: #00FFFF;
  --v94b-mist: #D3D3D3;
  --v94b-ink: #2C3E50;
  --v94b-ink-soft: #243343;
  --v94b-ink-deep: #1a2531;
  --v94b-card: #21303d;
  --v94b-card-2: #182022;
  --v94b-line: rgba(64, 224, 208, 0.18);
  --v94b-line-strong: rgba(64, 224, 208, 0.45);
  --v94b-text: #eaf7f5;
  --v94b-text-dim: #a8c4cf;
  --v94b-gold: #ffd76a;
  --v94b-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --v94b-radius: 14px;
  --v94b-radius-sm: 10px;
  --v94b-header-h: 116px;
  --v94b-bottomnav-h: 76px;
  --v94b-max: 460px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", system-ui, -apple-system, "Arial", sans-serif;
  color: var(--v94b-text);
  background: radial-gradient(120% 60% at 50% -10%, #0f3a36 0%, var(--v94b-ink) 55%, var(--v94b-ink-deep) 100%);
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 15px;
  overflow-x: hidden;
}

a { color: var(--v94b-mint); text-decoration: none; }
a:hover { color: var(--v94b-cyan); }
img { display: block; max-width: 100%; }

.v94b-shell {
  max-width: var(--v94b-max);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(0,105,92,0.10) 0%, rgba(44,62,80,0.0) 30%);
  min-height: 100vh;
  position: relative;
}

/* ====================== Header ====================== */
.v94b-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(15,46,56,0.98) 0%, rgba(10,32,40,0.96) 100%);
  border-bottom: 1px solid var(--v94b-line);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.v94b-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px 8px;
}

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

.v94b-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--v94b-teal);
  border: 1px solid var(--v94b-line-strong);
  box-shadow: 0 0 0 3px rgba(64,224,208,0.18);
  flex-shrink: 0;
}

.v94b-brand-text { min-width: 0; }
.v94b-brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--v94b-text);
  line-height: 1.15;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v94b-brand-tag {
  font-size: 10px;
  color: var(--v94b-mint);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
}

.v94b-brand-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.v94b-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--v94b-line);
  background: rgba(64,224,208,0.08);
  color: var(--v94b-mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s, transform .18s, border-color .18s;
}
.v94b-icon-btn:hover, .v94b-icon-btn:focus { background: rgba(64,224,208,0.18); }
.v94b-icon-btn.v94b-active { background: var(--v94b-mint); color: var(--v94b-ink-deep); }
.v94b-icon-btn svg { width: 22px; height: 22px; }

.v94b-actions-row {
  display: flex;
  gap: 8px;
  padding: 0 14px 10px;
  align-items: center;
}

.v94b-btn {
  flex: 1;
  min-height: 44px;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.4px;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .15s, box-shadow .15s, background .15s;
  color: var(--v94b-ink-deep);
  padding: 10px 14px;
}
.v94b-btn-primary {
  background: linear-gradient(135deg, var(--v94b-cyan) 0%, var(--v94b-mint) 100%);
  box-shadow: 0 6px 16px rgba(0,255,255,0.20);
}
.v94b-btn-ghost {
  background: transparent;
  border: 1px solid var(--v94b-line-strong);
  color: var(--v94b-text);
}
.v94b-btn-gold {
  background: linear-gradient(135deg, #ffe07a 0%, var(--v94b-gold) 100%);
  color: #3a2a00;
  box-shadow: 0 6px 16px rgba(255,215,106,0.25);
}
.v94b-btn:hover { transform: translateY(-1px); }
.v94b-btn:active { transform: translateY(0); }
.v94b-btn svg { width: 18px; height: 18px; }

/* ====================== Expand menu ====================== */
.v94b-expand-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10,32,40,0.99);
  border-bottom: 1px solid var(--v94b-line);
  padding: 12px 14px 18px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform .22s ease, opacity .22s ease, visibility .22s;
  z-index: 55;
}
.v94b-expand-menu.v94b-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.v94b-expand-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.v94b-expand-title {
  font-size: 12px;
  color: var(--v94b-mint);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 800;
}
.v94b-expand-close {
  background: none; border: none; color: var(--v94b-text-dim);
  font-size: 22px; cursor: pointer; line-height: 1; padding: 4px 8px;
}
.v94b-expand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.v94b-expand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  min-height: 44px;
  border-radius: 10px;
  background: rgba(64,224,208,0.07);
  border: 1px solid var(--v94b-line);
  color: var(--v94b-text);
  font-size: 13px;
  font-weight: 600;
}
.v94b-expand-link:hover { background: rgba(64,224,208,0.18); color: var(--v94b-cyan); }
.v94b-expand-link .v94b-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--v94b-mint); flex-shrink: 0;
}

/* ====================== Layout containers ====================== */
.v94b-main {
  padding: 14px 14px 24px;
}

.v94b-section { margin-top: 26px; }
.v94b-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px 12px;
  gap: 10px;
}
.v94b-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--v94b-text);
  margin: 0;
  position: relative;
  padding-left: 14px;
}
.v94b-section-title::before {
  content: "";
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 4px; border-radius: 4px;
  background: linear-gradient(180deg, var(--v94b-cyan), var(--v94b-mint));
}
.v94b-section-more {
  font-size: 12px;
  color: var(--v94b-mint);
  font-weight: 700;
  white-space: nowrap;
}
.v94b-section-sub {
  margin: -4px 2px 12px;
  font-size: 13px;
  color: var(--v94b-text-dim);
}

/* ====================== Hero carousel ====================== */
.v94b-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--v94b-shadow);
  border: 1px solid var(--v94b-line);
}
.v94b-slides { position: relative; }
.v94b-slide {
  position: relative;
  display: none;
  cursor: pointer;
}
.v94b-slide.v94b-active { display: block; }
.v94b-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.v94b-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,30,40,0.05) 30%, rgba(10,24,32,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: #fff;
}
.v94b-slide-eyebrow {
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--v94b-cyan);
  font-weight: 800;
  margin-bottom: 4px;
}
.v94b-slide-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 6px;
}
.v94b-slide-desc {
  font-size: 12px;
  color: var(--v94b-mist);
  margin: 0 0 10px;
  max-width: 92%;
}
.v94b-slide-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--v94b-cyan), var(--v94b-mint));
  color: var(--v94b-ink-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  width: fit-content;
}
.v94b-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.v94b-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: width .2s, background .2s;
  padding: 0;
  border: none;
}
.v94b-dot.v94b-active {
  width: 22px;
  border-radius: 6px;
  background: var(--v94b-cyan);
}

/* ====================== Category chips ====================== */
.v94b-cat-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.v94b-cat-chips::-webkit-scrollbar { display: none; }
.v94b-cat-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid var(--v94b-line);
  background: rgba(64,224,208,0.06);
  color: var(--v94b-text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v94b-cat-chip:hover { background: rgba(64,224,208,0.18); }
.v94b-cat-chip .v94b-chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--v94b-mint);
}

/* ====================== Game grid ====================== */
.v94b-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.v94b-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(64,224,208,0.07) 0%, rgba(64,224,208,0.0) 80%);
  border: 1px solid var(--v94b-line);
  border-radius: 12px;
  padding: 8px 6px;
  cursor: pointer;
  transition: transform .15s, border-color .15s, background .15s;
}
.v94b-game:hover {
  transform: translateY(-2px);
  border-color: var(--v94b-line-strong);
  background: rgba(64,224,208,0.14);
}
.v94b-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  background: #0e2a2a;
}
.v94b-game-name {
  margin-top: 6px;
  font-size: 11px;
  color: var(--v94b-text);
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 28px;
}

/* ====================== Cards / panels ====================== */
.v94b-panel {
  background: var(--v94b-card);
  border: 1px solid var(--v94b-line);
  border-radius: var(--v94b-radius);
  padding: 16px;
  box-shadow: var(--v94b-shadow);
}
.v94b-panel-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--v94b-text);
}
.v94b-panel p { margin: 0 0 10px; color: var(--v94b-text-dim); font-size: 13.5px; }
.v94b-panel p:last-child { margin-bottom: 0; }

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

.v94b-stat {
  background: rgba(64,224,208,0.06);
  border: 1px solid var(--v94b-line);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.v94b-stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--v94b-cyan);
  line-height: 1.1;
}
.v94b-stat-label {
  font-size: 10.5px;
  color: var(--v94b-text-dim);
  letter-spacing: 0.4px;
}

.v94b-rtp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--v94b-line);
}
.v94b-rtp-row:last-child { border-bottom: none; }
.v94b-rtp-name { font-weight: 700; font-size: 13px; color: var(--v94b-text); }
.v94b-rtp-cat { font-size: 11px; color: var(--v94b-text-dim); }
.v94b-rtp-bar {
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4px;
}
.v94b-rtp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--v94b-mint), var(--v94b-cyan));
  border-radius: 6px;
}
.v94b-rtp-val { font-size: 14px; font-weight: 800; color: var(--v94b-cyan); text-align: right; }

/* ====================== Testimonials ====================== */
.v94b-testi {
  background: var(--v94b-card);
  border: 1px solid var(--v94b-line);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v94b-testi-head { display: flex; align-items: center; gap: 10px; }
.v94b-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--v94b-mint), var(--v94b-teal));
  color: var(--v94b-ink-deep);
  font-weight: 800; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.v94b-testi-name { font-size: 13px; font-weight: 700; color: var(--v94b-text); }
.v94b-testi-meta { font-size: 11px; color: var(--v94b-text-dim); }
.v94b-stars { color: var(--v94b-gold); font-size: 12px; letter-spacing: 1px; }
.v94b-testi-text { font-size: 13px; color: var(--v94b-text-dim); margin: 0; }

/* ====================== Steps ====================== */
.v94b-steps { counter-reset: step; padding: 0; list-style: none; margin: 0; }
.v94b-step {
  position: relative;
  padding: 0 0 16px 32px;
  margin: 0;
}
.v94b-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v94b-cyan), var(--v94b-mint));
  color: var(--v94b-ink-deep);
  font-weight: 800; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.v94b-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px; top: 26px; bottom: 0;
  width: 2px;
  background: var(--v94b-line);
}
.v94b-step h4 { margin: 0 0 4px; font-size: 14px; color: var(--v94b-text); }
.v94b-step p { margin: 0; font-size: 13px; color: var(--v94b-text-dim); }

/* ====================== Extended footer ====================== */
.v94b-extended {
  margin-top: 28px;
  padding: 20px 16px 18px;
  background: linear-gradient(180deg, rgba(0,105,92,0.18) 0%, rgba(15,46,56,0.30) 100%);
  border-top: 1px solid var(--v94b-line);
  border-radius: 20px 20px 0 0;
}
.v94b-extended-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}
.v94b-ext-col h5 {
  font-size: 12px;
  color: var(--v94b-mint);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin: 0 0 8px;
  font-weight: 800;
}
.v94b-ext-list { list-style: none; margin: 0; padding: 0; }
.v94b-ext-list li { margin-bottom: 6px; }
.v94b-ext-list a {
  color: var(--v94b-text-dim);
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v94b-ext-list a:hover { color: var(--v94b-cyan); }
.v94b-ext-list .v94b-chip-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--v94b-mint);
}
.v94b-promo-entries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0 16px;
}
.v94b-promo-entry {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(64,224,208,0.08);
  border: 1px solid var(--v94b-line);
  cursor: pointer;
  min-height: 56px;
}
.v94b-promo-entry:hover { background: rgba(64,224,208,0.18); }
.v94b-promo-entry strong { font-size: 12.5px; color: var(--v94b-text); }
.v94b-promo-entry span { font-size: 11px; color: var(--v94b-text-dim); }

.v94b-disclaimer {
  margin-top: 14px;
  padding: 12px;
  border: 1px dashed var(--v94b-line);
  border-radius: 10px;
  font-size: 11.5px;
  color: var(--v94b-text-dim);
  background: rgba(0,0,0,0.18);
}

/* ====================== Footer ====================== */
.v94b-footer {
  padding: 20px 16px calc(var(--v94b-bottomnav-h) + 24px);
  text-align: center;
  font-size: 12px;
  color: var(--v94b-text-dim);
}
.v94b-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-bottom: 10px;
}
.v94b-footer-links a { color: var(--v94b-text-dim); font-size: 12px; }
.v94b-footer-links a:hover { color: var(--v94b-mint); }
.v94b-copy { margin: 0; line-height: 1.5; }

/* ====================== Bottom nav (centrally raised) ====================== */
.v94b-bottomnav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  width: calc(100% - 20px);
  max-width: calc(var(--v94b-max) - 20px);
  height: var(--v94b-bottomnav-h);
  background: linear-gradient(180deg, rgba(15,46,56,0.98) 0%, rgba(10,24,32,0.98) 100%);
  border: 1px solid var(--v94b-line-strong);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 0 4px rgba(0,0,0,0.18);
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 8px 10px;
  z-index: 70;
}
.v94b-bottomnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 6px 2px 2px;
  color: var(--v94b-text-dim);
  cursor: pointer;
  position: relative;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: none;
  height: 100%;
  transition: color .18s, transform .18s;
}
.v94b-bottomnav-item .v94b-bn-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(64,224,208,0.08);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.v94b-bottomnav-item svg { width: 22px; height: 22px; }
.v94b-bottomnav-item .v94b-bn-label {
  font-size: 10px;
  letter-spacing: 0.3px;
  font-weight: 700;
  opacity: 0.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s, opacity .2s;
}
.v94b-bottomnav-item:hover { color: var(--v94b-cyan); }
.v94b-bottomnav-item:hover .v94b-bn-icon { background: rgba(64,224,208,0.18); }

/* Active state: filled icon + color shift + label reveal */
.v94b-bottomnav-item.v94b-current { color: var(--v94b-cyan); }
.v94b-bottomnav-item.v94b-current .v94b-bn-icon {
  background: linear-gradient(135deg, var(--v94b-cyan), var(--v94b-mint));
  color: var(--v94b-ink-deep);
  box-shadow: 0 6px 14px rgba(0,255,255,0.35);
}
.v94b-bottomnav-item.v94b-current .v94b-bn-icon svg path,
.v94b-bottomnav-item.v94b-current .v94b-bn-icon svg circle,
.v94b-bottomnav-item.v94b-current .v94b-bn-icon svg rect,
.v94b-bottomnav-item.v94b-current .v94b-bn-icon svg polygon {
  fill: var(--v94b-ink-deep);
}
.v94b-bottomnav-item.v94b-current .v94b-bn-label {
  max-height: 16px;
  opacity: 1;
}

/* Raised center button (Home) */
.v94b-bottomnav-item[data-role="home"] .v94b-bn-icon {
  width: 52px; height: 52px;
  margin-top: -22px;
  background: linear-gradient(135deg, var(--v94b-cyan), var(--v94b-mint));
  color: var(--v94b-ink-deep);
  box-shadow: 0 8px 18px rgba(0,255,255,0.35);
  border: 3px solid rgba(15,46,56,0.98);
}
.v94b-bottomnav-item[data-role="home"] svg { width: 24px; height: 24px; }
.v94b-bottomnav-item[data-role="home"] svg path { fill: var(--v94b-ink-deep); }

/* ====================== Helpers ====================== */
.v94b-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.v94b-spacer { height: 14px; }
.v94b-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(64,224,208,0.15);
  color: var(--v94b-cyan);
  border: 1px solid var(--v94b-line);
}
.v94b-prose p { font-size: 13.5px; color: var(--v94b-text-dim); margin: 0 0 10px; }
.v94b-prose a { font-weight: 700; }

/* Inline inline link list */
.v94b-inline-links {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 10px 0 0;
  padding: 0; list-style: none;
}
.v94b-inline-links a {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(64,224,208,0.08);
  border: 1px solid var(--v94b-line);
  color: var(--v94b-text);
}

/* ====================== Wide screens keep mobile canvas ====================== */
@media (min-width: 480px) {
  body { background: #0c1820; }
  .v94b-shell {
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
  }
}

@media (max-width: 360px) {
  .v94b-game-grid { grid-template-columns: repeat(3, 1fr); }
  .v94b-game-name { font-size: 10px; }
  .v94b-slide img { height: 170px; }
}

/* Part1 help-page utilities keep every control touch friendly. */
.v94b-help-hero { padding: 18px; border-radius: 18px; background: linear-gradient(145deg, rgba(0,105,92,.48), rgba(33,48,61,.94)); border: 1px solid var(--v94b-line-strong); box-shadow: var(--v94b-shadow); }
.v94b-help-hero h1 { margin: 0 0 8px; font-size: 25px; line-height: 1.2; }
.v94b-help-hero p { margin: 0; color: var(--v94b-text-dim); font-size: 14px; }
.v94b-help-block { margin-top: 20px; padding: 16px; border-radius: 14px; border: 1px solid var(--v94b-line); background: rgba(33,48,61,.86); }
.v94b-help-block h2 { margin: 0 0 8px; font-size: 18px; line-height: 1.3; color: var(--v94b-text); }
.v94b-help-block p { margin: 0 0 11px; color: var(--v94b-text-dim); font-size: 13.5px; }
.v94b-help-block p:last-child { margin-bottom: 0; }
.v94b-help-block ul, .v94b-help-block ol { margin: 8px 0 0; padding-left: 21px; color: var(--v94b-text-dim); font-size: 13.5px; }
.v94b-help-block li { margin: 0 0 9px; padding-left: 2px; }
.v94b-help-block li:last-child { margin-bottom: 0; }
.v94b-callout { margin-top: 12px; padding: 12px; border-left: 3px solid var(--v94b-cyan); background: rgba(0,255,255,.07); color: var(--v94b-text); font-size: 13px; }
.v94b-help-links { display: grid; gap: 9px; margin-top: 12px; }
.v94b-help-links a { display: block; min-height: 44px; padding: 11px 12px; border-radius: 10px; border: 1px solid var(--v94b-line); background: rgba(64,224,208,.08); font-weight: 700; }
.v94b-promo-list { display: grid; gap: 8px; margin-top: 12px; }
.v94b-promo-list button { min-height: 48px; padding: 10px 12px; border: 1px solid var(--v94b-line-strong); border-radius: 10px; background: linear-gradient(135deg, rgba(0,255,255,.2), rgba(64,224,208,.1)); color: var(--v94b-text); text-align: left; font: inherit; font-weight: 700; cursor: pointer; }
.v94b-promo-list button:hover { background: rgba(64,224,208,.25); }
.v94b-faq-row { padding: 12px 0; border-bottom: 1px dashed var(--v94b-line); }
.v94b-faq-row:last-child { border-bottom: 0; }
.v94b-faq-row h3 { margin: 0 0 4px; font-size: 14px; color: var(--v94b-text); }
.v94b-faq-row p { margin: 0; }

