/* ============================================================
   onbet.cyou — adaptive viewport stylesheet
   Prefix: surfacee6314-  |  palette: midnight violet chrome
   Mobile-first 320-430px canvas, centered phone frame on wide screens.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --surfacee6314-bg-deep: #1A1A1A;
  --surfacee6314-bg-base: #191970;
  --surfacee6314-bg-veil: #14143a;
  --surfacee6314-violet: #9400D3;
  --surfacee6314-orchid: #DA70D6;
  --surfacee6314-lilac: #9966CC;
  --surfacee6314-ink: #f3eafb;
  --surfacee6314-mute: #b9a8d8;
  --surfacee6314-line: rgba(218, 112, 214, 0.22);
  --surfacee6314-glass: rgba(25, 25, 112, 0.55);
  --surfacee6314-card: #20204e;
  --surfacee6314-card-hi: #2a2a63;
  --surfacee6314-gold: #ffd674;
  --surfacee6314-radius-lg: 18px;
  --surfacee6314-radius-md: 12px;
  --surfacee6314-radius-sm: 8px;
  --surfacee6314-shadow-card: 0 8px 22px rgba(0, 0, 0, 0.38);
  --surfacee6314-shadow-float: 0 14px 34px rgba(10, 6, 30, 0.55);
  --surfacee6314-gap: 14px;
  --surfacee6314-max: 430px; /* canonical phone canvas width */
  --surfacee6314-header-h: 60px;
  --surfacee6314-bottomnav-h: 64px;
}

/* ---------- 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: "Be Vietnam Pro", "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
  color: var(--surfacee6314-ink);
  background:
    radial-gradient(1100px 600px at 50% -8%, #2a1b66 0%, transparent 60%),
    radial-gradient(900px 500px at 100% 100%, #3a1d5c 0%, transparent 55%),
    linear-gradient(180deg, var(--surfacee6314-bg-base) 0%, var(--surfacee6314-bg-deep) 70%);
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--surfacee6314-orchid); text-decoration: none; }
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, p, figure { margin: 0; }

/* ---------- Phone canvas frame ---------- */
.surfacee6314-canvas {
  max-width: var(--surfacee6314-max);
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(20, 20, 58, 0.4) 0%, rgba(26, 26, 26, 0.85) 100%);
  min-height: 100vh;
  position: relative;
  box-shadow: var(--surfacee6314-shadow-float);
  overflow: hidden;
}

/* ============================================================
   HEADER — non-symmetrical brand header + action zone
   ============================================================ */
.surfacee6314-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  height: var(--surfacee6314-header-h);
  padding: 0 12px;
  background:
    linear-gradient(100deg, rgba(148, 0, 211, 0.92) 0%, rgba(25, 25, 112, 0.96) 58%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surfacee6314-line);
}

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

.surfacee6314-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
  padding: 2px;
  box-shadow: 0 0 0 1px var(--surfacee6314-orchid), 0 4px 12px rgba(0,0,0,0.35);
  flex: 0 0 auto;
}

.surfacee6314-brand-name {
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 18px;
  color: #fff;
  text-transform: lowercase;
  line-height: 1;
  white-space: nowrap;
}
.surfacee6314-brand-name span {
  color: var(--surfacee6314-gold);
}

/* Action zone — segmented CTA buttons (asymmetric placement) */
.surfacee6314-actions {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.surfacee6314-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.surfacee6314-btn--ghost {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
}
.surfacee6314-btn--ghost:hover { background: rgba(255,255,255,0.18); }

.surfacee6314-btn--primary {
  background: linear-gradient(135deg, var(--surfacee6314-gold) 0%, #ffb347 100%);
  color: #2b1551;
  box-shadow: 0 6px 16px rgba(255, 180, 80, 0.35);
}
.surfacee6314-btn--primary:hover { transform: translateY(-1px); }

.surfacee6314-btn--violet {
  background: linear-gradient(135deg, var(--surfacee6314-orchid) 0%, var(--surfacee6314-violet) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(148, 0, 211, 0.4);
}
.surfacee6314-btn--violet:hover { transform: translateY(-1px); }

.surfacee6314-btn--block {
  width: 100%;
  min-height: 48px;
  font-size: 15px;
}

/* Expandable navigation trigger */
.surfacee6314-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
}
.surfacee6314-menu-btn:hover { background: rgba(255,255,255,0.2); }
.surfacee6314-menu-icon,
.surfacee6314-menu-icon::before,
.surfacee6314-menu-icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
}
.surfacee6314-menu-icon::before { position: absolute; top: -6px; left: 0; }
.surfacee6314-menu-icon::after  { position: absolute; top: 6px; left: 0; }

/* ============================================================
   EXPANDABLE NAVIGATION DRAWER (slide-in)
   ============================================================ */
.surfacee6314-nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 22, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 80;
}
.surfacee6314-nav-scrim.is-open { opacity: 1; visibility: visible; }

