/* ==========================================================================
   Vanessa Rangadhol - compact display stylesheet
   Canvas: 320-430px mobile first, centered phone canvas on wide screens
   Palette: ink navy base, saddle brown / sienna brand tones, cream text
   Direction: rounded headings + compact body, stroke-dominant corners,
   pure image game cards, compact metric rhythm, square high-contrast CTAs
   ========================================================================== */

:root {
  --frame09df6-ink: #1B263B;
  --frame09df6-ink-deep: #141E32;
  --frame09df6-ink-raised: #223049;
  --frame09df6-ink-hover: #293A58;
  --frame09df6-brown: #8B4513;
  --frame09df6-sienna: #A0522D;
  --frame09df6-cream: #F5EBDD;
  --frame09df6-cream-dim: #CDB9A2;
  --frame09df6-cream-faint: #A79882;
  --frame09df6-gold: #E9B872;
  --frame09df6-line: rgba(160, 82, 45, 0.42);
  --frame09df6-line-soft: rgba(160, 82, 45, 0.26);
  --frame09df6-canvas: 480px;
  --frame09df6-font-head: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  --frame09df6-font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--frame09df6-ink-deep);
  color: var(--frame09df6-cream);
  font-family: var(--frame09df6-font-body);
  font-size: 13px;
  line-height: 1.58;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--frame09df6-gold);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--frame09df6-gold);
  outline-offset: 2px;
}

/* Phone canvas: page stays a centered mobile column on wide screens */
.frame09df6-shell {
  position: relative;
  max-width: var(--frame09df6-canvas);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, #1D2A42 0%, #182238 100%);
  border-left: 1px solid var(--frame09df6-line-soft);
  border-right: 1px solid var(--frame09df6-line-soft);
  padding-top: 100px;
  padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

.frame09df6-main {
  display: block;
  padding: 0 12px;
}

/* --------------------------------------------------------------------------
   Top action band: brand mark left, register / login right, expandable menu
   -------------------------------------------------------------------------- */

.frame09df6-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--frame09df6-canvas);
  z-index: 60;
  background: linear-gradient(180deg, #202E48 0%, #1B263B 100%);
  border-bottom: 1px solid var(--frame09df6-line);
  box-shadow: 0 6px 14px rgba(10, 15, 26, 0.55);
}

.frame09df6-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 58px;
  padding: 9px 12px 7px;
}

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

.frame09df6-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--frame09df6-line);
  background: var(--frame09df6-ink-raised);
  object-fit: cover;
  flex: 0 0 auto;
}

.frame09df6-brand-name {
  font-family: var(--frame09df6-font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--frame09df6-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

/* Square, high contrast CTA pair */
.frame09df6-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  font-family: var(--frame09df6-font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.frame09df6-btn:active {
  transform: scale(0.94);
}

.frame09df6-btn-cta {
  background: linear-gradient(180deg, var(--frame09df6-sienna) 0%, var(--frame09df6-brown) 100%);
  color: #FFF6E8;
  border: 1px solid rgba(233, 184, 114, 0.55);
}

.frame09df6-btn-ghost {
  background: transparent;
  color: var(--frame09df6-cream);
  border: 1px solid rgba(245, 235, 221, 0.5);
}

.frame09df6-btn-cta:hover {
  filter: brightness(1.12);
}

.frame09df6-btn-ghost:hover {
  border-color: var(--frame09df6-gold);
  color: var(--frame09df6-gold);
}

/* Expandable page menu strip */
.frame09df6-menustrip {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  background: rgba(139, 69, 19, 0.18);
  border-top: 1px solid var(--frame09df6-line-soft);
  color: var(--frame09df6-cream-dim);
  font-family: var(--frame09df6-font-head);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.frame09df6-menustrip-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 18px;
}

.frame09df6-menustrip-burger i {
  display: block;
  height: 2px;
  background: var(--frame09df6-gold);
  border-radius: 2px;
}

.frame09df6-menustrip-label {
  font-weight: 700;
}

.frame09df6-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: #16203A;
}

.frame09df6-menu-open {
  max-height: 520px;
}

.frame09df6-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px 12px 14px;
}

.frame09df6-menu-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--frame09df6-line-soft);
  border-radius: 6px;
  background: var(--frame09df6-ink-raised);
  color: var(--frame09df6-cream);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.frame09df6-menu-link:hover {
  border-color: var(--frame09df6-gold);
  color: var(--frame09df6-gold);
}

