/* ==========================================================================
   melbet ph  -  display stylesheet (mobile-first premium canvas)
   prefix: view898f2-
   palette anchor: #2C2C2C bg / #DCDCDC text / #778899 muted + premium gold
   ========================================================================== */

/* ---------- design tokens ---------- */
:root {
  --view898f2-bg: #2C2C2C;
  --view898f2-bg-deep: #1c1c1c;
  --view898f2-bg-canvas: #232323;
  --view898f2-bg-panel: #303030;
  --view898f2-bg-elev: #3a3a3a;
  --view898f2-bg-line-soft: rgba(220, 220, 220, 0.06);
  --view898f2-text: #DCDCDC;
  --view898f2-text-strong: #f4f4f4;
  --view898f2-text-muted: #778899;
  --view898f2-text-dim: #8d8d8d;
  --view898f2-gold: #c9a86a;
  --view898f2-gold-bright: #e3c98c;
  --view898f2-gold-deep: #a8863f;
  --view898f2-rose: #b5485a;
  --view898f2-line: rgba(220, 220, 220, 0.10);
  --view898f2-line-strong: rgba(220, 220, 220, 0.18);
  --view898f2-line-gold: rgba(201, 168, 106, 0.35);
  --view898f2-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --view898f2-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  --view898f2-shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.55);
  --view898f2-radius-xs: 4px;
  --view898f2-radius-sm: 6px;
  --view898f2-radius: 10px;
  --view898f2-radius-lg: 14px;
  --view898f2-canvas: 440px;
  --view898f2-gap: 14px;
  --view898f2-font-display: "Oswald", "Bebas Neue", "Arial Narrow", system-ui, sans-serif;
  --view898f2-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, 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;
  padding: 0;
  background: #121212;
  color: var(--view898f2-text);
  font-family: var(--view898f2-font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- accessibility helpers ---------- */
.view898f2-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.view898f2-skip-link {
  position: absolute;
  left: 12px; top: -48px;
  background: var(--view898f2-gold);
  color: #1c1c1c;
  padding: 8px 14px;
  border-radius: var(--view898f2-radius-sm);
  font-weight: 600;
  z-index: 200;
  transition: top .18s ease;
}
.view898f2-skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--view898f2-gold-bright);
  outline-offset: 2px;
}

/* ---------- mobile canvas (centered on wide screens) ---------- */
.view898f2-page {
  position: relative;
  width: 100%;
  max-width: var(--view898f2-canvas);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(1100px 420px at 50% -8%, rgba(201, 168, 106, 0.10), transparent 60%),
    linear-gradient(180deg, var(--view898f2-bg) 0%, var(--view898f2-bg-canvas) 30%, var(--view898f2-bg) 100%);
  box-shadow: var(--view898f2-shadow-lg);
  overflow: hidden;
}

/* ---------- fixed header ---------- */
.view898f2-header {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--view898f2-canvas);
  z-index: 120;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.96) 0%, rgba(34, 34, 34, 0.92) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--view898f2-line);
}

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

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

.view898f2-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: var(--view898f2-radius-sm);
  object-fit: cover;
  border: 1px solid var(--view898f2-line-gold);
  background: #000;
  flex-shrink: 0;
}

.view898f2-brand-name {
  font-family: var(--view898f2-font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--view898f2-text-strong);
  line-height: 1;
  white-space: nowrap;
}
.view898f2-brand-name em {
  font-style: normal;
  color: var(--view898f2-gold-bright);
}

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

/* ---------- buttons / CTAs (light rounded text button group) ---------- */
.view898f2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: var(--view898f2-radius-sm);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .3px;
  transition: background .18s ease, color .18s ease, transform .12s ease, border-color .18s ease;
  white-space: nowrap;
}
.view898f2-btn:active { transform: translateY(1px) scale(.99); }

