@charset "utf-8";
/*!
 * Beunas mobile-first frame stylesheet
 * Site: beunas.click  | Prefix: frame7608e-
 * Palette: #9370DB #D2691E #BC8F8F #8470FF #1E1E1E
 * Direction: poster headings + narrow body, light-rounded cards with tight buttons,
 *            floating overlay game cards, segmented action CTAs, state-color motion only.
 */

:root {
  --frame7608e-bg: #1E1E1E;
  --frame7608e-bg-elev: #262430;
  --frame7608e-bg-elev-2: #2E2738;
  --frame7608e-surface: #2A2333;
  --frame7608e-purple: #9370DB;
  --frame7608e-royal: #8470FF;
  --frame7608e-choco: #D2691E;
  --frame7608e-rose: #BC8F8F;
  --frame7608e-rose-soft: #D9BDBD;
  --frame7608e-ink: #F6EEF8;
  --frame7608e-ink-soft: #E3D2E3;
  --frame7608e-ink-muted: #B5A4B8;
  --frame7608e-line: rgba(189, 143, 143, 0.22);
  --frame7608e-line-strong: rgba(147, 112, 219, 0.45);
  --frame7608e-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
  --frame7608e-radius-card: 14px;
  --frame7608e-radius-btn: 9px;
  --frame7608e-radius-pill: 999px;
  --frame7608e-header-h: 60px;
  --frame7608e-bottom-h: 70px;
  --frame7608e-max: 430px;
  --frame7608e-font-poster: "Arial Narrow", "Helvetica Neue", "Roboto Condensed", Impact, sans-serif;
  --frame7608e-font-body: "Segoe UI", "Helvetica Neue", Roboto, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #110d15;
  color: var(--frame7608e-ink);
  font-family: var(--frame7608e-font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }

a { color: var(--frame7608e-royal); text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--frame7608e-purple);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Mobile canvas: centered phone-width shell on wide screens. */
.frame7608e-shell {
  position: relative;
  max-width: var(--frame7608e-max);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% -4%, rgba(132, 112, 255, 0.22), transparent 48%),
    radial-gradient(circle at 108% 8%, rgba(210, 105, 30, 0.16), transparent 42%),
    var(--frame7608e-bg);
  box-shadow: var(--frame7608e-shadow);
  overflow: hidden;
}

/* ===== Header ===== */
.frame7608e-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  min-height: var(--frame7608e-header-h);
  background: linear-gradient(180deg, rgba(46, 39, 56, 0.96), rgba(38, 36, 48, 0.92));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--frame7608e-line);
}

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

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

.frame7608e-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--frame7608e-line-strong);
  background: var(--frame7608e-bg-elev-2);
  flex-shrink: 0;
}

.frame7608e-brand-name {
  font-family: var(--frame7608e-font-poster);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--frame7608e-ink);
  line-height: 1;
}

