@charset "UTF-8";
/*!
 * DraftKings Casino - draftkings-casino-tokens-6f0f7f.css
 * Mobile-first tokens and components for the 320-430px canvas.
 * All custom classes and variables use the "view6f0f7-" prefix.
 * Comments in English only.
 */

/* ------------------------------------------------------------------ *
 * Design tokens (prefixed)
 * Palette: #AFEEEE pale mint | #495057 slate | #FFD700 gold |
 *          #2C3E50 deep ink | #FFA500 amber | #40E0D0 teal
 * Dark backgrounds, light text.
 * ------------------------------------------------------------------ */
:root {
  --view6f0f7-ink-900: #2C3E50;
  --view6f0f7-ink-800: #243342;
  --view6f0f7-ink-700: #1c2a36;
  --view6f0f7-ink-600: #15212b;
  --view6f0f7-slate-500: #495057;
  --view6f0f7-slate-600: #3a4046;
  --view6f0f7-mint-100: #AFEEEE;
  --view6f0f7-mint-200: #93dcdc;
  --view6f0f7-gold-400: #FFD700;
  --view6f0f7-gold-300: #f6c813;
  --view6f0f7-amber-500: #FFA500;
  --view6f0f7-amber-400: #f5922a;
  --view6f0f7-teal-500: #40E0D0;
  --view6f0f7-teal-400: #2cc3b4;
  --view6f0f7-line: rgba(175, 238, 238, 0.14);
  --view6f0f7-line-strong: rgba(255, 215, 0, 0.32);
  --view6f0f7-shadow-1: 0 6px 18px rgba(0, 0, 0, 0.32);
  --view6f0f7-shadow-2: 0 10px 28px rgba(0, 0, 0, 0.42);
  --view6f0f7-radius-sm: 8px;
  --view6f0f7-radius-md: 14px;
  --view6f0f7-radius-lg: 22px;
  --view6f0f7-radius-pill: 999px;
  --view6f0f7-gap-1: 6px;
  --view6f0f7-gap-2: 10px;
  --view6f0f7-gap-3: 14px;
  --view6f0f7-gap-4: 18px;
  --view6f0f7-gap-5: 26px;
  --view6f0f7-font: "Segoe UI", "Helvetica Neue", Roboto, Arial, system-ui, -apple-system, sans-serif;
  --view6f0f7-maxw: 480px;
  --view6f0f7-header-h: 58px;
  --view6f0f7-nav-h: 66px;
}

/* ------------------------------------------------------------------ *
 * Base reset
 * ------------------------------------------------------------------ */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--view6f0f7-ink-900);
  color: var(--view6f0f7-mint-100);
  font-family: var(--view6f0f7-font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; border: 0; }
a { color: var(--view6f0f7-teal-500); text-decoration: none; }
a:hover, a:focus { color: var(--view6f0f7-mint-100); text-decoration: underline; }
button { font-family: inherit; }
:focus-visible {
  outline: 2px solid var(--view6f0f7-gold-400);
  outline-offset: 2px;
  border-radius: 4px;
}
.view6f0f7-no-scroll { overflow: hidden; }

/* Centered mobile canvas on wide screens. */
body {
  display: flex;
  justify-content: center;
  background: radial-gradient(1200px 600px at 50% -10%, #1f3243 0%, var(--view6f0f7-ink-900) 60%);
}
.view6f0f7-shell {
  width: 100%;
  max-width: var(--view6f0f7-maxw);
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(180deg, var(--view6f0f7-ink-900) 0%, var(--view6f0f7-ink-800) 38%, var(--view6f0f7-ink-900) 100%);
  box-shadow: var(--view6f0f7-shadow-2);
}

/* ------------------------------------------------------------------ *
 * Skip link
 * ------------------------------------------------------------------ */
.view6f0f7-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--view6f0f7-gold-400);
  color: var(--view6f0f7-ink-900);
  padding: 10px 16px;
  border-radius: 0 0 var(--view6f0f7-radius-md) 0;
  font-weight: 700;
  z-index: 200;
}
.view6f0f7-skip:focus { left: 0; }

/* ------------------------------------------------------------------ *
 * Header - minimal title action band
 * ------------------------------------------------------------------ */
