/*!
 * spinplus-tokens-5f61ea.css
 * SpinPlus (spinplus.cfd) design system.
 * Palette anchors (dark backgrounds, light text):
 *   #2D2D2D charcoal base   |   #6C757D muted slate
 *   #E65100 burnt orange    |   #FFF176 citrine highlight
 * Layout follows the site navigation direction:
 *   header = minimal title action bar
 *   menu   = side drawer
 *   footer = central raised nav with dual-color corner icons
 *   active = color switch    |   micro-interaction = label reveal
 * All custom classes share the frame1eadf- prefix.
 */

:root {
  --frame1eadf-ink:        #2D2D2D;
  --frame1eadf-ink-deep:   #1c1c1c;
  --frame1eadf-ink-soft:   #3a3a3a;
  --frame1eadf-slate:      #6C757D;
  --frame1eadf-slate-soft: #8a929b;
  --frame1eadf-flame:      #E65100;
  --frame1eadf-flame-soft: #ff7a2a;
  --frame1eadf-citrine:    #FFF176;
  --frame1eadf-citrine-dim:#f0d564;
  --frame1eadf-paper:      #f6f3ea;
  --frame1eadf-line:       rgba(255, 241, 118, 0.16);
  --frame1eadf-line-soft:  rgba(108, 117, 125, 0.28);
  --frame1eadf-shadow-lg:  0 18px 40px rgba(0, 0, 0, 0.55);
  --frame1eadf-radius:     14px;
  --frame1eadf-radius-sm:  10px;
  --frame1eadf-radius-pill:999px;
  --frame1eadf-touch:      44px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 50% 0%, #2a2a2a 0%, var(--frame1eadf-ink-deep) 60%, #161616 100%);
  color: var(--frame1eadf-paper);
  line-height: 1.55;
  font-size: 14px;
  min-height: 100vh;
  /* Reserve safe space for the fixed bottom nav + clearance. */
  padding-bottom: calc(86px + env(safe-area-inset-bottom, 0));
  overflow-x: hidden;
}

body.frame1eadf-no-scroll { overflow: hidden; }

a { color: var(--frame1eadf-citrine); text-decoration: none; }
a:hover, a:focus { color: var(--frame1eadf-citrine-dim); text-decoration: underline; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

h1, h2, h3, h4 { margin: 0; line-height: 1.25; font-weight: 700; }
p { margin: 0 0 12px; }

.frame1eadf-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--frame1eadf-citrine);
  color: var(--frame1eadf-ink);
  padding: 10px 16px;
  border-radius: 0 0 var(--frame1eadf-radius-sm) 0;
  z-index: 200;
}
.frame1eadf-skip:focus { left: 0; }

/* ============================================================= *
 * Mobile canvas shell (320-430px). Wider screens center it.
 * ============================================================= */
.frame1eadf-shell {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(230, 81, 0, 0.06) 0%, rgba(0,0,0,0) 18%),
    var(--frame1eadf-ink-deep);
  position: relative;
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
  min-height: 100vh;
}

@media (min-width: 431px) {
  body {
    background: #0e0e0e;
    padding-top: 0;
  }
  .frame1eadf-shell {
    border-left: 1px solid rgba(255,255,255,0.04);
    border-right: 1px solid rgba(255,255,255,0.04);
  }
}

/* ============================================================= *
 * Header — minimal title action bar
 * ============================================================= */
.frame1eadf-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: linear-gradient(180deg, rgba(34,34,34,0.97), rgba(34,34,34,0.92));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--frame1eadf-line);
  transition: box-shadow .25s ease, background .25s ease;
}

.frame1eadf-header.frame1eadf-is-elevated {
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  background: linear-gradient(180deg, rgba(20,20,20,0.98), rgba(28,28,28,0.96));
}

.frame1eadf-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
}

.frame1eadf-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--frame1eadf-citrine);
  box-shadow: 0 0 0 2px rgba(230,81,0,0.35);
  flex: 0 0 auto;
}

.frame1eadf-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.05;
}

.frame1eadf-brand-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--frame1eadf-paper);
  letter-spacing: 0.2px;
}

.frame1eadf-brand-name b {
  color: var(--frame1eadf-flame-soft);
}