.view898f2-btn-register {
  background: linear-gradient(135deg, var(--view898f2-gold-bright), var(--view898f2-gold-deep));
  color: #1c1c1c;
  box-shadow: 0 4px 12px rgba(201, 168, 106, 0.28);
}
.view898f2-btn-register:hover { background: linear-gradient(135deg, #f0d699, #c09845); }

.view898f2-btn-login {
  background: transparent;
  color: var(--view898f2-text);
  border: 1px solid var(--view898f2-line-strong);
}
.view898f2-btn-login:hover {
  border-color: var(--view898f2-line-gold);
  color: var(--view898f2-gold-bright);
}

.view898f2-menu-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--view898f2-radius-sm);
  border: 1px solid var(--view898f2-line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--view898f2-text);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.view898f2-menu-toggle:hover {
  border-color: var(--view898f2-line-gold);
  color: var(--view898f2-gold-bright);
  background: var(--view898f2-bg-line-soft);
}
.view898f2-menu-toggle svg { width: 20px; height: 20px; }

/* ---------- full-height menu layer ---------- */
.view898f2-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 130;
}
.view898f2-scrim.view898f2-is-open {
  opacity: 1;
  visibility: visible;
}

.view898f2-menu {
  position: fixed;
  top: 0; right: 0;
  width: 84%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(180deg, #262626 0%, #1c1c1c 100%);
  border-left: 1px solid var(--view898f2-line);
  box-shadow: var(--view898f2-shadow-lg);
  transform: translateX(105%);
  transition: transform .26s cubic-bezier(.4, 0, .2, 1);
  z-index: 140;
  display: flex;
  flex-direction: column;
}
.view898f2-menu.view898f2-is-open { transform: translateX(0); }

.view898f2-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--view898f2-line);
}
.view898f2-menu-title {
  font-family: var(--view898f2-font-display);
  font-size: 16px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--view898f2-gold-bright);
}
.view898f2-menu-close {
  width: 34px; height: 34px;
  border-radius: var(--view898f2-radius-sm);
  border: 1px solid var(--view898f2-line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--view898f2-text);
}
.view898f2-menu-close:hover { color: var(--view898f2-gold-bright); border-color: var(--view898f2-line-gold); }
.view898f2-menu-close svg { width: 18px; height: 18px; }

.view898f2-menu-inner {
  flex: 1;
  overflow-y: auto;
  padding: 10px 12px 24px;
}
.view898f2-menu-list { display: flex; flex-direction: column; gap: 2px; }
.view898f2-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-radius: var(--view898f2-radius-sm);
  font-size: 14.5px;
  color: var(--view898f2-text);
  transition: background .16s ease, color .16s ease;
}
.view898f2-menu-item:hover,
.view898f2-menu-item[aria-current="page"] {
  background: var(--view898f2-bg-elev);
  color: var(--view898f2-gold-bright);
}
.view898f2-menu-item svg {
  width: 18px; height: 18px;
  color: var(--view898f2-text-muted);
  flex-shrink: 0;
}
.view898f2-menu-item:hover svg { color: var(--view898f2-gold-bright); }
.view898f2-menu-item span { flex: 1; }
.view898f2-menu-item small {
  font-size: 11px;
  color: var(--view898f2-text-dim);
  letter-spacing: .4px;
  text-transform: uppercase;
}

.view898f2-menu-cta {
  margin: 16px 4px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.view898f2-menu-cta .view898f2-btn { width: 100%; min-height: 42px; }

/* ---------- main content ---------- */
.view898f2-main {
  padding: 70px 0 92px; /* room for fixed header + bottom nav */
}

.view898f2-section {
  padding: 26px 16px 6px;
}
.view898f2-section + .view898f2-section { padding-top: 18px; }
.view898f2-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--view898f2-font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--view898f2-gold);
  margin-bottom: 8px;
}
.view898f2-section-eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--view898f2-gold);
}
.view898f2-section-title {
  font-family: var(--view898f2-font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: .4px;
  color: var(--view898f2-text-strong);
  text-transform: none;
}
.view898f2-section-title b { color: var(--view898f2-gold-bright); font-weight: 700; }
.view898f2-section-intro {
  margin-top: 8px;
  color: var(--view898f2-text-dim);
  font-size: 14px;
  line-height: 1.62;
}

/* ---------- hero / carousel ---------- */
.view898f2-hero { padding: 6px 0 0; }
.view898f2-carousel {
  position: relative;
  margin: 0 12px;
  border-radius: var(--view898f2-radius-lg);
  overflow: hidden;
  box-shadow: var(--view898f2-shadow);
  background: #111;
}
.view898f2-carousel-track {
  display: flex;
  transition: transform .42s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.view898f2-slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  cursor: pointer;
}
.view898f2-slide-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #0e0e0e;
}
.view898f2-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 30%, rgba(0, 0, 0, .72) 100%);
  pointer-events: none;
}
.view898f2-slide-caption {
  position: absolute;
  left: 14px; right: 14px;
  bottom: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}