.frame7608e-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.frame7608e-btn {
  font-family: var(--frame7608e-font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  border-radius: var(--frame7608e-radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
  white-space: nowrap;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.frame7608e-btn-register {
  background: linear-gradient(135deg, var(--frame7608e-choco), #b15612);
  color: #FFF6EE;
  border-color: rgba(255, 220, 180, 0.4);
  box-shadow: 0 6px 14px rgba(210, 105, 30, 0.28);
}
.frame7608e-btn-register:hover { background: linear-gradient(135deg, #e47b2c, var(--frame7608e-choco)); }

.frame7608e-btn-login {
  background: transparent;
  color: var(--frame7608e-ink);
  border-color: var(--frame7608e-line-strong);
}
.frame7608e-btn-login:hover { background: rgba(147, 112, 219, 0.18); }

.frame7608e-btn:active { transform: scale(0.96); }

.frame7608e-menu-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--frame7608e-radius-btn);
  background: var(--frame7608e-bg-elev);
  border: 1px solid var(--frame7608e-line);
  color: var(--frame7608e-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .18s ease, transform .12s ease;
}
.frame7608e-menu-btn:hover { background: var(--frame7608e-bg-elev-2); }
.frame7608e-menu-btn:active { transform: scale(0.94); }
.frame7608e-menu-btn .frame7608e-menu-icon { width: 18px; height: 18px; display: block; }
.frame7608e-menu-btn[aria-expanded="true"] { background: var(--frame7608e-purple); color: #1E1E1E; }

/* ===== Expandable menu ===== */
.frame7608e-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 12, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 45;
}
.frame7608e-menu-backdrop.frame7608e-is-visible { opacity: 1; visibility: visible; }

.frame7608e-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 46;
  width: min(82vw, 340px);
  height: 100vh;
  background: linear-gradient(180deg, #2A2333, #1E1A26);
  border-left: 1px solid var(--frame7608e-line-strong);
  padding: 78px 18px 24px;
  transform: translateX(105%);
  transition: transform .26s cubic-bezier(.22,.61,.36,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.frame7608e-menu-panel.frame7608e-is-open { transform: translateX(0); }

.frame7608e-menu-title {
  font-family: var(--frame7608e-font-poster);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--frame7608e-rose);
  margin: 6px 4px 10px;
}
.frame7608e-menu-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  color: var(--frame7608e-ink);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .12s ease;
}
.frame7608e-menu-panel a:hover { background: rgba(147, 112, 219, 0.16); }
.frame7608e-menu-panel a:active { transform: scale(0.98); }
.frame7608e-menu-panel a.frame7608e-is-current {
  background: rgba(210, 105, 30, 0.18);
  border-color: rgba(210, 105, 30, 0.5);
  color: #FFF6EE;
}
.frame7608e-menu-panel .frame7608e-menu-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--frame7608e-rose-soft);
  margin-left: auto;
}

.frame7608e-menu-promo {
  margin-top: auto;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(132, 112, 255, 0.22), rgba(210, 105, 30, 0.22));
  border: 1px solid var(--frame7608e-line-strong);
}
.frame7608e-menu-promo p { margin: 0 0 10px; font-size: 13px; color: var(--frame7608e-ink-soft); }
.frame7608e-menu-promo-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  border-radius: var(--frame7608e-radius-btn);
  background: var(--frame7608e-choco);
  color: #FFF6EE;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===== Main / layout ===== */
.frame7608e-main {
  padding: 16px 14px calc(var(--frame7608e-bottom-h) + 36px);
}

.frame7608e-section {
  margin: 26px 0 0;
}

.frame7608e-eyebrow {
  font-family: var(--frame7608e-font-poster);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--frame7608e-choco);
  margin: 0 0 6px;
}

.frame7608e-h1,
.frame7608e-h2,
.frame7608e-h3 {
  font-family: var(--frame7608e-font-poster);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 10px;
  color: var(--frame7608e-ink);
  letter-spacing: -0.005em;
}

.frame7608e-h1 { font-size: 30px; letter-spacing: 0.01em; }
.frame7608e-h2 {
  font-size: 23px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--frame7608e-line);
}
.frame7608e-h3 { font-size: 17px; color: var(--frame7608e-rose-soft); margin-top: 16px; }

.frame7608e-lead { font-size: 15px; color: var(--frame7608e-ink-soft); margin: 0 0 12px; }
.frame7608e-lead strong { color: var(--frame7608e-ink); font-weight: 700; }

.frame7608e-intro { margin-top: 18px; }
.frame7608e-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
}
.frame7608e-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  border-radius: var(--frame7608e-radius-pill);
  background: rgba(147, 112, 219, 0.18);
  border: 1px solid var(--frame7608e-line-strong);
  color: var(--frame7608e-ink-soft);
}
.frame7608e-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--frame7608e-choco); }

/* ===== Hero carousel ===== */
.frame7608e-hero {
  position: relative;
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--frame7608e-shadow);
  border: 1px solid var(--frame7608e-line);
}
.frame7608e-hero-viewport {
  overflow: hidden;
  border-radius: 18px;
}
.frame7608e-hero-track {
  display: flex;
  transition: transform .42s cubic-bezier(.22,.61,.36,1);
  width: 100%;
}
.frame7608e-hero-slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  cursor: pointer;
  background: var(--frame7608e-bg-elev);
}
.frame7608e-hero-slide img {
  width: 100%;
  height: 196px;
  object-fit: cover;
  display: block;
}
.frame7608e-hero-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.36), rgba(30, 30, 30, 0.78));
  border: 1px solid rgba(255, 246, 238, 0.18);
  backdrop-filter: blur(3px);
}
.frame7608e-hero-eyebrow {
  font-family: var(--frame7608e-font-poster);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--frame7608e-choco);
  margin: 0 0 4px;
}
.frame7608e-hero-title {
  font-family: var(--frame7608e-font-poster);
  font-weight: 800;
  font-size: 18px;
  margin: 0;
  color: #FFF6EE;
}
.frame7608e-hero-sub {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--frame7608e-rose-soft);
}