.frame09df6-menu-link span {
  border-left: 2px solid var(--frame09df6-sienna);
  padding-left: 7px;
}

/* --------------------------------------------------------------------------
   Hero carousel: three local promo banners, dual-jump on tap
   -------------------------------------------------------------------------- */

.frame09df6-hero {
  position: relative;
  margin: 12px 0 4px;
}

.frame09df6-hero-frame {
  overflow: hidden;
  border: 1px solid var(--frame09df6-line);
  border-radius: 6px;
  background: var(--frame09df6-ink-raised);
}

.frame09df6-hero-track {
  display: flex;
  transition: transform 0.42s ease;
}

.frame09df6-hero-slide {
  position: relative;
  display: block;
  width: 100%;
  flex: 0 0 100%;
}

.frame09df6-hero-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.frame09df6-hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 26px 14px 12px;
  background: linear-gradient(180deg, rgba(20, 30, 50, 0) 0%, rgba(20, 30, 50, 0.88) 62%);
}

.frame09df6-hero-copy strong {
  display: block;
  font-family: var(--frame09df6-font-head);
  font-size: 15.5px;
  line-height: 1.25;
  color: #FFF6E8;
}

.frame09df6-hero-copy em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-size: 11.5px;
  color: var(--frame09df6-cream-dim);
  line-height: 1.45;
}

.frame09df6-hero-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  background: linear-gradient(180deg, var(--frame09df6-sienna) 0%, var(--frame09df6-brown) 100%);
  border: 1px solid rgba(233, 184, 114, 0.55);
  color: #FFF6E8;
  font-family: var(--frame09df6-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
}

.frame09df6-hero-slide:active .frame09df6-hero-btn {
  transform: scale(0.94);
}

.frame09df6-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}

.frame09df6-dot {
  min-width: 44px;
  min-height: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}

.frame09df6-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 235, 221, 0.32);
  transition: transform 0.15s ease, background 0.15s ease;
}

.frame09df6-dot-on::before {
  width: 20px;
  border-radius: 4px;
  background: var(--frame09df6-gold);
}

/* --------------------------------------------------------------------------
   Intro block: single H1 plus compact metric strip
   -------------------------------------------------------------------------- */

.frame09df6-intro {
  margin: 16px 0 6px;
}

.frame09df6-title {
  font-family: var(--frame09df6-font-head);
  font-size: 21px;
  line-height: 1.28;
  font-weight: 700;
  color: #FFF6E8;
  letter-spacing: 0.01em;
}

.frame09df6-lead {
  margin-top: 9px;
  color: var(--frame09df6-cream-dim);
}

.frame09df6-lead strong {
  color: var(--frame09df6-cream);
}

.frame09df6-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 14px 0 4px;
}

.frame09df6-metric {
  border: 1px solid var(--frame09df6-line-soft);
  border-radius: 6px;
  background: var(--frame09df6-ink-raised);
  padding: 9px 6px 8px;
  text-align: center;
}

.frame09df6-metric b {
  display: block;
  font-family: var(--frame09df6-font-head);
  font-size: 17px;
  color: var(--frame09df6-gold);
  line-height: 1.1;
}