.view898f2-slide-caption-text { max-width: 72%; }
.view898f2-slide-caption-text small {
  display: block;
  font-family: var(--view898f2-font-display);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--view898f2-gold-bright);
  margin-bottom: 3px;
}
.view898f2-slide-caption-text strong {
  display: block;
  font-family: var(--view898f2-font-display);
  font-size: 18px;
  line-height: 1.12;
  color: #fff;
  font-weight: 600;
  letter-spacing: .4px;
}
.view898f2-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--view898f2-gold);
  color: #1c1c1c;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 11px;
  border-radius: var(--view898f2-radius-sm);
  letter-spacing: .4px;
  text-transform: uppercase;
}

.view898f2-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.view898f2-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  transition: background .18s ease, width .18s ease;
  padding: 0;
}
.view898f2-dot.view898f2-is-active {
  width: 20px;
  border-radius: 4px;
  background: var(--view898f2-gold-bright);
}

/* ---------- quick action bar ---------- */
.view898f2-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 12px 2px;
}
.view898f2-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px 10px;
  border-radius: var(--view898f2-radius);
  background: var(--view898f2-bg-panel);
  border: 1px solid var(--view898f2-line);
  transition: border-color .18s ease, transform .12s ease, background .18s ease;
}
.view898f2-quick-item:active { transform: scale(.97); }
.view898f2-quick-item:hover { border-color: var(--view898f2-line-gold); }
.view898f2-quick-ico {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--view898f2-gold-bright);
}
.view898f2-quick-ico svg { width: 26px; height: 26px; }
.view898f2-quick-label {
  font-size: 11.5px;
  color: var(--view898f2-text);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* ---------- H1 / lede block ---------- */
.view898f2-lede { padding: 22px 16px 4px; }
.view898f2-h1 {
  font-family: var(--view898f2-font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: .3px;
  color: var(--view898f2-text-strong);
  margin: 0 0 10px;
}
.view898f2-h1 b { color: var(--view898f2-gold-bright); }
.view898f2-lede p {
  color: var(--view898f2-text-dim);
  font-size: 14px;
  line-height: 1.66;
}
.view898f2-lede p + p { margin-top: 8px; }

/* ---------- game category block ---------- */
.view898f2-cat-block { margin-top: 10px; }
.view898f2-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.view898f2-cat-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--view898f2-font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .5px;
  color: var(--view898f2-text-strong);
}
.view898f2-cat-title svg {
  width: 20px; height: 20px;
  color: var(--view898f2-gold-bright);
  flex-shrink: 0;
}
.view898f2-cat-meta {
  font-size: 11.5px;
  color: var(--view898f2-text-muted);
  letter-spacing: .3px;
}

.view898f2-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.view898f2-game-card {
  position: relative;
  border-radius: var(--view898f2-radius);
  background: var(--view898f2-bg-panel);
  border: 1px solid var(--view898f2-line);
  overflow: hidden;
  transition: transform .12s ease, border-color .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.view898f2-game-card:active { transform: translateY(1px) scale(.985); }
.view898f2-game-card:hover {
  border-color: var(--view898f2-line-gold);
  box-shadow: var(--view898f2-shadow-sm);
}
.view898f2-game-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0e0e0e;
  overflow: hidden;
}
.view898f2-game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .26s ease;
}
.view898f2-game-card:hover .view898f2-game-img { transform: scale(1.05); }
.view898f2-game-tag {
  position: absolute;
  top: 5px; left: 5px;
  font-family: var(--view898f2-font-display);
  font-size: 9px;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .6);
  color: var(--view898f2-gold-bright);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--view898f2-line-gold);
}
.view898f2-game-name {
  padding: 6px 7px 8px;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--view898f2-text);
  text-align: center;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 360px) {
  .view898f2-game-grid { grid-template-columns: repeat(4, 1fr); gap: 9px; }
}
@media (min-width: 400px) {
  .view898f2-game-grid { gap: 10px; }
  .view898f2-game-name { font-size: 12px; }
}