.view6f0f7-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--view6f0f7-header-h);
  display: flex;
  align-items: center;
  gap: var(--view6f0f7-gap-2);
  padding: 0 12px;
  background: linear-gradient(180deg, rgba(28, 42, 54, 0.96) 0%, rgba(44, 62, 80, 0.92) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--view6f0f7-line);
}
.view6f0f7-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
}
.view6f0f7-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--view6f0f7-gold-400), var(--view6f0f7-amber-500));
  padding: 2px;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.28);
}
.view6f0f7-brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.view6f0f7-brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--view6f0f7-mint-100);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view6f0f7-brand-tag {
  font-size: 10px;
  color: var(--view6f0f7-gold-400);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.view6f0f7-head-actions { display: flex; align-items: center; gap: 6px; }
.view6f0f7-btn {
  border: 0;
  border-radius: var(--view6f0f7-radius-pill);
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  min-height: 36px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.view6f0f7-btn:hover { text-decoration: none; }
.view6f0f7-btn--login {
  background: transparent;
  color: var(--view6f0f7-mint-100);
  border: 1px solid var(--view6f0f7-line-strong);
}
.view6f0f7-btn--login:hover { background: rgba(175, 238, 238, 0.08); color: var(--view6f0f7-mint-100); }
.view6f0f7-btn--register {
  background: linear-gradient(135deg, var(--view6f0f7-gold-400), var(--view6f0f7-amber-500));
  color: var(--view6f0f7-ink-900);
  box-shadow: 0 4px 14px rgba(255, 165, 0, 0.32);
}
.view6f0f7-btn--register:hover { color: var(--view6f0f7-ink-900); transform: translateY(-1px); }
.view6f0f7-btn:active { transform: translateY(1px); }

.view6f0f7-menu-trigger {
  width: 38px;
  height: 38px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--view6f0f7-line);
  border-radius: 10px;
  cursor: pointer;
}
.view6f0f7-menu-trigger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--view6f0f7-mint-100);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.view6f0f7-trigger--active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.view6f0f7-trigger--active span:nth-child(2) { opacity: 0; }
.view6f0f7-trigger--active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------------------ *
 * Routing panel (compact menu) + backdrop
 * ------------------------------------------------------------------ */
.view6f0f7-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 20, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 90;
}
.view6f0f7-backdrop--visible { opacity: 1; visibility: visible; }
.view6f0f7-route {
  position: fixed;
  top: 0;
  right: 0;
  width: 86%;
  max-width: 360px;
  height: 100%;
  background: linear-gradient(180deg, var(--view6f0f7-ink-800), var(--view6f0f7-ink-900));
  border-left: 1px solid var(--view6f0f7-line);
  box-shadow: var(--view6f0f7-shadow-2);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.view6f0f7-route--open { transform: translateX(0); }
.view6f0f7-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--view6f0f7-line);
}
.view6f0f7-route-title {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--view6f0f7-gold-400);
  font-weight: 700;
}
.view6f0f7-route-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--view6f0f7-line);
  color: var(--view6f0f7-mint-100);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.view6f0f7-route-body { padding: 10px 12px 28px; overflow-y: auto; }
.view6f0f7-route-group { margin: 12px 0 18px; }
.view6f0f7-route-group-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--view6f0f7-teal-500);
  padding: 0 6px 8px;
}
.view6f0f7-route-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--view6f0f7-mint-100);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.view6f0f7-route-link:hover {
  background: rgba(64, 224, 208, 0.1);
  border-color: var(--view6f0f7-line);
  color: var(--view6f0f7-mint-100);
  text-decoration: none;
}
.view6f0f7-route-link:active { transform: translateX(2px); }
.view6f0f7-route-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--view6f0f7-teal-500);
  flex: 0 0 auto;
}
.view6f0f7-route-cta {
  margin-top: 8px;
  padding: 14px;
  border-radius: var(--view6f0f7-radius-md);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 165, 0, 0.08));
  border: 1px solid var(--view6f0f7-line-strong);
}
.view6f0f7-route-cta-text { font-size: 12.5px; color: var(--view6f0f7-mint-100); margin-bottom: 10px; }
.view6f0f7-route-cta-row { display: flex; gap: 8px; }
.view6f0f7-route-cta-row .view6f0f7-btn { flex: 1; text-align: center; }

/* ------------------------------------------------------------------ *
 * Hero carousel
 * ------------------------------------------------------------------ */