.frame1eadf-brand-tag {
  font-size: 10px;
  color: var(--frame1eadf-slate-soft);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.frame1eadf-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.frame1eadf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: var(--frame1eadf-touch);
  padding: 0 14px;
  border-radius: var(--frame1eadf-radius-pill);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.frame1eadf-btn:hover { text-decoration: none; }
.frame1eadf-btn:active { transform: translateY(1px); }

.frame1eadf-btn-login {
  background: transparent;
  color: var(--frame1eadf-paper);
  border-color: var(--frame1eadf-slate);
}
.frame1eadf-btn-login:hover {
  color: var(--frame1eadf-citrine);
  border-color: var(--frame1eadf-citrine);
}

.frame1eadf-btn-register {
  background: linear-gradient(135deg, var(--frame1eadf-flame), var(--frame1eadf-flame-soft));
  color: #fff;
  box-shadow: 0 6px 14px rgba(230,81,0,0.35);
}
.frame1eadf-btn-register:hover {
  color: #fff;
  box-shadow: 0 8px 20px rgba(230,81,0,0.55);
}

.frame1eadf-icon-btn {
  width: var(--frame1eadf-touch);
  height: var(--frame1eadf-touch);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--frame1eadf-line-soft);
  border-radius: 12px;
  color: var(--frame1eadf-paper);
  cursor: pointer;
}
.frame1eadf-icon-btn:hover { border-color: var(--frame1eadf-citrine); color: var(--frame1eadf-citrine); }

/* ============================================================= *
 * Side drawer (menu)
 * ============================================================= */
.frame1eadf-veil {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 90;
}
.frame1eadf-veil.frame1eadf-is-visible { opacity: 1; visibility: visible; }

.frame1eadf-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 86%;
  max-width: 340px;
  height: 100vh;
  background: linear-gradient(180deg, #232323, #181818);
  border-left: 1px solid var(--frame1eadf-line);
  box-shadow: var(--frame1eadf-shadow-lg);
  transform: translateX(105%);
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  overflow-y: auto;
  padding: 18px 18px calc(86px + env(safe-area-inset-bottom, 0));
}
.frame1eadf-drawer.frame1eadf-is-open { transform: translateX(0); }

.frame1eadf-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.frame1eadf-drawer-head h3 {
  font-size: 14px;
  color: var(--frame1eadf-citrine);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.frame1eadf-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--frame1eadf-line-soft);
  color: var(--frame1eadf-paper);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.frame1eadf-drawer-promo {
  background: linear-gradient(135deg, rgba(230,81,0,0.22), rgba(255,241,118,0.12));
  border: 1px solid var(--frame1eadf-line);
  border-radius: var(--frame1eadf-radius);
  padding: 14px;
  margin-bottom: 16px;
}
.frame1eadf-drawer-promo strong { color: var(--frame1eadf-citrine); display: block; font-size: 13px; }
.frame1eadf-drawer-promo span { font-size: 12px; color: var(--frame1eadf-paper); display: block; margin-top: 4px; }

.frame1eadf-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-radius: var(--frame1eadf-radius-sm);
  color: var(--frame1eadf-paper);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
}
.frame1eadf-drawer-link:hover {
  background: rgba(255,241,118,0.06);
  border-color: var(--frame1eadf-line-soft);
  color: var(--frame1eadf-citrine);
  text-decoration: none;
}
.frame1eadf-drawer-link svg { flex: 0 0 auto; }
.frame1eadf-drawer-section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--frame1eadf-slate-soft);
  margin: 16px 4px 8px;
}

/* ============================================================= *
 * Hero carousel
 * ============================================================= */
.frame1eadf-hero {
  position: relative;
  margin: 12px;
  border-radius: var(--frame1eadf-radius);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  border: 1px solid var(--frame1eadf-line);
}
.frame1eadf-hero-viewport { overflow: hidden; }
.frame1eadf-hero-track {
  display: flex;
  transition: transform .55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.frame1eadf-hero-slide {
  flex: 0 0 100%;
  position: relative;
  cursor: pointer;
}
.frame1eadf-hero-slide img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}
.frame1eadf-hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 14px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.78) 80%);
  color: var(--frame1eadf-paper);
}
.frame1eadf-hero-caption strong {
  display: block;
  color: var(--frame1eadf-citrine);
  font-size: 14px;
  margin-bottom: 2px;
}
.frame1eadf-hero-caption span { font-size: 12px; }
.frame1eadf-hero-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
}
.frame1eadf-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.frame1eadf-hero-dot.frame1eadf-is-active {
  background: var(--frame1eadf-citrine);
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(255,241,118,0.7);
}