.frame7608e-hero-prev,
.frame7608e-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.62);
  border: 1px solid rgba(255, 246, 238, 0.24);
  color: #FFF6EE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background-color .16s ease, transform .12s ease;
}
.frame7608e-hero-prev { left: 8px; }
.frame7608e-hero-next { right: 8px; }
.frame7608e-hero-prev:hover, .frame7608e-hero-next:hover { background: rgba(147, 112, 219, 0.78); }
.frame7608e-hero-prev:active, .frame7608e-hero-next:active { transform: translateY(-50%) scale(0.9); }
.frame7608e-hero-prev svg, .frame7608e-hero-next svg { width: 16px; height: 16px; }

.frame7608e-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}
.frame7608e-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 246, 238, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color .18s ease, width .18s ease;
}
.frame7608e-hero-dot.frame7608e-is-active {
  background: var(--frame7608e-choco);
  width: 18px;
  border-radius: var(--frame7608e-radius-pill);
}

/* ===== Metrics ===== */
.frame7608e-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.frame7608e-metric {
  padding: 12px 8px;
  border-radius: var(--frame7608e-radius-card);
  background: var(--frame7608e-bg-elev);
  border: 1px solid var(--frame7608e-line);
  text-align: center;
}
.frame7608e-metric-value {
  font-family: var(--frame7608e-font-poster);
  font-weight: 800;
  font-size: 19px;
  color: var(--frame7608e-purple);
  line-height: 1;
}
.frame7608e-metric-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--frame7608e-ink-muted);
  margin-top: 6px;
}

/* ===== Category + game grid ===== */
.frame7608e-cat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin: 28px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--frame7608e-line);
}
.frame7608e-cat-head .frame7608e-h2 { margin: 0; padding: 0; border: 0; }
.frame7608e-cat-count {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--frame7608e-rose);
  white-space: nowrap;
  padding-bottom: 4px;
}

.frame7608e-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .frame7608e-game-grid { gap: 10px; }
}
@media (min-width: 395px) {
  .frame7608e-game-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Game card: floating overlay image card */
.frame7608e-game {
  position: relative;
  display: block;
  background: var(--frame7608e-bg-elev);
  border: 1px solid var(--frame7608e-line);
  border-radius: var(--frame7608e-radius-card);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color .18s ease, transform .12s ease, box-shadow .18s ease;
  min-height: 44px;
}
.frame7608e-game:hover { border-color: var(--frame7608e-line-strong); box-shadow: 0 6px 14px rgba(0,0,0,0.32); }
.frame7608e-game:active { transform: scale(0.95); }
.frame7608e-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #15101a;
}
.frame7608e-game-name {
  display: block;
  padding: 6px 7px 7px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--frame7608e-ink-soft);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(30,30,30,0.4));
  word-break: break-word;
  min-height: 32px;
}
.frame7608e-game-tap {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: var(--frame7608e-radius-pill);
  background: rgba(210, 105, 30, 0.92);
  color: #FFF6EE;
  text-transform: uppercase;
}

/* ===== Segmented CTA ===== */
.frame7608e-cta-card {
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% -20%, rgba(210, 105, 30, 0.36), transparent 60%),
    linear-gradient(135deg, rgba(132, 112, 255, 0.22), rgba(147, 112, 219, 0.14));
  border: 1px solid var(--frame7608e-line-strong);
}
.frame7608e-cta-card .frame7608e-h2 { border: 0; padding: 0; }
.frame7608e-cta-card p { color: var(--frame7608e-ink-soft); margin: 0 0 14px; font-size: 14px; }