.view6f0f7-hero {
  position: relative;
  margin: 12px 12px 0;
  border-radius: var(--view6f0f7-radius-lg);
  overflow: hidden;
  box-shadow: var(--view6f0f7-shadow-1);
  background: var(--view6f0f7-ink-700);
}
.view6f0f7-hero-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.3, 1);
}
.view6f0f7-hero-slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  cursor: pointer;
}
.view6f0f7-hero-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.view6f0f7-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 42, 54, 0) 30%, rgba(21, 33, 43, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
}
.view6f0f7-hero-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.view6f0f7-hero-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--view6f0f7-gold-400);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}
.view6f0f7-hero-sub { font-size: 12px; color: var(--view6f0f7-mint-100); }
.view6f0f7-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(28, 42, 54, 0.7);
  color: var(--view6f0f7-mint-100);
  border: 1px solid var(--view6f0f7-line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  font-size: 16px;
  transition: background 0.18s ease;
}
.view6f0f7-hero-arrow:hover { background: var(--view6f0f7-ink-900); }
.view6f0f7-hero-prev { left: 8px; }
.view6f0f7-hero-next { right: 8px; }
.view6f0f7-hero-controls {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 5;
}
.view6f0f7-hero-dots {
  position: relative;
  display: inline-flex;
  gap: 8px;
  padding: 4px 6px;
}
.view6f0f7-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(175, 238, 238, 0.45);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.view6f0f7-hero-dot--active { background: var(--view6f0f7-gold-400); transform: scale(1.18); }
.view6f0f7-hero-indicator {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--view6f0f7-gold-400);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.18);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

/* ------------------------------------------------------------------ *
 * Main content + headings
 * ------------------------------------------------------------------ */
.view6f0f7-main { padding: 16px 12px 28px; }
.view6f0f7-h1 {
  font-size: 22px;
  line-height: 1.25;
  margin: 6px 0 10px;
  color: var(--view6f0f7-mint-100);
  font-weight: 800;
  letter-spacing: 0.2px;
}
.view6f0f7-h1 .view6f0f7-accent { color: var(--view6f0f7-gold-400); }
.view6f0f7-lead {
  font-size: 14px;
  color: var(--view6f0f7-mint-100);
  opacity: 0.92;
  margin: 0 0 14px;
}
.view6f0f7-h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 22px 0 10px;
  color: var(--view6f0f7-mint-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.view6f0f7-h2::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--view6f0f7-gold-400), var(--view6f0f7-amber-500));
  display: inline-block;
}
.view6f0f7-h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 14px 0 6px;
  color: var(--view6f0f7-teal-500);
}
.view6f0f7-p { margin: 0 0 10px; font-size: 14px; color: var(--view6f0f7-mint-100); opacity: 0.92; }
.view6f0f7-p a { color: var(--view6f0f7-gold-400); border-bottom: 1px dashed rgba(255, 215, 0, 0.4); }
.view6f0f7-p a:hover { color: var(--view6f0f7-amber-500); text-decoration: none; }
.view6f0f7-eyebrow {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--view6f0f7-teal-500);
  margin-bottom: 4px;
  font-weight: 700;
}

/* ------------------------------------------------------------------ *
 * Promo strip
 * ------------------------------------------------------------------ */
.view6f0f7-promo-strip {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin: 4px 0 14px;
}
.view6f0f7-promo-pill {
  flex: 1 1 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(64, 224, 208, 0.08));
  border: 1px solid var(--view6f0f7-line);
  border-radius: var(--view6f0f7-radius-md);
  padding: 10px;
  font-size: 11px;
  color: var(--view6f0f7-mint-100);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.view6f0f7-promo-pill strong { color: var(--view6f0f7-gold-400); font-size: 13px; }

/* ------------------------------------------------------------------ *
 * Game sections
 * ------------------------------------------------------------------ */
.view6f0f7-section {
  margin: 18px 0 6px;
  border-radius: var(--view6f0f7-radius-md);
  background: linear-gradient(180deg, rgba(36, 51, 66, 0.6), rgba(28, 42, 54, 0.5));
  border: 1px solid var(--view6f0f7-line);
  padding: 14px 12px;
}
.view6f0f7-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.view6f0f7-section-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--view6f0f7-mint-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.view6f0f7-section-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: var(--view6f0f7-radius-pill);
  background: rgba(64, 224, 208, 0.12);
  color: var(--view6f0f7-teal-500);
  border: 1px solid var(--view6f0f7-line);
}
.view6f0f7-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.view6f0f7-game-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 4px 8px;
  border-radius: 12px;
  background: rgba(28, 42, 54, 0.7);
  border: 1px solid var(--view6f0f7-line);
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  text-align: center;
}
.view6f0f7-game-tile:hover {
  border-color: var(--view6f0f7-line-strong);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.32);
  text-decoration: none;
}
.view6f0f7-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  background: var(--view6f0f7-ink-700);
}
.view6f0f7-game-name {
  font-size: 10.5px;
  color: var(--view6f0f7-mint-100);
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 26px;
}
.view6f0f7-game-tile:hover .view6f0f7-game-name { color: var(--view6f0f7-gold-400); }