/* ============================================================= *
 * Section heading + rails
 * ============================================================= */
.frame1eadf-section {
  padding: 18px 12px 6px;
}
.frame1eadf-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}
.frame1eadf-section-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--frame1eadf-paper);
  display: flex;
  align-items: center;
  gap: 8px;
}
.frame1eadf-section-title::before {
  content: "";
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--frame1eadf-flame), var(--frame1eadf-citrine));
  border-radius: 2px;
}
.frame1eadf-section-title em {
  font-style: normal;
  color: var(--frame1eadf-flame-soft);
}
.frame1eadf-section-more {
  font-size: 12px;
  color: var(--frame1eadf-citrine);
  font-weight: 700;
}

/* ============================================================= *
 * Game grid (4 cols at 320px, up to 5 cols at 375+)
 * ============================================================= */
.frame1eadf-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .frame1eadf-game-grid { gap: 10px; }
}
@media (min-width: 395px) {
  .frame1eadf-game-grid { grid-template-columns: repeat(5, 1fr); }
}

.frame1eadf-game-card {
  background: linear-gradient(180deg, #2c2c2c, #1f1f1f);
  border: 1px solid var(--frame1eadf-line-soft);
  border-radius: var(--frame1eadf-radius-sm);
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: var(--frame1eadf-paper);
  position: relative;
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.frame1eadf-game-card:hover {
  text-decoration: none;
  color: var(--frame1eadf-paper);
  transform: translateY(-2px);
  border-color: var(--frame1eadf-citrine);
  box-shadow: 0 8px 18px rgba(0,0,0,0.45);
}
.frame1eadf-game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #111;
  overflow: hidden;
}
.frame1eadf-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.frame1eadf-game-card:hover .frame1eadf-game-thumb img { transform: scale(1.06); }
.frame1eadf-game-name {
  padding: 6px 6px 7px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: var(--frame1eadf-paper);
  line-height: 1.25;
  min-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.frame1eadf-game-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--frame1eadf-flame);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.frame1eadf-game-tag.frame1eadf-tag-hot { background: linear-gradient(135deg, #ff3d6e, var(--frame1eadf-flame)); }
.frame1eadf-game-tag.frame1eadf-tag-new { background: linear-gradient(135deg, #2bb673, #79d77f); }

/* ============================================================= *
 * Info / content modules (tricks, promotions, mobile, faq, rtp, payment)
 * ============================================================= */
.frame1eadf-card {
  background: linear-gradient(180deg, #2a2a2a, #1e1e1e);
  border: 1px solid var(--frame1eadf-line-soft);
  border-radius: var(--frame1eadf-radius);
  padding: 16px;
  margin-bottom: 12px;
}
.frame1eadf-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.frame1eadf-card-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(230,81,0,0.25), rgba(255,241,118,0.12));
  border: 1px solid var(--frame1eadf-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.frame1eadf-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--frame1eadf-paper);
}
.frame1eadf-card-title b { color: var(--frame1eadf-citrine); }
.frame1eadf-card p { color: var(--frame1eadf-slate-soft); font-size: 13px; }
.frame1eadf-card p strong { color: var(--frame1eadf-paper); }

.frame1eadf-list { margin: 6px 0 0; padding: 0; list-style: none; }
.frame1eadf-list li {
  position: relative;
  padding: 8px 10px 8px 28px;
  font-size: 13px;
  color: var(--frame1eadf-paper);
  border-bottom: 1px dashed rgba(108,117,125,0.3);
}
.frame1eadf-list li:last-child { border-bottom: none; }
.frame1eadf-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--frame1eadf-flame);
  transform: rotate(45deg);
  border: 1px solid var(--frame1eadf-citrine);
}

.frame1eadf-num-list { counter-reset: frame1eadf-step; margin: 6px 0 0; padding: 0; list-style: none; }
.frame1eadf-num-list li {
  position: relative;
  padding: 10px 10px 10px 40px;
  font-size: 13px;
  color: var(--frame1eadf-paper);
  border-bottom: 1px solid rgba(108,117,125,0.2);
}
.frame1eadf-num-list li:last-child { border-bottom: none; }
.frame1eadf-num-list li::before {
  counter-increment: frame1eadf-step;
  content: counter(frame1eadf-step);
  position: absolute;
  left: 6px; top: 10px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--frame1eadf-flame), var(--frame1eadf-citrine));
  color: var(--frame1eadf-ink);
  font-weight: 800;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* FAQ accordion-like blocks */
.frame1eadf-faq-item {
  border: 1px solid var(--frame1eadf-line-soft);
  border-radius: var(--frame1eadf-radius-sm);
  padding: 12px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.02);
}
.frame1eadf-faq-q {
  display: block;
  font-weight: 700;
  color: var(--frame1eadf-citrine);
  font-size: 13px;
  margin-bottom: 6px;
}
.frame1eadf-faq-a { color: var(--frame1eadf-paper); font-size: 13px; }