.frame7608e-segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 6px;
}
.frame7608e-segmented .frame7608e-btn { width: 100%; padding: 12px 10px; }
.frame7608e-btn-primary {
  background: var(--frame7608e-choco);
  color: #FFF6EE;
  border-color: rgba(255, 220, 180, 0.5);
}
.frame7608e-btn-primary:hover { background: #e47b2c; }
.frame7608e-btn-ghost {
  background: rgba(147, 112, 219, 0.18);
  color: var(--frame7608e-ink);
  border-color: var(--frame7608e-line-strong);
}
.frame7608e-btn-ghost:hover { background: rgba(147, 112, 219, 0.32); }

.frame7608e-text-link {
  color: var(--frame7608e-choco);
  font-weight: 700;
  border-bottom: 1px dashed rgba(210, 105, 30, 0.6);
}
.frame7608e-text-link:hover { color: #e47b2c; }

/* ===== Trick / takeaway lists ===== */
.frame7608e-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.frame7608e-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 12px;
  background: var(--frame7608e-bg-elev);
  border: 1px solid var(--frame7608e-line);
  border-radius: var(--frame7608e-radius-card);
}
.frame7608e-list-num {
  font-family: var(--frame7608e-font-poster);
  font-weight: 800;
  color: var(--frame7608e-purple);
  font-size: 17px;
  line-height: 1.1;
}
.frame7608e-list-body strong { color: var(--frame7608e-ink); }
.frame7608e-list-body p { margin: 0; font-size: 13.5px; color: var(--frame7608e-ink-soft); }
.frame7608e-list-body .frame7608e-list-tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--frame7608e-rose);
  text-transform: uppercase;
}

/* ===== Relations ===== */
.frame7608e-relations {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.frame7608e-relation {
  padding: 14px;
  background: var(--frame7608e-bg-elev);
  border: 1px solid var(--frame7608e-line);
  border-left: 3px solid var(--frame7608e-purple);
  border-radius: var(--frame7608e-radius-card);
}
.frame7608e-relation h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-family: var(--frame7608e-font-poster);
  color: var(--frame7608e-rose-soft);
  letter-spacing: 0.02em;
}
.frame7608e-relation p { margin: 0; font-size: 13.5px; color: var(--frame7608e-ink-soft); }

/* ===== Takeaways ===== */
.frame7608e-takeaways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.frame7608e-takeaway {
  padding: 12px;
  background: rgba(132, 112, 255, 0.1);
  border: 1px solid var(--frame7608e-line);
  border-radius: var(--frame7608e-radius-card);
}
.frame7608e-takeaway b {
  display: block;
  font-family: var(--frame7608e-font-poster);
  font-size: 22px;
  color: var(--frame7608e-purple);
  line-height: 1;
  margin-bottom: 4px;
}
.frame7608e-takeaway span { font-size: 12.5px; color: var(--frame7608e-ink-soft); }

/* ===== Extended footer ===== */
.frame7608e-extended {
  margin-top: 30px;
  padding: 18px 14px;
  background: var(--frame7608e-bg-elev);
  border: 1px solid var(--frame7608e-line);
  border-radius: 18px;
}
.frame7608e-ext-group { margin-top: 16px; }
.frame7608e-ext-group:first-of-type { margin-top: 0; }
.frame7608e-ext-title {
  font-family: var(--frame7608e-font-poster);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--frame7608e-rose);
  margin: 0 0 8px;
}
.frame7608e-ext-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.frame7608e-ext-directory a {
  padding: 9px 10px;
  border-radius: 9px;
  background: var(--frame7608e-bg-elev-2);
  border: 1px solid var(--frame7608e-line);
  font-size: 12.5px;
  color: var(--frame7608e-ink-soft);
  font-weight: 600;
  transition: background-color .16s ease, transform .12s ease;
}
.frame7608e-ext-directory a:hover { background: rgba(147, 112, 219, 0.22); }
.frame7608e-ext-directory a:active { transform: scale(0.97); }

.frame7608e-ext-brand p {
  margin: 0;
  font-size: 13px;
  color: var(--frame7608e-ink-muted);
  line-height: 1.55;
}
.frame7608e-ext-brand strong { color: var(--frame7608e-ink); }