.surfacee6314-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(82vw, 340px);
  background:
    linear-gradient(180deg, #211455 0%, #14102f 100%);
  border-left: 1px solid var(--surfacee6314-line);
  box-shadow: -16px 0 40px rgba(0,0,0,0.5);
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 18px 16px calc(var(--surfacee6314-bottomnav-h) + 20px);
  overflow-y: auto;
}
.surfacee6314-nav.is-open { transform: translateX(0); }

.surfacee6314-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.surfacee6314-nav-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--surfacee6314-mute);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.surfacee6314-nav-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.surfacee6314-nav-section { margin-bottom: 18px; }
.surfacee6314-nav-section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--surfacee6314-lilac);
  margin: 0 4px 8px;
}
.surfacee6314-nav-list { display: flex; flex-direction: column; gap: 2px; }
.surfacee6314-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--surfacee6314-ink);
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.18s ease, transform 0.18s ease;
}
.surfacee6314-nav-list a:hover { background: rgba(218, 112, 214, 0.14); transform: translateX(2px); }
.surfacee6314-nav-list a.is-active {
  background: linear-gradient(135deg, rgba(218,112,214,0.28), rgba(148,0,211,0.22));
  box-shadow: inset 3px 0 0 var(--surfacee6314-orchid);
}
.surfacee6314-nav-list a small {
  margin-left: auto;
  color: var(--surfacee6314-mute);
  font-size: 11px;
  font-weight: 500;
}

.surfacee6314-nav-cta {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.surfacee6314-main {
  padding: 14px 12px calc(var(--surfacee6314-bottomnav-h) + 24px);
  position: relative;
  z-index: 1;
}

/* ============================================================
   HERO + CAROUSEL
   ============================================================ */
.surfacee6314-hero {
  position: relative;
  border-radius: var(--surfacee6314-radius-lg);
  overflow: hidden;
  box-shadow: var(--surfacee6314-shadow-card);
  margin-bottom: 16px;
}

.surfacee6314-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--surfacee6314-radius-lg);
}
.surfacee6314-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.surfacee6314-slide {
  flex: 0 0 100%;
  position: relative;
}
.surfacee6314-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.surfacee6314-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 50, 0.05) 30%, rgba(10, 5, 30, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 14px 16px;
}
.surfacee6314-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--surfacee6314-gold);
  background: rgba(0,0,0,0.35);
  padding: 4px 9px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 8px;
}
.surfacee6314-slide-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.surfacee6314-slide-sub {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--surfacee6314-mute);
}
.surfacee6314-slide-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}

.surfacee6314-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.surfacee6314-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.2s, width 0.2s;
}
.surfacee6314-dot.is-active {
  background: var(--surfacee6314-gold);
  width: 18px;
  border-radius: 999px;
}

/* ============================================================
   QUICK ENTRY GRID
   ============================================================ */
.surfacee6314-section {
  margin-top: 18px;
}
.surfacee6314-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.surfacee6314-section-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.surfacee6314-section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--surfacee6314-orchid), var(--surfacee6314-violet));
}
.surfacee6314-section-sub {
  font-size: 12px;
  color: var(--surfacee6314-mute);
  margin-top: 3px;
}
.surfacee6314-section-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--surfacee6314-orchid);
  white-space: nowrap;
}

.surfacee6314-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.surfacee6314-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 6px;
  border-radius: var(--surfacee6314-radius-md);
  background: linear-gradient(180deg, rgba(148,0,211,0.18), rgba(25,25,112,0.18));
  border: 1px solid var(--surfacee6314-line);
  transition: transform 0.18s ease, background 0.18s ease;
  text-align: center;
}
.surfacee6314-quick-item:hover { transform: translateY(-2px); background: rgba(148,0,211,0.28); }
.surfacee6314-quick-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(218,112,214,0.5), rgba(148,0,211,0.3));
  font-size: 18px;
}
.surfacee6314-quick-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--surfacee6314-ink);
  line-height: 1.2;
}