/* ---------- feature grid ---------- */
.view898f2-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
.view898f2-feature-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--view898f2-radius);
  background: var(--view898f2-bg-panel);
  border: 1px solid var(--view898f2-line);
  transition: border-color .18s ease;
}
.view898f2-feature-item:hover { border-color: var(--view898f2-line-gold); }
.view898f2-feature-ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--view898f2-radius-sm);
  background: rgba(201, 168, 106, 0.12);
  color: var(--view898f2-gold-bright);
}
.view898f2-feature-ico svg { width: 22px; height: 22px; }
.view898f2-feature-body h3 {
  font-family: var(--view898f2-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--view898f2-text-strong);
  margin-bottom: 3px;
  letter-spacing: .3px;
}
.view898f2-feature-body p {
  font-size: 13px;
  color: var(--view898f2-text-dim);
  line-height: 1.55;
}

/* ---------- FAQs ---------- */
.view898f2-faqs { margin-top: 12px; }
.view898f2-faq-item {
  border: 1px solid var(--view898f2-line);
  border-radius: var(--view898f2-radius);
  background: var(--view898f2-bg-panel);
  margin-bottom: 8px;
  overflow: hidden;
}
.view898f2-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  text-align: left;
  font-family: var(--view898f2-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--view898f2-text-strong);
  line-height: 1.35;
}
.view898f2-faq-q-ico {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--view898f2-gold-bright);
  transition: transform .22s ease;
}
.view898f2-faq-item.view898f2-is-open .view898f2-faq-q-ico { transform: rotate(45deg); }
.view898f2-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.view898f2-faq-a-inner {
  padding: 0 14px 14px;
  font-size: 13.5px;
  color: var(--view898f2-text-dim);
  line-height: 1.6;
}

/* ---------- mobile access summary / steps ---------- */
.view898f2-steps {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.view898f2-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: var(--view898f2-radius);
  background: var(--view898f2-bg-panel);
  border: 1px solid var(--view898f2-line);
}
.view898f2-step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--view898f2-gold-bright), var(--view898f2-gold-deep));
  color: #1c1c1c;
  font-family: var(--view898f2-font-display);
  font-weight: 700;
  font-size: 13px;
}
.view898f2-step-body strong {
  display: block;
  font-size: 13.5px;
  color: var(--view898f2-text-strong);
  margin-bottom: 2px;
}
.view898f2-step-body span {
  font-size: 12.5px;
  color: var(--view898f2-text-dim);
  line-height: 1.5;
}