.frame7608e-ext-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.frame7608e-ext-promo {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.22), rgba(132, 112, 255, 0.16));
  border: 1px solid var(--frame7608e-line-strong);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--frame7608e-ink);
  text-align: center;
  cursor: pointer;
  transition: transform .12s ease, background-color .16s ease;
}
.frame7608e-ext-promo small {
  display: block;
  color: var(--frame7608e-rose-soft);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  margin-top: 3px;
  font-weight: 500;
}
.frame7608e-ext-promo:hover { background: linear-gradient(135deg, rgba(210, 105, 30, 0.36), rgba(132, 112, 255, 0.26)); }
.frame7608e-ext-promo:active { transform: scale(0.96); }

.frame7608e-ext-disclaimer {
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(189, 143, 143, 0.1);
  border: 1px dashed var(--frame7608e-line);
  font-size: 11.5px;
  color: var(--frame7608e-ink-muted);
  line-height: 1.55;
}

/* ===== Footer (copyright) ===== */
.frame7608e-footer {
  padding: 18px 14px calc(var(--frame7608e-bottom-h) + 18px);
  text-align: center;
  border-top: 1px solid var(--frame7608e-line);
  margin-top: 22px;
}
.frame7608e-footer p { margin: 0; font-size: 11.5px; color: var(--frame7608e-ink-muted); letter-spacing: 0.02em; }
.frame7608e-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-bottom: 8px;
}
.frame7608e-footer-links a { color: var(--frame7608e-rose-soft); font-size: 12px; }
.frame7608e-footer-links a:hover { color: var(--frame7608e-choco); }

/* ===== Bottom nav (center-raised) ===== */
.frame7608e-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--frame7608e-max);
  height: var(--frame7608e-bottom-h);
  background: linear-gradient(180deg, rgba(38, 36, 48, 0.98), rgba(28, 24, 36, 0.99));
  border-top: 1px solid var(--frame7608e-line-strong);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  z-index: 38;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.frame7608e-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--frame7608e-ink-muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  font-weight: 600;
  cursor: pointer;
  padding: 0 2px;
  text-decoration: none;
  transition: color .16s ease, transform .12s ease;
  font-family: var(--frame7608e-font-body);
}
.frame7608e-nav-item svg { width: 22px; height: 22px; display: block; }
.frame7608e-nav-item:hover { color: var(--frame7608e-ink-soft); }
.frame7608e-nav-item:active { transform: scale(0.92); }
.frame7608e-nav-item.frame7608e-is-current { color: var(--frame7608e-choco); }
.frame7608e-nav-item.frame7608e-is-current svg .frame7608e-ic-fill { fill: var(--frame7608e-choco); }