.frame09df6-metric small {
  display: block;
  margin-top: 4px;
  font-size: 9.5px;
  line-height: 1.35;
  color: var(--frame09df6-cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Generic section shell
   -------------------------------------------------------------------------- */

.frame09df6-section {
  margin-top: 26px;
}

.frame09df6-h2 {
  font-family: var(--frame09df6-font-head);
  font-size: 17.5px;
  line-height: 1.3;
  font-weight: 700;
  color: #FFF6E8;
  padding-left: 10px;
  border-left: 3px solid var(--frame09df6-sienna);
}

.frame09df6-h3 {
  font-family: var(--frame09df6-font-head);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--frame09df6-gold);
}

.frame09df6-p {
  margin-top: 9px;
  color: var(--frame09df6-cream-dim);
}

.frame09df6-p strong,
.frame09df6-p b {
  color: var(--frame09df6-cream);
}

.frame09df6-p a {
  border-bottom: 1px dotted rgba(233, 184, 114, 0.6);
  color: var(--frame09df6-gold);
}

/* --------------------------------------------------------------------------
   Game library: category blocks, pure image cards with short names below
   -------------------------------------------------------------------------- */

.frame09df6-cat {
  margin-top: 20px;
}

.frame09df6-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--frame09df6-line);
  padding-bottom: 6px;
}

.frame09df6-cat-count {
  flex: 0 0 auto;
  font-family: var(--frame09df6-font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--frame09df6-ink-deep);
  background: var(--frame09df6-gold);
  padding: 3px 7px;
  border-radius: 0;
}

.frame09df6-cat-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--frame09df6-cream-dim);
  line-height: 1.55;
}

.frame09df6-cat-note a {
  color: var(--frame09df6-gold);
  border-bottom: 1px dotted rgba(233, 184, 114, 0.6);
}

.frame09df6-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 6px;
  margin-top: 10px;
}

.frame09df6-gcard {
  display: block;
  border: 1px solid var(--frame09df6-line-soft);
  border-radius: 6px;
  background: var(--frame09df6-ink-raised);
  padding: 4px 4px 6px;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.frame09df6-gcard:active {
  transform: scale(0.93);
}

.frame09df6-gcard:hover {
  border-color: var(--frame09df6-gold);
}

.frame09df6-gcard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  background: var(--frame09df6-ink);
}

.frame09df6-gcard-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 5px;
  font-size: 10.5px;
  line-height: 1.3;
  text-align: center;
  color: var(--frame09df6-cream);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Feature spec rows: compact metric-explanation rhythm
   -------------------------------------------------------------------------- */

.frame09df6-spec {
  margin-top: 12px;
  border: 1px solid var(--frame09df6-line-soft);
  border-radius: 6px;
  background: var(--frame09df6-ink-raised);
  overflow: hidden;
}

.frame09df6-spec-row {
  display: flex;
  gap: 10px;
  padding: 10px 11px;
  border-top: 1px solid var(--frame09df6-line-soft);
}

.frame09df6-spec-row:first-child {
  border-top: 0;
}

.frame09df6-spec-k {
  flex: 0 0 92px;
  font-family: var(--frame09df6-font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--frame09df6-gold);
  line-height: 1.35;
}

.frame09df6-spec-v {
  flex: 1 1 auto;
  font-size: 12px;
  color: var(--frame09df6-cream-dim);
  line-height: 1.5;
}

.frame09df6-spec-v a {
  color: var(--frame09df6-gold);
  border-bottom: 1px dotted rgba(233, 184, 114, 0.6);
}

/* Numbered step list (payment flow) */
.frame09df6-steps {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: frame09df6-step;
}

.frame09df6-steps li {
  counter-increment: frame09df6-step;
  position: relative;
  padding: 0 0 12px 34px;
  font-size: 12.5px;
  color: var(--frame09df6-cream-dim);
  line-height: 1.55;
}

.frame09df6-steps li::before {
  content: counter(frame09df6-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--frame09df6-font-head);
  font-size: 12px;
  font-weight: 700;
  color: #FFF6E8;
  background: linear-gradient(180deg, var(--frame09df6-sienna) 0%, var(--frame09df6-brown) 100%);
  border-radius: 0;
}

.frame09df6-steps li b {
  color: var(--frame09df6-cream);
}

/* Partner / channel strip */
.frame09df6-paystrip {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  border: 1px dashed var(--frame09df6-line);
  border-radius: 6px;
  background: rgba(34, 48, 73, 0.5);
  overflow-x: auto;
  scrollbar-width: none;
}

.frame09df6-paystrip::-webkit-scrollbar {
  display: none;
}