/* RTP analysis */
.frame1eadf-rtp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(108,117,125,0.2);
}
.frame1eadf-rtp-row:last-child { border-bottom: none; }
.frame1eadf-rtp-label { font-size: 13px; color: var(--frame1eadf-paper); }
.frame1eadf-rtp-label small { display: block; color: var(--frame1eadf-slate-soft); font-size: 11px; }
.frame1eadf-rtp-meter {
  width: 90px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}
.frame1eadf-rtp-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--frame1eadf-flame), var(--frame1eadf-citrine));
  border-radius: 999px;
}
.frame1eadf-rtp-value { font-size: 12px; color: var(--frame1eadf-citrine); font-weight: 700; min-width: 42px; text-align: right; }

/* Payment methods */
.frame1eadf-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.frame1eadf-pay-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--frame1eadf-line-soft);
  border-radius: var(--frame1eadf-radius-sm);
  padding: 10px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--frame1eadf-paper);
}
.frame1eadf-pay-tile span {
  display: block;
  color: var(--frame1eadf-citrine);
  font-size: 10px;
  margin-top: 4px;
  font-weight: 600;
}

/* Inline promo banner slots */
.frame1eadf-promo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.frame1eadf-promo-slot {
  border: 1px solid var(--frame1eadf-line);
  border-radius: var(--frame1eadf-radius-sm);
  padding: 10px;
  background: linear-gradient(135deg, rgba(230,81,0,0.18), rgba(0,0,0,0));
  cursor: pointer;
  color: var(--frame1eadf-paper);
  text-align: left;
  display: block;
}
.frame1eadf-promo-slot:hover { text-decoration: none; color: var(--frame1eadf-paper); border-color: var(--frame1eadf-citrine); }
.frame1eadf-promo-slot strong { display: block; color: var(--frame1eadf-citrine); font-size: 12px; }
.frame1eadf-promo-slot small { display: block; color: var(--frame1eadf-slate-soft); font-size: 11px; margin-top: 2px; }

/* Comparison table */
.frame1eadf-compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 12px;
}
.frame1eadf-compare th, .frame1eadf-compare td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(108,117,125,0.25);
}
.frame1eadf-compare th {
  color: var(--frame1eadf-citrine);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.frame1eadf-compare td { color: var(--frame1eadf-paper); }
.frame1eadf-compare tr:last-child td { border-bottom: none; }

/* ============================================================= *
 * Extended footer (two-column directory)
 * ============================================================= */
.frame1eadf-ext-footer {
  background: linear-gradient(180deg, #1f1f1f, #141414);
  border-top: 1px solid var(--frame1eadf-line);
  padding: 22px 12px 16px;
  margin-top: 18px;
}
.frame1eadf-ext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.frame1eadf-ext-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--frame1eadf-citrine);
  margin-bottom: 8px;
}
.frame1eadf-ext-col a {
  display: block;
  font-size: 12.5px;
  color: var(--frame1eadf-paper);
  padding: 4px 0;
  border-bottom: 1px dashed rgba(108,117,125,0.22);
}
.frame1eadf-ext-col a:hover { color: var(--frame1eadf-citrine); text-decoration: none; }
.frame1eadf-ext-brand {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--frame1eadf-line-soft);
  margin-bottom: 4px;
}
.frame1eadf-ext-brand img { width: 38px; height: 38px; border-radius: 8px; }
.frame1eadf-ext-brand p { font-size: 12px; color: var(--frame1eadf-slate-soft); margin: 0; }
.frame1eadf-ext-brand strong { color: var(--frame1eadf-paper); font-size: 13px; display: block; margin-bottom: 4px; }
.frame1eadf-ext-disclaimer {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--frame1eadf-slate-soft);
  border-top: 1px solid var(--frame1eadf-line-soft);
  padding-top: 12px;
  margin-top: 6px;
  line-height: 1.5;
}