/* Wider screens (375-430) allow 5 columns in dense grids. */
@media (min-width: 375px) {
  .view6f0f7-grid--dense { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* ------------------------------------------------------------------ *
 * Info modules: payment, testimonials, mobile access, security
 * ------------------------------------------------------------------ */
.view6f0f7-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (min-width: 390px) {
  .view6f0f7-cards--triple { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.view6f0f7-card {
  background: rgba(28, 42, 54, 0.7);
  border: 1px solid var(--view6f0f7-line);
  border-radius: var(--view6f0f7-radius-md);
  padding: 12px;
  min-height: 92px;
}
.view6f0f7-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--view6f0f7-teal-500), var(--view6f0f7-ink-700));
  color: var(--view6f0f7-ink-900);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 14px;
}
.view6f0f7-card-title { font-size: 13px; font-weight: 800; color: var(--view6f0f7-mint-100); margin-bottom: 4px; }
.view6f0f7-card-text { font-size: 12px; color: var(--view6f0f7-mint-100); opacity: 0.85; line-height: 1.5; }

.view6f0f7-quote {
  background: rgba(28, 42, 54, 0.7);
  border: 1px solid var(--view6f0f7-line);
  border-left: 3px solid var(--view6f0f7-gold-400);
  border-radius: var(--view6f0f7-radius-md);
  padding: 12px 14px;
  margin-bottom: 8px;
}
.view6f0f7-quote-text { font-size: 13px; color: var(--view6f0f7-mint-100); font-style: italic; line-height: 1.55; }
.view6f0f7-quote-author { font-size: 11.5px; color: var(--view6f0f7-teal-500); margin-top: 6px; font-weight: 700; }

.view6f0f7-list { list-style: none; padding: 0; margin: 0; }
.view6f0f7-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 13px;
  color: var(--view6f0f7-mint-100);
  border-bottom: 1px dashed var(--view6f0f7-line);
  opacity: 0.95;
}
.view6f0f7-list li:last-child { border-bottom: 0; }
.view6f0f7-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--view6f0f7-gold-400);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.18);
}
.view6f0f7-takeaways {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.06));
  border: 1px solid var(--view6f0f7-line-strong);
  border-radius: var(--view6f0f7-radius-md);
  padding: 14px;
}

/* ------------------------------------------------------------------ *
 * Extended footer (compact groups)
 * ------------------------------------------------------------------ */
.view6f0f7-ext {
  margin: 22px 12px 8px;
  border-radius: var(--view6f0f7-radius-lg);
  background: linear-gradient(180deg, var(--view6f0f7-ink-800), var(--view6f0f7-ink-700));
  border: 1px solid var(--view6f0f7-line);
  padding: 14px;
}
.view6f0f7-ext-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--view6f0f7-line);
  margin-bottom: 12px;
}
.view6f0f7-ext-brand img { width: 40px; height: 40px; border-radius: 10px; }
.view6f0f7-ext-brand-text { font-size: 12.5px; color: var(--view6f0f7-mint-100); opacity: 0.9; line-height: 1.5; }
.view6f0f7-ext-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.view6f0f7-ext-block-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--view6f0f7-teal-500);
  margin-bottom: 6px;
}
.view6f0f7-ext-link {
  display: block;
  font-size: 12.5px;
  color: var(--view6f0f7-mint-100);
  padding: 4px 0;
  opacity: 0.92;
}
.view6f0f7-ext-link:hover { color: var(--view6f0f7-gold-400); text-decoration: none; }
.view6f0f7-ext-promos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}
.view6f0f7-ext-promo {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 165, 0, 0.08));
  border: 1px solid var(--view6f0f7-line-strong);
  border-radius: var(--view6f0f7-radius-md);
  padding: 10px;
  font-size: 11.5px;
  color: var(--view6f0f7-mint-100);
  cursor: pointer;
  text-align: left;
}
.view6f0f7-ext-promo strong { display: block; color: var(--view6f0f7-gold-400); font-size: 12.5px; margin-bottom: 2px; }
.view6f0f7-ext-promo:hover { transform: translateY(-1px); border-color: var(--view6f0f7-gold-400); text-decoration: none; color: var(--view6f0f7-mint-100); }
.view6f0f7-ext-disclaimer {
  margin-top: 14px;
  padding: 10px;
  border-radius: var(--view6f0f7-radius-md);
  background: rgba(73, 80, 87, 0.4);
  font-size: 11px;
  color: var(--view6f0f7-mint-100);
  opacity: 0.78;
  line-height: 1.5;
}