/* ============================================================
   GAME GRID — image with bottom name strip
   ============================================================ */
.surfacee6314-cat {
  margin-top: 22px;
}
.surfacee6314-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--surfacee6314-gold);
  margin-bottom: 4px;
}
.surfacee6314-cat-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--surfacee6314-line);
}
.surfacee6314-cat-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.surfacee6314-cat-count {
  font-size: 11.5px;
  color: var(--surfacee6314-mute);
  background: rgba(255,255,255,0.06);
  padding: 3px 9px;
  border-radius: 999px;
}

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

.surfacee6314-card {
  position: relative;
  display: block;
  border-radius: var(--surfacee6314-radius-md);
  overflow: hidden;
  background: var(--surfacee6314-card);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--surfacee6314-shadow-card);
  cursor: pointer;
}
.surfacee6314-card:hover {
  transform: translateY(-3px);
  border-color: var(--surfacee6314-orchid);
  box-shadow: 0 12px 28px rgba(148,0,211,0.35);
}
.surfacee6314-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.surfacee6314-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.surfacee6314-card:hover .surfacee6314-card-media img { transform: scale(1.05); }
.surfacee6314-card-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 2px 6px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--surfacee6314-violet), var(--surfacee6314-orchid));
  color: #fff;
  text-transform: uppercase;
}
.surfacee6314-card-badge--hot { background: linear-gradient(135deg, #ff5a3c, #ffb347); }
.surfacee6314-card-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 4px;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
  min-height: 30px;
}
.surfacee6314-card-name {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Highlight tile for hero promo inline */
.surfacee6314-card--feature {
  grid-column: span 2;
  grid-row: span 2;
}
.surfacee6314-card--feature .surfacee6314-card-strip { min-height: 38px; }
.surfacee6314-card--feature .surfacee6314-card-name { font-size: 13px; }

/* ============================================================
   PROMO STRIP / JACKPOT TICKER
   ============================================================ */
.surfacee6314-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--surfacee6314-radius-md);
  background:
    linear-gradient(100deg, rgba(148,0,211,0.4), rgba(25,25,112,0.6));
  border: 1px solid var(--surfacee6314-line);
  margin-bottom: 14px;
  overflow: hidden;
}
.surfacee6314-ticker-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surfacee6314-gold);
  flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(255, 214, 116, 0.7);
  animation: surfacee6314Pulse 1.6s infinite;
}
@keyframes surfacee6314Pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 214, 116, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 214, 116, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 214, 116, 0); }
}
.surfacee6314-ticker-text {
  font-size: 12.5px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.surfacee6314-ticker-amount {
  color: var(--surfacee6314-gold);
  font-weight: 800;
}

/* ============================================================
   FEATURE / EDITORIAL BLOCKS
   ============================================================ */
.surfacee6314-panel {
  background: linear-gradient(180deg, rgba(42, 42, 99, 0.55), rgba(20, 20, 58, 0.55));
  border: 1px solid var(--surfacee6314-line);
  border-radius: var(--surfacee6314-radius-lg);
  padding: 16px;
  box-shadow: var(--surfacee6314-shadow-card);
}
.surfacee6314-panel + .surfacee6314-panel { margin-top: 14px; }

.surfacee6314-panel-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.surfacee6314-panel-lead {
  font-size: 13.5px;
  color: var(--surfacee6314-mute);
  margin-bottom: 10px;
}
.surfacee6314-panel p {
  font-size: 13.5px;
  color: #e7dcf4;
  margin-bottom: 10px;
}
.surfacee6314-panel p strong { color: #fff; }
.surfacee6314-panel a {
  color: var(--surfacee6314-orchid);
  font-weight: 600;
  border-bottom: 1px dotted rgba(218,112,214,0.6);
}

.surfacee6314-list-checks {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.surfacee6314-list-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.2px;
  color: #e7dcf4;
}
.surfacee6314-list-checks li::before {
  content: "✓";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surfacee6314-orchid), var(--surfacee6314-violet));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

/* Trick cards */
.surfacee6314-tricks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.surfacee6314-trick {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--surfacee6314-radius-md);
  background: rgba(148,0,211,0.12);
  border: 1px solid var(--surfacee6314-line);
}
.surfacee6314-trick-num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--surfacee6314-gold), #ff9a3c);
  color: #2b1551;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.surfacee6314-trick-body h4 {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 3px;
}
.surfacee6314-trick-body p {
  font-size: 12.8px;
  color: var(--surfacee6314-mute);
  margin: 0;
}