.frame7608e-nav-raised {
  position: relative;
  margin-top: -22px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--frame7608e-choco), #b15612);
  color: #FFF6EE;
  box-shadow: 0 10px 20px rgba(210, 105, 30, 0.45);
  border: 1px solid rgba(255, 220, 180, 0.5);
  width: 58px;
  justify-self: center;
  flex-direction: column;
}
.frame7608e-nav-raised svg { width: 24px; height: 24px; }
.frame7608e-nav-raised span { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; }
.frame7608e-nav-raised:hover { color: #FFF6EE; }

/* dual-tone role icons */
.frame7608e-ic-fill { fill: var(--frame7608e-rose); transition: fill .16s ease; }
.frame7608e-ic-stroke { stroke: var(--frame7608e-purple); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== Utility ===== */
.frame7608e-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;
}
.frame7608e-divider {
  height: 1px;
  background: var(--frame7608e-line);
  margin: 22px 0;
  border: 0;
}

/* ===== Wide-screen: keep phone canvas, give breathing room ===== */
@media (min-width: 480px) {
  .frame7608e-shell { box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
  .frame7608e-hero-slide img { height: 220px; }
}

/* ===== Help page reading layouts ===== */
.frame7608e-help-main { padding-top: 18px; }
.frame7608e-help-hero {
  margin: 0 0 18px;
  padding: 20px 16px;
  background: linear-gradient(145deg, rgba(132,112,255,.2), rgba(210,105,30,.14));
  border: 1px solid var(--frame7608e-line-strong);
  border-radius: 18px 8px 18px 8px;
}
.frame7608e-help-hero .frame7608e-h1 { margin-bottom: 8px; }
.frame7608e-help-kicker { margin: 0 0 7px; color: var(--frame7608e-choco); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; }
.frame7608e-answer-bar { margin: 0; padding: 11px 12px; border-left: 3px solid var(--frame7608e-choco); background: rgba(210,105,30,.1); color: var(--frame7608e-ink-soft); font-size: 14px; }
.frame7608e-help-main .frame7608e-section { margin-top: 18px; }
.frame7608e-help-main .frame7608e-h2 { font-size: 21px; border-bottom: 1px solid var(--frame7608e-line); padding-bottom: 8px; }
.frame7608e-help-main p { color: var(--frame7608e-ink-soft); }
.frame7608e-review-score { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 14px 0 4px; }
.frame7608e-score-cell { padding: 10px 6px; text-align: center; border: 1px solid var(--frame7608e-line); border-radius: 11px; background: var(--frame7608e-bg-elev); }
.frame7608e-score-cell strong { display: block; color: var(--frame7608e-purple); font: 800 21px/1 var(--frame7608e-font-poster); }
.frame7608e-score-cell span { display: block; margin-top: 5px; color: var(--frame7608e-ink-muted); font-size: 10px; }
.frame7608e-issue-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.frame7608e-issue-list li { padding: 12px; border: 1px solid var(--frame7608e-line); border-left: 3px solid var(--frame7608e-purple); border-radius: 9px; background: var(--frame7608e-bg-elev); }
.frame7608e-issue-list strong { display: block; color: var(--frame7608e-ink); margin-bottom: 3px; }
.frame7608e-issue-list span { color: var(--frame7608e-ink-soft); font-size: 13px; }
.frame7608e-step-rail { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; counter-reset: frame7608e-step; }
.frame7608e-step-rail li { counter-increment: frame7608e-step; position: relative; padding: 13px 12px 13px 48px; border-bottom: 1px solid var(--frame7608e-line); color: var(--frame7608e-ink-soft); }
.frame7608e-step-rail li::before { content: counter(frame7608e-step, decimal-leading-zero); position: absolute; left: 4px; top: 12px; color: var(--frame7608e-choco); font: 800 20px/1 var(--frame7608e-font-poster); }
.frame7608e-step-rail strong { display: block; color: var(--frame7608e-ink); margin-bottom: 4px; }
.frame7608e-term-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.frame7608e-term-table th, .frame7608e-term-table td { padding: 9px 7px; border-bottom: 1px solid var(--frame7608e-line); text-align: left; vertical-align: top; }
.frame7608e-term-table th { color: var(--frame7608e-rose-soft); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.frame7608e-term-table td { color: var(--frame7608e-ink-soft); }
.frame7608e-faq-stack { display: grid; gap: 7px; }
.frame7608e-faq-item { padding: 12px; border: 1px solid var(--frame7608e-line); border-radius: 10px; background: rgba(38,36,48,.78); }
.frame7608e-faq-item h3 { margin: 0 0 5px; color: var(--frame7608e-rose-soft); font: 700 16px/1.25 var(--frame7608e-font-poster); }
.frame7608e-faq-item p { margin: 0; font-size: 13.5px; }
.frame7608e-help-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.frame7608e-help-actions a, .frame7608e-promo-line { display: block; min-height: 44px; padding: 11px 10px; border: 1px solid var(--frame7608e-line-strong); border-radius: 9px; background: rgba(147,112,219,.16); color: var(--frame7608e-ink); text-align: center; font-size: 12.5px; font-weight: 700; }
.frame7608e-promo-line { margin: 10px 0; background: linear-gradient(90deg, rgba(210,105,30,.22), rgba(132,112,255,.14)); }
.frame7608e-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.frame7608e-compare article { padding: 12px; border-top: 3px solid var(--frame7608e-purple); background: var(--frame7608e-bg-elev); border-radius: 8px; }
.frame7608e-compare h3 { margin: 0 0 5px; color: var(--frame7608e-ink); font: 700 16px/1.2 var(--frame7608e-font-poster); }
.frame7608e-compare p { margin: 0; font-size: 13px; }
.frame7608e-checklist { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.frame7608e-checklist li { padding: 10px 10px 10px 30px; position: relative; color: var(--frame7608e-ink-soft); font-size: 13.5px; }
.frame7608e-checklist li::before { content: "✓"; position: absolute; left: 4px; color: var(--frame7608e-choco); font-weight: 900; }

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