/* ---------- comparison table ---------- */
.view898f2-compare {
  margin-top: 12px;
  border: 1px solid var(--view898f2-line);
  border-radius: var(--view898f2-radius);
  overflow: hidden;
  background: var(--view898f2-bg-panel);
}
.view898f2-compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 1px;
  background: var(--view898f2-line);
}
.view898f2-compare-row + .view898f2-compare-row { border-top: 0; }
.view898f2-compare-row > div {
  background: var(--view898f2-bg-panel);
  padding: 11px 13px;
  font-size: 13px;
  line-height: 1.4;
}
.view898f2-compare-row > div:first-child {
  font-family: var(--view898f2-font-display);
  font-weight: 600;
  color: var(--view898f2-gold-bright);
  letter-spacing: .3px;
  font-size: 12.5px;
  text-transform: uppercase;
}
.view898f2-compare-row > div:last-child { color: var(--view898f2-text); }
.view898f2-compare-head .view898f2-compare-row > div {
  background: var(--view898f2-bg-elev);
  font-size: 12px;
  color: var(--view898f2-text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* ---------- selection criteria ---------- */
.view898f2-criteria {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.view898f2-criteria-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: var(--view898f2-radius);
  background: var(--view898f2-bg-panel);
  border: 1px solid var(--view898f2-line);
  border-left: 3px solid var(--view898f2-gold);
}
.view898f2-criteria-item svg {
  width: 18px; height: 18px;
  color: var(--view898f2-gold-bright);
  flex-shrink: 0;
  margin-top: 1px;
}
.view898f2-criteria-item span {
  font-size: 13px;
  color: var(--view898f2-text);
  line-height: 1.55;
}
.view898f2-criteria-item strong { color: var(--view898f2-text-strong); }

/* ---------- inline body link chip ---------- */
.view898f2-body-link {
  color: var(--view898f2-gold-bright);
  border-bottom: 1px dashed rgba(201, 168, 106, 0.55);
  transition: color .16s ease, border-color .16s ease;
}
.view898f2-body-link:hover {
  color: var(--view898f2-gold-bright);
  border-bottom-color: var(--view898f2-gold-bright);
}

/* ---------- SEO long-form text ---------- */
.view898f2-longform { margin-top: 12px; }
.view898f2-longform h2 {
  font-family: var(--view898f2-font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  color: var(--view898f2-text-strong);
  margin: 18px 0 8px;
  letter-spacing: .3px;
}
.view898f2-longform h2:first-child { margin-top: 0; }
.view898f2-longform h3 {
  font-family: var(--view898f2-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--view898f2-gold-bright);
  margin: 12px 0 6px;
  letter-spacing: .3px;
}
.view898f2-longform p {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--view898f2-text-dim);
  margin-bottom: 8px;
}
.view898f2-longform p strong { color: var(--view898f2-text); font-weight: 600; }
.view898f2-longform ul {
  margin: 4px 0 10px;
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.view898f2-longform ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--view898f2-text-dim);
  line-height: 1.55;
}
.view898f2-longform ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--view898f2-gold);
}

/* ---------- inline promo strip ---------- */
.view898f2-promo-strip {
  margin: 18px 16px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--view898f2-radius-lg);
  background: linear-gradient(120deg, rgba(201, 168, 106, 0.18), rgba(201, 168, 106, 0.04));
  border: 1px solid var(--view898f2-line-gold);
}
.view898f2-promo-strip-text strong {
  display: block;
  font-family: var(--view898f2-font-display);
  font-size: 15px;
  color: var(--view898f2-text-strong);
  letter-spacing: .3px;
}
.view898f2-promo-strip-text span {
  font-size: 12px;
  color: var(--view898f2-text-dim);
}
.view898f2-promo-strip .view898f2-btn { min-height: 40px; }

/* ---------- extended footer (homepage only) ---------- */
.view898f2-ext-footer {
  margin-top: 26px;
  padding: 22px 16px 14px;
  background: linear-gradient(180deg, #202020 0%, #181818 100%);
  border-top: 1px solid var(--view898f2-line);
}
.view898f2-ext-block + .view898f2-ext-block { margin-top: 18px; }
.view898f2-ext-block-title {
  font-family: var(--view898f2-font-display);
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--view898f2-gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.view898f2-ext-block-title svg { width: 16px; height: 16px; }

.view898f2-ext-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.view898f2-ext-promo {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border-radius: var(--view898f2-radius-sm);
  background: var(--view898f2-bg-panel);
  border: 1px solid var(--view898f2-line);
  transition: border-color .18s ease, background .18s ease;
}
.view898f2-ext-promo:active { transform: scale(.98); }
.view898f2-ext-promo:hover { border-color: var(--view898f2-line-gold); background: var(--view898f2-bg-elev); }
.view898f2-ext-promo-ico {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(201, 168, 106, 0.14);
  color: var(--view898f2-gold-bright);
}
.view898f2-ext-promo-ico svg { width: 17px; height: 17px; }
.view898f2-ext-promo-text strong {
  display: block;
  font-size: 12.5px;
  color: var(--view898f2-text-strong);
  line-height: 1.2;
}
.view898f2-ext-promo-text span {
  font-size: 10.5px;
  color: var(--view898f2-text-muted);
}

.view898f2-ext-brand-text {
  font-size: 12.5px;
  color: var(--view898f2-text-dim);
  line-height: 1.6;
}
.view898f2-ext-brand-text strong { color: var(--view898f2-text); }

.view898f2-ext-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.view898f2-ext-directory a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 4px;
  font-size: 12.5px;
  color: var(--view898f2-text);
  border-bottom: 1px solid var(--view898f2-line-soft);
  transition: color .16s ease;
}
.view898f2-ext-directory a:hover { color: var(--view898f2-gold-bright); }
.view898f2-ext-directory a::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--view898f2-text-muted);
  flex-shrink: 0;
}
.view898f2-ext-directory a:hover::before { background: var(--view898f2-gold-bright); }