.frame09df6-paystrip img {
  flex: 0 0 auto;
  width: 58px;
  height: 34px;
  object-fit: contain;
  border: 1px solid var(--frame09df6-line-soft);
  border-radius: 4px;
  background: rgba(245, 235, 221, 0.96);
  padding: 2px;
}

/* --------------------------------------------------------------------------
   Tricks list
   -------------------------------------------------------------------------- */

.frame09df6-tricks {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.frame09df6-tricks li {
  position: relative;
  margin-top: 8px;
  padding: 9px 10px 9px 32px;
  border: 1px solid var(--frame09df6-line-soft);
  border-left: 3px solid var(--frame09df6-sienna);
  border-radius: 6px;
  background: var(--frame09df6-ink-raised);
  font-size: 12.5px;
  color: var(--frame09df6-cream-dim);
  line-height: 1.55;
}

.frame09df6-tricks li::before {
  content: "T" counter(frame09df6-trick);
  counter-increment: frame09df6-trick;
  position: absolute;
  left: 8px;
  top: 10px;
  font-family: var(--frame09df6-font-head);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--frame09df6-gold);
  letter-spacing: 0.05em;
}

.frame09df6-tricks {
  counter-reset: frame09df6-trick;
}

.frame09df6-tricks li b {
  color: var(--frame09df6-cream);
}

/* --------------------------------------------------------------------------
   FAQ: native disclosure blocks
   -------------------------------------------------------------------------- */

.frame09df6-faq {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.frame09df6-faq details {
  border: 1px solid var(--frame09df6-line-soft);
  border-radius: 6px;
  background: var(--frame09df6-ink-raised);
}

.frame09df6-faq summary {
  list-style: none;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
  font-family: var(--frame09df6-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--frame09df6-cream);
  line-height: 1.4;
}

.frame09df6-faq summary::-webkit-details-marker {
  display: none;
}

.frame09df6-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--frame09df6-line);
  border-radius: 4px;
  color: var(--frame09df6-gold);
  font-size: 14px;
  line-height: 1;
}

.frame09df6-faq details[open] summary::after {
  content: "\2013";
}

.frame09df6-faq-answer {
  padding: 0 11px 12px;
  font-size: 12.5px;
  color: var(--frame09df6-cream-dim);
  line-height: 1.6;
}

.frame09df6-faq-answer a {
  color: var(--frame09df6-gold);
  border-bottom: 1px dotted rgba(233, 184, 114, 0.6);
}

/* --------------------------------------------------------------------------
   Key takeaways checklist
   -------------------------------------------------------------------------- */

.frame09df6-takeaways {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.frame09df6-takeaways li {
  position: relative;
  margin-top: 7px;
  padding: 8px 10px 8px 32px;
  border: 1px solid var(--frame09df6-line-soft);
  border-radius: 6px;
  background: rgba(34, 48, 73, 0.55);
  font-size: 12.5px;
  color: var(--frame09df6-cream-dim);
  line-height: 1.5;
}

.frame09df6-takeaways li::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 12px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--frame09df6-gold);
  border-bottom: 2px solid var(--frame09df6-gold);
  transform: rotate(-45deg);
}

.frame09df6-takeaways li b {
  color: var(--frame09df6-cream);
}

/* --------------------------------------------------------------------------
   Extended footer: brand > two-column directory > promo actions > disclaimer
   -------------------------------------------------------------------------- */

.frame09df6-xfooter {
  margin-top: 30px;
  border: 1px solid var(--frame09df6-line);
  border-radius: 6px;
  background: #182238;
  padding: 14px 12px 12px;
}

.frame09df6-xfooter-tag {
  font-family: var(--frame09df6-font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--frame09df6-gold);
}

.frame09df6-xfooter-brand {
  margin-top: 7px;
  font-size: 12px;
  color: var(--frame09df6-cream-dim);
  line-height: 1.6;
}

.frame09df6-xfooter-h2 {
  margin-top: 12px;
  font-family: var(--frame09df6-font-head);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  color: #FFF6E8;
}

.frame09df6-xfooter-label {
  margin-top: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--frame09df6-line-soft);
  font-family: var(--frame09df6-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--frame09df6-cream);
}