/* ------------------------------------------------------------------ *
 * Common footer (copyright only)
 * ------------------------------------------------------------------ */
.view6f0f7-foot {
  padding: 18px 14px calc(var(--view6f0f7-nav-h) + 24px);
  text-align: center;
  font-size: 11.5px;
  color: var(--view6f0f7-mint-100);
  opacity: 0.72;
}
.view6f0f7-foot-brand { font-weight: 800; color: var(--view6f0f7-gold-400); letter-spacing: 0.5px; }

/* ------------------------------------------------------------------ *
 * Bottom navigation - segmented action bar with sliding indicator
 * ------------------------------------------------------------------ */
.view6f0f7-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--view6f0f7-maxw);
  height: var(--view6f0f7-nav-h);
  background: linear-gradient(180deg, rgba(28, 42, 54, 0.96), rgba(21, 33, 43, 0.98));
  border-top: 1px solid var(--view6f0f7-line);
  backdrop-filter: blur(10px);
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.view6f0f7-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--view6f0f7-gold-400), transparent);
  opacity: 0.4;
}
.view6f0f7-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px 4px;
  color: var(--view6f0f7-mint-100);
  opacity: 0.72;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: opacity 0.16s ease, color 0.16s ease;
  cursor: pointer;
  border: 0;
  background: transparent;
}
.view6f0f7-nav-item:hover { opacity: 1; color: var(--view6f0f7-mint-100); text-decoration: none; }
.view6f0f7-nav-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--view6f0f7-mint-100);
}
.view6f0f7-nav-icon svg { width: 100%; height: 100%; }
.view6f0f7-nav-label { font-size: 9.5px; line-height: 1; }
.view6f0f7-nav-item--active { opacity: 1; color: var(--view6f0f7-gold-400); }
.view6f0f7-nav-item--active .view6f0f7-nav-icon { color: var(--view6f0f7-gold-400); }
.view6f0f7-nav-item--active .view6f0f7-nav-icon svg { fill: var(--view6f0f7-gold-400); }
/* Active dot indicator - micro-interaction */
.view6f0f7-nav-item::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 18px;
  height: 3px;
  border-radius: 4px;
  background: var(--view6f0f7-gold-400);
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.view6f0f7-nav-item--active::after { transform: translateX(-50%) scale(1); }
.view6f0f7-nav-item--promo .view6f0f7-nav-icon { color: var(--view6f0f7-teal-500); }
.view6f0f7-nav-item--promo:hover .view6f0f7-nav-icon { color: var(--view6f0f7-gold-400); }

/* ------------------------------------------------------------------ *
 * Back to top
 * ------------------------------------------------------------------ */
.view6f0f7-to-top {
  position: fixed;
  right: 14px;
  bottom: calc(var(--view6f0f7-nav-h) + 14px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--view6f0f7-gold-400), var(--view6f0f7-amber-500));
  color: var(--view6f0f7-ink-900);
  border: 0;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
  box-shadow: var(--view6f0f7-shadow-1);
}
.view6f0f7-to-top--visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ------------------------------------------------------------------ *
 * Utilities
 * ------------------------------------------------------------------ */