.view898f2-ext-disclaimer {
  margin-top: 4px;
  padding: 11px 13px;
  border-radius: var(--view898f2-radius-sm);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--view898f2-line);
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--view898f2-text-muted);
}

/* ---------- universal footer ---------- */
.view898f2-footer {
  padding: 18px 16px 12px;
  background: #161616;
  border-top: 1px solid var(--view898f2-line);
  text-align: center;
}
.view898f2-footer-mark {
  font-family: var(--view898f2-font-display);
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--view898f2-text-muted);
  margin-bottom: 4px;
}
.view898f2-footer-mark em { font-style: normal; color: var(--view898f2-gold-bright); }
.view898f2-footer-copy {
  font-size: 11px;
  color: var(--view898f2-text-dim);
  letter-spacing: .2px;
}

/* ---------- mobile bottom nav (5 roles) ---------- */
.view898f2-bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--view898f2-canvas);
  z-index: 110;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(18, 18, 18, 0.99));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--view898f2-line-gold);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.4);
}
.view898f2-bottom-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 2px 9px;
  min-height: 56px;
  color: var(--view898f2-text-muted);
  transition: color .16s ease, background .16s ease;
}
.view898f2-bottom-nav-item:active { background: rgba(255, 255, 255, 0.03); }
.view898f2-bottom-nav-item:hover { color: var(--view898f2-text); }
.view898f2-bottom-nav-item[aria-current="page"] {
  color: var(--view898f2-gold-bright);
}
.view898f2-bottom-nav-item[aria-current="page"]::before {
  content: "";
  position: absolute;
  top: 0; left: 22%; right: 22%;
  height: 2px;
  background: var(--view898f2-gold-bright);
  border-radius: 0 0 3px 3px;
}
.view898f2-bottom-nav-item[aria-current="page"] {
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.12), transparent);
}
.view898f2-bottom-nav-ico {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.view898f2-bottom-nav-ico svg { width: 21px; height: 21px; }
.view898f2-bottom-nav-label {
  font-size: 10px;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-weight: 500;
}
.view898f2-bottom-nav-badge {
  position: absolute;
  top: -2px; right: -8px;
  min-width: 14px; height: 14px;
  padding: 0 3px;
  border-radius: 7px;
  background: var(--view898f2-rose);
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.view898f2-bottom-nav-promo {
  width: 38px; height: 38px;
  margin-top: -16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--view898f2-gold-bright), var(--view898f2-gold-deep));
  color: #1c1c1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201, 168, 106, 0.45);
  border: 3px solid #1a1a1a;
}
.view898f2-bottom-nav-promo svg { width: 19px; height: 19px; }

/* ---------- responsive fine-tuning ---------- */
@media (min-width: 414px) {
  .view898f2-h1 { font-size: 32px; }
  .view898f2-section-title { font-size: 25px; }
  .view898f2-ext-promos { gap: 10px; }
}