.frame1eadf-promo-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.frame1eadf-promo-grid .frame1eadf-promo-mini {
  background: rgba(230,81,0,0.12);
  border: 1px solid var(--frame1eadf-line);
  border-radius: 10px;
  padding: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--frame1eadf-citrine);
  cursor: pointer;
  text-align: center;
}

/* ============================================================= *
 * Universal footer
 * ============================================================= */
.frame1eadf-footer {
  background: #111;
  padding: 14px 14px calc(20px + env(safe-area-inset-bottom, 0));
  text-align: center;
  border-top: 1px solid var(--frame1eadf-line-soft);
}
.frame1eadf-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin-bottom: 10px;
}
.frame1eadf-footer-nav a {
  font-size: 11px;
  color: var(--frame1eadf-slate-soft);
}
.frame1eadf-footer-nav a:hover { color: var(--frame1eadf-citrine); }
.frame1eadf-footer-copy {
  font-size: 11px;
  color: var(--frame1eadf-slate);
  letter-spacing: 0.3px;
}
.frame1eadf-footer-copy b { color: var(--frame1eadf-paper); }

/* ============================================================= *
 * Bottom navigation — central raised, dual-color corner icons
 * ============================================================= */
.frame1eadf-bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, rgba(28,28,28,0.98), rgba(15,15,15,0.99));
  border-top: 1px solid var(--frame1eadf-line);
  box-shadow: 0 -6px 22px rgba(0,0,0,0.45);
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  padding: 6px 4px calc(8px + env(safe-area-inset-bottom, 0));
}
.frame1eadf-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  padding: 6px 2px 2px;
  min-height: 56px;
  color: var(--frame1eadf-slate-soft);
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  transition: color .2s ease;
}
.frame1eadf-nav-item:hover { text-decoration: none; }
.frame1eadf-nav-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.frame1eadf-nav-label {
  font-size: 10px;
  letter-spacing: 0.3px;
  opacity: 0.85;
  transition: opacity .2s ease, color .2s ease;
}
.frame1eadf-nav-item.frame1eadf-is-current {
  color: var(--frame1eadf-citrine);
}
.frame1eadf-nav-item.frame1eadf-is-current .frame1eadf-nav-label {
  opacity: 1;
  color: var(--frame1eadf-citrine);
}
.frame1eadf-nav-item.frame1eadf-is-current .frame1eadf-nav-icon::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  background: var(--frame1eadf-citrine);
  border-radius: 2px;
}

/* Central raised CTA */
.frame1eadf-nav-cta {
  position: relative;
  align-self: start;
  margin-top: -22px;
}
.frame1eadf-nav-cta .frame1eadf-nav-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--frame1eadf-flame), var(--frame1eadf-flame-soft));
  box-shadow:
    0 0 0 4px rgba(20,20,20,1),
    0 0 0 6px var(--frame1eadf-citrine),
    0 12px 22px rgba(230,81,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 4px;
}
.frame1eadf-nav-cta .frame1eadf-nav-label {
  color: var(--frame1eadf-citrine);
  font-weight: 800;
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.frame1eadf-nav-cta:hover .frame1eadf-nav-icon {
  transform: translateY(-2px);
  transition: transform .2s ease;
}

/* Small helper utilities */
.frame1eadf-hidden { display: none !important; }
.frame1eadf-text-muted { color: var(--frame1eadf-slate-soft); }
.frame1eadf-text-accent { color: var(--frame1eadf-citrine); }
.frame1eadf-text-flame { color: var(--frame1eadf-flame-soft); }
.frame1eadf-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--frame1eadf-flame-soft);
  margin-bottom: 6px;
  font-weight: 700;
}
.frame1eadf-lead {
  font-size: 14px;
  color: var(--frame1eadf-paper);
  margin: 0 0 12px;
}

/* Visually-hidden helper (a11y) */
.frame1eadf-vh {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Focus visibility for keyboard users */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--frame1eadf-citrine);
  outline-offset: 2px;
  border-radius: 4px;
}