/* Comparison dimensions */
.surfacee6314-compare {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.surfacee6314-compare-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}
.surfacee6314-compare-key {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--surfacee6314-lilac);
}
.surfacee6314-compare-val {
  font-size: 12.8px;
  color: #e7dcf4;
}

/* Inline dual CTA */
.surfacee6314-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 12px;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.surfacee6314-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}
.surfacee6314-stat {
  text-align: center;
  padding: 12px 6px;
  border-radius: var(--surfacee6314-radius-md);
  background: rgba(148,0,211,0.12);
  border: 1px solid var(--surfacee6314-line);
}
.surfacee6314-stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--surfacee6314-gold);
  line-height: 1;
}
.surfacee6314-stat-label {
  margin-top: 5px;
  font-size: 11px;
  color: var(--surfacee6314-mute);
}

/* ============================================================
   FAQ
   ============================================================ */
.surfacee6314-faq { display: flex; flex-direction: column; gap: 8px; }
.surfacee6314-faq details {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--surfacee6314-radius-md);
  padding: 12px 14px;
}
.surfacee6314-faq summary {
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 22px;
}
.surfacee6314-faq summary::-webkit-details-marker { display: none; }
.surfacee6314-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--surfacee6314-orchid);
  font-weight: 700;
}
.surfacee6314-faq details[open] summary::after { content: "–"; }
.surfacee6314-faq p {
  margin: 8px 0 0;
  font-size: 12.8px;
  color: var(--surfacee6314-mute);
}

/* ============================================================
   EXTENDED FOOTER (page directory > brand > promo > disclaimer)
   ============================================================ */
.surfacee6314-extended {
  margin-top: 22px;
  border-top: 1px solid var(--surfacee6314-line);
  padding-top: 18px;
}

.surfacee6314-ext-group { margin-bottom: 16px; }
.surfacee6314-ext-group-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--surfacee6314-orchid);
  margin-bottom: 9px;
  font-weight: 700;
}

.surfacee6314-dir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.surfacee6314-dir a {
  font-size: 12.5px;
  color: var(--surfacee6314-ink);
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.18s;
}
.surfacee6314-dir a:hover { background: rgba(218,112,214,0.16); }
.surfacee6314-dir a::before {
  content: "›";
  color: var(--surfacee6314-orchid);
  font-weight: 800;
}

.surfacee6314-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.surfacee6314-promo-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: var(--surfacee6314-radius-md);
  background: linear-gradient(135deg, rgba(148,0,211,0.25), rgba(25,25,112,0.4));
  border: 1px solid var(--surfacee6314-line);
  cursor: pointer;
}
.surfacee6314-promo-card:hover { transform: translateY(-2px); }
.surfacee6314-promo-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--surfacee6314-gold);
}
.surfacee6314-promo-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.surfacee6314-promo-card-sub {
  font-size: 11.5px;
  color: var(--surfacee6314-mute);
  margin-top: 2px;
}
.surfacee6314-promo-card-cta {
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--surfacee6314-orchid);
}

.surfacee6314-brand-block {
  padding: 14px;
  border-radius: var(--surfacee6314-radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.surfacee6314-brand-block p {
  font-size: 12.5px;
  color: var(--surfacee6314-mute);
  margin: 0;
}

.surfacee6314-disclaimer {
  font-size: 11.2px;
  color: var(--surfacee6314-mute);
  line-height: 1.6;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.25);
  border-left: 3px solid var(--surfacee6314-gold);
}

/* ============================================================
   MAIN FOOTER (copyright)
   ============================================================ */
.surfacee6314-footer {
  padding: 18px 14px calc(var(--surfacee6314-bottomnav-h) + 18px);
  text-align: center;
  border-top: 1px solid var(--surfacee6314-line);
  background: rgba(10, 6, 30, 0.6);
}
.surfacee6314-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.surfacee6314-footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #fff;
  padding: 1px;
}
.surfacee6314-footer-brand strong { color: #fff; font-size: 15px; }
.surfacee6314-footer-copy {
  font-size: 11.5px;
  color: var(--surfacee6314-mute);
  margin-bottom: 6px;
}
.surfacee6314-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-top: 8px;
}
.surfacee6314-footer-links a {
  font-size: 11.5px;
  color: var(--surfacee6314-mute);
}
.surfacee6314-footer-links a:hover { color: var(--surfacee6314-orchid); }