@media (min-width: 480px) {
  .view898f2-feature-grid { grid-template-columns: 1fr 1fr; }
  .view898f2-ext-promos { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- help page content ---------- */
.view898f2-help-hero {
  margin: 8px 16px 0;
  padding: 22px 18px 20px;
  border: 1px solid var(--view898f2-line-gold);
  border-left: 4px solid var(--view898f2-gold);
  background: linear-gradient(135deg, rgba(201, 168, 106, .16), rgba(48, 48, 48, .82));
}
.view898f2-help-kicker {
  display: block;
  color: var(--view898f2-gold-bright);
  font-family: var(--view898f2-font-display);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.view898f2-help-hero h1 {
  font-family: var(--view898f2-font-display);
  color: var(--view898f2-text-strong);
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: .3px;
}
.view898f2-help-hero p { margin-top: 10px; color: var(--view898f2-text-dim); font-size: 14px; line-height: 1.65; }
.view898f2-help-index { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 14px; }
.view898f2-help-index a { min-height: 48px; display: flex; align-items: center; padding: 9px 10px; border: 1px solid var(--view898f2-line); background: var(--view898f2-bg-panel); color: var(--view898f2-text); font-size: 12px; line-height: 1.3; }
.view898f2-help-index a:hover { border-color: var(--view898f2-line-gold); color: var(--view898f2-gold-bright); }
.view898f2-help-section { padding-top: 24px; }
.view898f2-help-section h2 { font-family: var(--view898f2-font-display); color: var(--view898f2-text-strong); font-size: 22px; line-height: 1.18; margin-bottom: 8px; }
.view898f2-help-section h3 { font-family: var(--view898f2-font-display); color: var(--view898f2-gold-bright); font-size: 16px; line-height: 1.25; margin: 15px 0 6px; }
.view898f2-help-section p { color: var(--view898f2-text-dim); font-size: 13.5px; line-height: 1.68; margin-bottom: 9px; }
.view898f2-help-section ul, .view898f2-help-section ol { display: flex; flex-direction: column; gap: 7px; margin: 10px 0 14px; padding-left: 20px; list-style: disc; }
.view898f2-help-section ol { list-style: decimal; }
.view898f2-help-section li { padding-left: 3px; color: var(--view898f2-text-dim); font-size: 13px; line-height: 1.55; }
.view898f2-help-section li::marker { color: var(--view898f2-gold); }
.view898f2-fact-rail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 12px 0 4px; }
.view898f2-fact { padding: 12px; border-top: 2px solid var(--view898f2-gold); background: var(--view898f2-bg-panel); }
.view898f2-fact strong { display: block; color: var(--view898f2-gold-bright); font-family: var(--view898f2-font-display); font-size: 14px; margin-bottom: 3px; }
.view898f2-fact span { display: block; color: var(--view898f2-text-dim); font-size: 12px; line-height: 1.45; }
.view898f2-help-note { padding: 13px 14px; margin: 12px 0; border: 1px solid var(--view898f2-line); background: rgba(0,0,0,.16); color: var(--view898f2-text); font-size: 13px; line-height: 1.58; }
.view898f2-help-note strong { color: var(--view898f2-gold-bright); }
.view898f2-help-cta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 16px 0 2px; padding: 14px; border: 1px solid var(--view898f2-line-gold); background: rgba(201,168,106,.08); }
.view898f2-help-cta p { flex: 1 1 180px; margin: 0; }
.view898f2-help-qa { border-top: 1px solid var(--view898f2-line); padding: 12px 0; }
.view898f2-help-qa strong { display: block; color: var(--view898f2-text-strong); font-size: 14px; margin-bottom: 4px; }
.view898f2-help-qa span { display: block; color: var(--view898f2-text-dim); font-size: 13px; line-height: 1.58; }
.view898f2-help-table { width: 100%; border-collapse: collapse; margin: 12px 0 14px; font-size: 12px; }
.view898f2-help-table th, .view898f2-help-table td { padding: 9px 8px; text-align: left; vertical-align: top; border: 1px solid var(--view898f2-line); line-height: 1.45; }
.view898f2-help-table th { color: var(--view898f2-gold-bright); background: var(--view898f2-bg-elev); font-family: var(--view898f2-font-display); font-weight: 600; }
.view898f2-help-table td { color: var(--view898f2-text-dim); background: var(--view898f2-bg-panel); }
.view898f2-help-link { color: var(--view898f2-gold-bright); border-bottom: 1px dashed var(--view898f2-gold); }

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