.frame09df6-dir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.frame09df6-dir a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 9px;
  border: 1px solid var(--frame09df6-line-soft);
  border-radius: 6px;
  background: var(--frame09df6-ink-raised);
  color: var(--frame09df6-cream);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
}

.frame09df6-dir a::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  background: var(--frame09df6-sienna);
  transform: rotate(45deg);
}

.frame09df6-dir a:hover {
  border-color: var(--frame09df6-gold);
  color: var(--frame09df6-gold);
}

.frame09df6-promo6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 8px;
}

.frame09df6-promo6 button {
  min-height: 44px;
  padding: 9px 8px;
  font-family: var(--frame09df6-font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFF6E8;
  background: linear-gradient(180deg, var(--frame09df6-sienna) 0%, var(--frame09df6-brown) 100%);
  border: 1px solid rgba(233, 184, 114, 0.5);
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.frame09df6-promo6 button:active {
  transform: scale(0.94);
}

.frame09df6-promo6 button:hover {
  filter: brightness(1.12);
}

.frame09df6-xfooter-note {
  margin-top: 14px;
  padding: 10px 10px 8px;
  border: 1px dashed var(--frame09df6-line);
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--frame09df6-cream-faint);
}

/* Common thin footer under the extended block */
.frame09df6-footer {
  margin-top: 16px;
  padding: 12px 4px 4px;
  border-top: 1px solid var(--frame09df6-line-soft);
  text-align: center;
  font-size: 11px;
  color: var(--frame09df6-cream-faint);
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   Bottom navigation rail: five roles, monochrome icons + accent indicator
   -------------------------------------------------------------------------- */

.frame09df6-bnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--frame09df6-canvas);
  z-index: 70;
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, #202E48 0%, #16203A 100%);
  border-top: 1px solid var(--frame09df6-line);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -6px 14px rgba(10, 15, 26, 0.5);
}

.frame09df6-bnav-item {
  position: relative;
  flex: 1 1 20%;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 7px 2px 6px;
  color: var(--frame09df6-cream-dim);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform 0.12s ease, color 0.12s ease;
}

.frame09df6-bnav-item:active {
  transform: scale(0.9);
}

.frame09df6-bnav-item::before {
  /* activation indicator: top accent line */
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 3px;
  background: transparent;
}

.frame09df6-bnav-on {
  color: var(--frame09df6-gold);
}

.frame09df6-bnav-on::before {
  background: var(--frame09df6-gold);
}

.frame09df6-bnav-ico {
  width: 22px;
  height: 22px;
  display: block;
}

.frame09df6-bnav-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

.frame09df6-bnav-ico .frame09df6-ico-fill {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.frame09df6-bnav-ico .frame09df6-ico-solid {
  fill: currentColor;
  stroke: none;
}

.frame09df6-bnav-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Responsive ladder inside the 320-430px phone canvas
   -------------------------------------------------------------------------- */

@media (min-width: 375px) {
  .frame09df6-main {
    padding: 0 14px;
  }

  .frame09df6-title {
    font-size: 23px;
  }

  .frame09df6-h2 {
    font-size: 18.5px;
  }

  .frame09df6-grid {
    gap: 9px 7px;
  }

  .frame09df6-gcard-name {
    font-size: 11px;
  }

  .frame09df6-metric small {
    font-size: 10px;
  }
}

@media (min-width: 430px) {
  /* wider phone canvas keeps five game columns like a native lobby */
  .frame09df6-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .frame09df6-metrics {
    gap: 8px;
  }

  .frame09df6-spec-k {
    flex-basis: 104px;
  }

  .frame09df6-title {
    font-size: 24.5px;
  }

  .frame09df6-hero-copy strong {
    font-size: 16.5px;
  }
}

@media (min-width: 481px) {
  /* desktop view: keep the phone canvas, ease reading rhythm */
  .frame09df6-main {
    padding: 0 18px;
  }

  .frame09df6-faq {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .frame09df6-hero-track {
    transition: none;
  }

  .frame09df6-btn,
  .frame09df6-gcard,
  .frame09df6-bnav-item,
  .frame09df6-promo6 button {
    transition: none;
  }
}