/* ============================================================
   MOBILE BOTTOM NAV — layered bottom strip (5 roles)
   ============================================================ */
.surfacee6314-bottomnav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--surfacee6314-max);
  height: var(--surfacee6314-bottomnav-h);
  background:
    linear-gradient(180deg, rgba(25, 25, 112, 0.92), rgba(10, 6, 30, 0.98));
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--surfacee6314-line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  z-index: 70;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.45);
}
.surfacee6314-bottomnav::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--surfacee6314-orchid), transparent);
}

.surfacee6314-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  color: var(--surfacee6314-mute);
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s ease;
  padding: 6px 2px 4px;
}
.surfacee6314-nav-item.is-active { color: var(--surfacee6314-gold); }
.surfacee6314-nav-item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--surfacee6314-gold);
}
.surfacee6314-nav-item:hover { color: var(--surfacee6314-ink); }

.surfacee6314-nav-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.surfacee6314-nav-item.is-active svg { fill: currentColor; fill-opacity: 0.18; }

/* Center promo pill (highlight) */
.surfacee6314-nav-item--promo {
  position: relative;
}
.surfacee6314-nav-item--promo .surfacee6314-nav-pill {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surfacee6314-gold), #ff7a3c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 140, 60, 0.5);
  margin-top: -16px;
  color: #2b1551;
}
.surfacee6314-nav-item--promo .surfacee6314-nav-pill svg {
  width: 20px;
  height: 20px;
  stroke: #2b1551;
  stroke-width: 2;
  fill: none;
}
.surfacee6314-nav-item--promo span {
  margin-top: 2px;
}

/* ============================================================
   HELPERS
   ============================================================ */
.surfacee6314-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.surfacee6314-fab {
  position: fixed;
  right: 14px;
  bottom: calc(var(--surfacee6314-bottomnav-h) + 14px);
  z-index: 65;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surfacee6314-orchid), var(--surfacee6314-violet));
  box-shadow: 0 8px 20px rgba(148,0,211,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  max-width: calc(var(--surfacee6314-max) - 28px);
}

/* ============================================================
   RESPONSIVE TWEAKS — stable grid tracks on 375-430px
   ============================================================ */
@media (min-width: 360px) {
  .surfacee6314-grid { gap: 9px; }
  .surfacee6314-slide img { height: 210px; }
}