.view6f0f7-hidden { display: none !important; }
.view6f0f7-center { text-align: center; }
.view6f0f7-mt-0 { margin-top: 0; }
.view6f0f7-cta-row { display: flex; gap: 8px; flex-wrap: wrap; }
.view6f0f7-cta-row .view6f0f7-btn { flex: 1 1 120px; text-align: center; }
.view6f0f7-note {
  font-size: 11.5px;
  color: var(--view6f0f7-mint-100);
  opacity: 0.7;
  border-left: 3px solid var(--view6f0f7-teal-500);
  padding: 8px 10px;
  background: rgba(64, 224, 208, 0.06);
  border-radius: 0 var(--view6f0f7-radius-sm) var(--view6f0f7-radius-sm) 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ------------------------------------------------------------------ *
 * Help-page reading patterns
 * ------------------------------------------------------------------ */
.view6f0f7-help-intro {
  padding: 14px;
  margin: 10px 0 16px;
  border: 1px solid var(--view6f0f7-line-strong);
  border-radius: var(--view6f0f7-radius-lg) var(--view6f0f7-radius-sm) var(--view6f0f7-radius-lg) var(--view6f0f7-radius-sm);
  background: linear-gradient(145deg, rgba(64,224,208,.11), rgba(255,215,0,.07));
}
.view6f0f7-help-answer { font-size: 14px; line-height: 1.6; margin: 0; color: var(--view6f0f7-mint-100); }
.view6f0f7-step-list { margin: 0; padding: 0; list-style: none; counter-reset: help-step; }
.view6f0f7-step-list li { counter-increment: help-step; display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--view6f0f7-line); }
.view6f0f7-step-list li:last-child { border-bottom: 0; }
.view6f0f7-step-list li::before { content: counter(help-step, decimal-leading-zero); width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--view6f0f7-gold-400); color: var(--view6f0f7-ink-900); font-size: 11px; font-weight: 800; }
.view6f0f7-step-title { display: block; color: var(--view6f0f7-gold-400); font-weight: 800; font-size: 13px; margin-bottom: 3px; }
.view6f0f7-step-copy { display: block; color: var(--view6f0f7-mint-100); font-size: 12.5px; line-height: 1.55; }
.view6f0f7-callout { padding: 12px; border-left: 4px solid var(--view6f0f7-teal-500); border-radius: 0 var(--view6f0f7-radius-md) var(--view6f0f7-radius-md) 0; background: rgba(64,224,208,.07); }
.view6f0f7-callout strong { color: var(--view6f0f7-teal-500); }
.view6f0f7-term-grid { display: grid; gap: 8px; }
.view6f0f7-term { padding: 10px; border: 1px solid var(--view6f0f7-line); border-radius: var(--view6f0f7-radius-sm); background: rgba(28,42,54,.62); }
.view6f0f7-term dt { color: var(--view6f0f7-gold-400); font-size: 13px; font-weight: 800; }
.view6f0f7-term dd { margin: 4px 0 0; color: var(--view6f0f7-mint-100); opacity: .9; font-size: 12.5px; }
.view6f0f7-faq-list { display: grid; gap: 8px; }
.view6f0f7-faq-item { border: 1px solid var(--view6f0f7-line); border-radius: var(--view6f0f7-radius-md); background: rgba(28,42,54,.68); overflow: hidden; }
.view6f0f7-faq-item summary { cursor: pointer; min-height: 48px; display: flex; align-items: center; padding: 11px 13px; color: var(--view6f0f7-mint-100); font-size: 13px; font-weight: 800; }
.view6f0f7-faq-item summary::marker { color: var(--view6f0f7-gold-400); }
.view6f0f7-faq-item p { padding: 0 13px 13px; margin: 0; font-size: 12.5px; color: var(--view6f0f7-mint-100); opacity: .9; }
.view6f0f7-trouble { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.view6f0f7-trouble th, .view6f0f7-trouble td { padding: 9px 7px; border-bottom: 1px solid var(--view6f0f7-line); text-align: left; vertical-align: top; }
.view6f0f7-trouble th { color: var(--view6f0f7-gold-400); font-weight: 800; }
.view6f0f7-trouble td { color: var(--view6f0f7-mint-100); }
.view6f0f7-status-row { display: flex; gap: 7px; flex-wrap: wrap; margin: 8px 0 2px; }
.view6f0f7-status { border: 1px solid var(--view6f0f7-line); border-radius: var(--view6f0f7-radius-pill); padding: 6px 9px; color: var(--view6f0f7-mint-100); font-size: 11px; }
.view6f0f7-status b { color: var(--view6f0f7-teal-500); }
.view6f0f7-help-cta { margin: 16px 0; padding: 13px; border: 1px solid var(--view6f0f7-line-strong); border-radius: var(--view6f0f7-radius-md); background: linear-gradient(135deg, rgba(255,215,0,.12), rgba(255,165,0,.06)); }
.view6f0f7-help-cta p { margin: 0 0 10px; font-size: 12.5px; color: var(--view6f0f7-mint-100); }
.view6f0f7-help-cta .view6f0f7-btn { min-height: 44px; }