@media (min-width: 410px) {
  body { font-size: 15.5px; }
  .surfacee6314-grid { gap: 10px; }
  .surfacee6314-card-strip { min-height: 32px; }
  .surfacee6314-card-name { font-size: 11.5px; }
  .surfacee6314-slide img { height: 230px; }
  .surfacee6314-promo-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Wide screens keep centered phone canvas */
@media (min-width: 480px) {
  .surfacee6314-canvas {
    border-left: 1px solid rgba(218,112,214,0.1);
    border-right: 1px solid rgba(218,112,214,0.1);
  }
}

/* ---------- Help-page editorial patterns ---------- */
.surfacee6314-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--surfacee6314-mute);
  font-size: 11.5px;
}
.surfacee6314-breadcrumbs a { color: var(--surfacee6314-orchid); }
.surfacee6314-help-hero {
  padding: 20px 16px;
  border: 1px solid var(--surfacee6314-line);
  background: linear-gradient(145deg, rgba(148,0,211,.26), rgba(25,25,112,.5));
  box-shadow: var(--surfacee6314-shadow-card);
  border-radius: var(--surfacee6314-radius-lg);
}
.surfacee6314-help-hero h1 {
  font-size: clamp(23px, 7vw, 31px);
  line-height: 1.15;
  color: #fff;
  letter-spacing: -.45px;
}
.surfacee6314-help-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--surfacee6314-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.surfacee6314-help-hero p { margin-top: 10px; color: #eadff5; font-size: 13.5px; }
.surfacee6314-help-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 14px;
}
.surfacee6314-help-fact {
  padding: 9px 6px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  border-radius: var(--surfacee6314-radius-sm);
}
.surfacee6314-help-fact strong { display: block; color: var(--surfacee6314-gold); font-size: 15px; }
.surfacee6314-help-fact span { color: var(--surfacee6314-mute); font-size: 10.5px; }
.surfacee6314-article { margin-top: 15px; }
.surfacee6314-article > section {
  margin-top: 14px;
  padding: 16px;
  border-left: 3px solid var(--surfacee6314-lilac);
  background: rgba(32,32,78,.58);
  box-shadow: var(--surfacee6314-shadow-card);
}
.surfacee6314-article h2 { color: #fff; font-size: 19px; line-height: 1.3; margin-bottom: 9px; }
.surfacee6314-article h3 { color: var(--surfacee6314-gold); font-size: 14.5px; margin: 14px 0 5px; }
.surfacee6314-article p { color: #e6dcf2; font-size: 13.3px; margin: 0 0 10px; }
.surfacee6314-article ul,
.surfacee6314-article ol { display: grid; gap: 8px; margin: 10px 0; }
.surfacee6314-article li { color: #e6dcf2; font-size: 13.2px; padding-left: 20px; position: relative; }
.surfacee6314-article ul li::before { content: "•"; position: absolute; left: 5px; color: var(--surfacee6314-orchid); font-weight: 900; }
.surfacee6314-article ol { counter-reset: surfacee6314-step; }
.surfacee6314-article ol li { counter-increment: surfacee6314-step; padding: 11px 10px 11px 42px; border: 1px solid var(--surfacee6314-line); background: rgba(0,0,0,.14); }
.surfacee6314-article ol li::before {
  content: counter(surfacee6314-step);
  position: absolute;
  left: 10px;
  top: 10px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #2b1551;
  background: var(--surfacee6314-gold);
  font-weight: 800;
  border-radius: 50%;
}
.surfacee6314-inline-action {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  padding: 12px;
  border: 1px dashed var(--surfacee6314-orchid);
  background: rgba(148,0,211,.12);
}
.surfacee6314-inline-action span { color: #fff; font-size: 12.5px; font-weight: 600; }
.surfacee6314-inline-action button { min-height: 44px; }
.surfacee6314-note {
  margin: 12px 0;
  padding: 11px 12px;
  color: #fff;
  background: rgba(218,112,214,.1);
  border-top: 1px solid var(--surfacee6314-line);
  border-bottom: 1px solid var(--surfacee6314-line);
  font-size: 12.8px;
}
.surfacee6314-qna { display: grid; gap: 9px; }
.surfacee6314-qna dt { color: var(--surfacee6314-gold); font-weight: 700; font-size: 13.5px; }
.surfacee6314-qna dd { margin: 2px 0 8px; color: #e6dcf2; font-size: 13px; }
.surfacee6314-safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.surfacee6314-safety-tile { padding: 11px; border: 1px solid var(--surfacee6314-line); background: rgba(25,25,112,.3); }
.surfacee6314-safety-tile strong { color: var(--surfacee6314-gold); font-size: 12.5px; display: block; }
.surfacee6314-safety-tile span { color: var(--surfacee6314-mute); font-size: 11.5px; }
.surfacee6314-trouble { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 11.5px; }
.surfacee6314-trouble th, .surfacee6314-trouble td { border: 1px solid var(--surfacee6314-line); padding: 8px 6px; text-align: left; vertical-align: top; }
.surfacee6314-trouble th { color: var(--surfacee6314-gold); background: rgba(148,0,211,.16); }
.surfacee6314-trouble td { color: #e6dcf2; }
.surfacee6314-terms { display: grid; grid-template-columns: 88px 1fr; gap: 8px; }
.surfacee6314-terms dt { color: var(--surfacee6314-orchid); font-size: 12px; font-weight: 800; }
.surfacee6314-terms dd { margin: 0; color: #e6dcf2; font-size: 12px; }
.surfacee6314-simple-footer {
  padding: 17px 12px calc(var(--surfacee6314-bottomnav-h) + 18px);
  text-align: center;
  color: var(--surfacee6314-mute);
  font-size: 11.5px;
  border-top: 1px solid var(--surfacee6314-line);
  background: rgba(10,6,30,.65);
}
:focus-visible { outline: 3px solid var(--surfacee6314-gold); outline-offset: 2px; }
@media (max-width: 340px) {
  .surfacee6314-header { gap: 5px; padding: 0 7px; }
  .surfacee6314-brand { gap: 5px; }
  .surfacee6314-brand-logo { width: 32px; height: 32px; }
  .surfacee6314-brand-name { font-size: 15px; }
  .surfacee6314-actions { gap: 4px; }
  .surfacee6314-actions .surfacee6314-btn { min-height: 34px; padding: 0 8px; font-size: 11px; }
  .surfacee6314-menu-btn { width: 34px; height: 34px; }
  .surfacee6314-safety-grid { grid-template-columns: 1fr; }
  .surfacee6314-trouble { font-size: 10.5px; }
}

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