/* ==========================================================================
   fungame.homes - adaptive interface stylesheet
   Canvas: 320-430px mobile-first, centered phone frame on wide screens
   Palette: #2C3E50 canvas / #FDF5E6 text / #8B7355 bronze / #9932CC orchid
            #EE82EE violet accents / #CED4DA mist
   Direction: display font x readable body, pill buttons x square cards,
              light floating game tiles, short-list rhythm, glow on key CTAs
   ========================================================================== */

/* ---------- design tokens ---------- */
:root {
  --frame68c75-canvas: #2C3E50;
  --frame68c75-canvas-deep: #243342;
  --frame68c75-canvas-deeper: #1D2A37;
  --frame68c75-bronze: #8B7355;
  --frame68c75-bronze-soft: rgba(139, 115, 85, 0.42);
  --frame68c75-orchid: #9932CC;
  --frame68c75-orchid-deep: #7B26A6;
  --frame68c75-violet: #EE82EE;
  --frame68c75-cream: #FDF5E6;
  --frame68c75-mist: #CED4DA;
  --frame68c75-mist-dim: rgba(206, 212, 218, 0.62);
  --frame68c75-line: rgba(206, 212, 218, 0.16);
  --frame68c75-line-strong: rgba(206, 212, 218, 0.30);
  --frame68c75-tile: rgba(253, 245, 230, 0.05);
  --frame68c75-tile-lift: rgba(253, 245, 230, 0.09);
  --frame68c75-font-display: "Arial Black", "Segoe UI Black", "Helvetica Neue", Arial, sans-serif;
  --frame68c75-font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --frame68c75-radius-pill: 999px;
  --frame68c75-radius-card: 8px;
  --frame68c75-radius-soft: 12px;
  --frame68c75-gap: 10px;
  --frame68c75-bnav-h: 62px;
  --frame68c75-glow: 0 0 14px rgba(238, 130, 238, 0.45);
}

/* ---------- base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  background: #16202B;
  color: var(--frame68c75-cream);
  font-family: var(--frame68c75-font-body);
  font-size: 15px;
  line-height: 1.62;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

a {
  color: var(--frame68c75-violet);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--frame68c75-violet);
  outline-offset: 2px;
  border-radius: 4px;
}

.frame68c75-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- centered phone canvas ---------- */
.frame68c75-shell {
  position: relative;
  width: 100%;
  max-width: 430px; /* phone canvas stays 430px wide even on desktop */
  margin: 0 auto;
  min-height: 100vh;
  /* keep the last footer row clear of the fixed bottom navigation */
  padding-bottom: calc(var(--frame68c75-bnav-h) + 24px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(120% 46% at 50% -60px, rgba(153, 50, 204, 0.20), transparent 62%),
    var(--frame68c75-canvas);
  box-shadow: 0 0 0 1px rgba(139, 115, 85, 0.35), 0 0 44px rgba(0, 0, 0, 0.5);
  overflow-x: clip;
}

@media (min-width: 431px) {
  body {
    background:
      radial-gradient(60% 40% at 50% 0, rgba(153, 50, 204, 0.14), transparent 70%),
      #16202B;
  }

  .frame68c75-shell {
    border-left: 1px solid rgba(139, 115, 85, 0.5);
    border-right: 1px solid rgba(139, 115, 85, 0.5);
  }
}

/* =====================================================================
   Top bar - two stacked layers: brand row above, action row below
   ===================================================================== */
.frame68c75-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, var(--frame68c75-canvas-deeper) 0%, var(--frame68c75-canvas-deep) 100%);
  border-bottom: 1px solid var(--frame68c75-bronze-soft);
}

/* brand layer: logo image + wordmark only */
.frame68c75-brandrow {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 9px 12px 7px;
}

.frame68c75-brand-logo {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: var(--frame68c75-radius-card);
  border: 1px solid var(--frame68c75-bronze-soft);
  background: var(--frame68c75-canvas-deeper);
  object-fit: cover;
}

.frame68c75-brand-name {
  font-family: var(--frame68c75-font-display);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--frame68c75-cream);
  line-height: 1;
  text-transform: lowercase;
}

.frame68c75-brand-name em {
  font-style: normal;
  color: var(--frame68c75-violet);
}

.frame68c75-menu-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 44px;
  border-radius: var(--frame68c75-radius-pill);
  border: 1px solid var(--frame68c75-line-strong);
  color: var(--frame68c75-mist);
  background: var(--frame68c75-tile);
}

.frame68c75-menu-btn:active {
  box-shadow: var(--frame68c75-glow);
}

.frame68c75-menu-btn .frame68c75-ico {
  width: 22px;
  height: 22px;
}

/* action layer: segmented register / login buttons */
.frame68c75-actionrow {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 8px;
  padding: 0 12px 10px;
}

.frame68c75-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  border-radius: var(--frame68c75-radius-pill);
  font-family: var(--frame68c75-font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.frame68c75-act-primary {
  background: linear-gradient(135deg, var(--frame68c75-orchid) 0%, var(--frame68c75-orchid-deep) 100%);
  color: var(--frame68c75-cream);
  box-shadow: inset 0 0 0 1px rgba(238, 130, 238, 0.35), 0 3px 10px rgba(0, 0, 0, 0.35);
}

.frame68c75-act-primary:active {
  box-shadow: var(--frame68c75-glow);
  transform: translateY(1px);
}

.frame68c75-act-ghost {
  background: transparent;
  color: var(--frame68c75-mist);
  border: 1px solid var(--frame68c75-bronze);
}

.frame68c75-act-ghost:active {
  color: var(--frame68c75-violet);
  border-color: var(--frame68c75-violet);
}

/* expandable navigation panel */
.frame68c75-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease;
  background: var(--frame68c75-canvas-deeper);
  border-top: 1px solid transparent;
}

.frame68c75-menu.frame68c75-open {
  max-height: 420px;
  border-top-color: var(--frame68c75-line);
}

.frame68c75-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 6px 12px 12px;
  background: var(--frame68c75-line);
}

.frame68c75-menu-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 10px 10px 12px;
  background: var(--frame68c75-canvas-deeper);
  color: var(--frame68c75-mist);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
}

.frame68c75-menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: transparent;
}

.frame68c75-menu-link:hover,
.frame68c75-menu-link:focus-visible {
  color: var(--frame68c75-cream);
  text-decoration: none;
  background: rgba(153, 50, 204, 0.16);
}

.frame68c75-menu-link.frame68c75-active {
  color: var(--frame68c75-violet);
}

.frame68c75-menu-link.frame68c75-active::before {
  background: var(--frame68c75-violet); /* top indicator line style for the live page */
}

/* =====================================================================
   Main column
   ===================================================================== */
.frame68c75-main {
  padding: 14px 12px 6px;
}

/* ---------- hero ---------- */
.frame68c75-hero {
  padding: 14px 2px 6px;
}

.frame68c75-hero-title {
  font-family: var(--frame68c75-font-display);
  font-size: clamp(24px, 6.4vw, 29px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.2px;
  color: var(--frame68c75-cream);
}

.frame68c75-hero-title span {
  color: var(--frame68c75-violet);
}

.frame68c75-hero-sub {
  margin-top: 10px;
  max-width: 40ch;
  color: var(--frame68c75-mist);
  font-size: 14px;
}

.frame68c75-hero-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.frame68c75-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--frame68c75-radius-pill);
  background: linear-gradient(135deg, var(--frame68c75-orchid) 0%, var(--frame68c75-orchid-deep) 100%);
  color: var(--frame68c75-cream);
  font-family: var(--frame68c75-font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(238, 130, 238, 0.4), 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.frame68c75-cta-main:active {
  box-shadow: var(--frame68c75-glow); /* glow feedback reserved for key CTAs */
  transform: translateY(1px);
}

.frame68c75-cta-main .frame68c75-ico {
  width: 16px;
  height: 16px;
}

.frame68c75-cta-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--frame68c75-radius-pill);
  border: 1px solid var(--frame68c75-bronze);
  color: var(--frame68c75-mist);
  font-size: 13.5px;
  font-weight: 700;
}

.frame68c75-cta-alt:hover {
  color: var(--frame68c75-cream);
  text-decoration: none;
  border-color: var(--frame68c75-violet);
}

.frame68c75-hero-chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.frame68c75-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: var(--frame68c75-radius-pill);
  border: 1px solid var(--frame68c75-line-strong);
  background: var(--frame68c75-tile);
  color: var(--frame68c75-mist);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.frame68c75-chip b {
  color: var(--frame68c75-violet);
  font-weight: 900;
}

/* =====================================================================
   Promo banner carousel - 2:1 artwork, dots, swipe support via JS
   ===================================================================== */
.frame68c75-cta-carousel {
  position: relative;
  margin: 16px 0 4px;
  border-radius: var(--frame68c75-radius-soft);
  overflow: hidden;
  border: 1px solid var(--frame68c75-bronze-soft);
  background: var(--frame68c75-canvas-deeper);
}

.frame68c75-cta-track {
  display: flex;
  transition: transform 0.4s ease;
}

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

.frame68c75-slide img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.frame68c75-slide-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: var(--frame68c75-radius-pill);
  background: rgba(29, 42, 55, 0.85);
  border: 1px solid var(--frame68c75-bronze-soft);
  color: var(--frame68c75-violet);
  font-family: var(--frame68c75-font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.frame68c75-slide-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(22, 32, 43, 0.92) 78%);
  color: var(--frame68c75-cream);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.frame68c75-dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
}

.frame68c75-dot {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.frame68c75-dot i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--frame68c75-mist-dim);
  transition: background 0.2s ease, transform 0.2s ease;
}

.frame68c75-dot.frame68c75-dot-on i {
  background: var(--frame68c75-violet);
  transform: scale(1.35);
  box-shadow: 0 0 8px rgba(238, 130, 238, 0.7);
}

/* ---------- category quick strip ---------- */
.frame68c75-catstrip {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 14px 2px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.frame68c75-catstrip::-webkit-scrollbar {
  display: none;
}

.frame68c75-cat-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--frame68c75-radius-pill);
  border: 1px solid var(--frame68c75-line-strong);
  background: var(--frame68c75-tile);
  color: var(--frame68c75-mist);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.frame68c75-cat-link:hover {
  color: var(--frame68c75-cream);
  text-decoration: none;
  border-color: var(--frame68c75-violet);
}

.frame68c75-cat-link i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--frame68c75-orchid);
}

/* =====================================================================
   Game sections - numbered kicker, H2, intro, two real page links, grid
   ===================================================================== */
.frame68c75-gsec {
  margin-top: 26px;
  scroll-margin-top: 132px;
}

.frame68c75-gsec-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid var(--frame68c75-bronze-soft);
  padding-bottom: 8px;
}

.frame68c75-gsec-num {
  font-family: var(--frame68c75-font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--frame68c75-bronze);
  letter-spacing: 1px;
}

.frame68c75-gsec-title {
  font-family: var(--frame68c75-font-display);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.22;
  color: var(--frame68c75-cream);
  letter-spacing: -0.1px;
}

.frame68c75-gsec-intro {
  margin-top: 9px;
  color: var(--frame68c75-mist);
  font-size: 13.5px;
}

.frame68c75-gsec-more {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  font-size: 12px;
  color: var(--frame68c75-mist-dim);
}

.frame68c75-gsec-more a {
  color: var(--frame68c75-violet);
  font-weight: 600;
}

/* compact game grid: 4 columns at 320px, 5 columns from 400px up */
.frame68c75-ggrid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--frame68c75-gap);
}

@media (min-width: 400px) and (max-width: 430px) {
  .frame68c75-ggrid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* light floating image card - square corners, soft shadow, subtle lift */
.frame68c75-game {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px 4px 7px;
  border-radius: var(--frame68c75-radius-card);
  background: var(--frame68c75-tile);
  border: 1px solid var(--frame68c75-line);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  text-align: center;
  min-width: 0;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.frame68c75-game:hover,
.frame68c75-game:active {
  background: var(--frame68c75-tile-lift);
  border-color: rgba(238, 130, 238, 0.55);
  transform: translateY(-2px);
  text-decoration: none;
}

.frame68c75-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
  background: var(--frame68c75-canvas-deeper);
}

.frame68c75-game-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--frame68c75-cream);
  overflow-wrap: anywhere;
}

/* =====================================================================
   Content modules - each block uses its own presentation
   ===================================================================== */
.frame68c75-mod {
  margin-top: 30px;
}

.frame68c75-mod-title {
  font-family: var(--frame68c75-font-display);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.24;
  color: var(--frame68c75-cream);
}

.frame68c75-mod-lead {
  margin-top: 8px;
  color: var(--frame68c75-mist);
  font-size: 13.5px;
}

/* --- steps module --- */
.frame68c75-steps {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.frame68c75-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--frame68c75-radius-card);
  background: var(--frame68c75-tile);
  border: 1px solid var(--frame68c75-line);
}

.frame68c75-step-num {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--frame68c75-orchid), var(--frame68c75-orchid-deep));
  color: var(--frame68c75-cream);
  font-family: var(--frame68c75-font-display);
  font-size: 13px;
  font-weight: 900;
}

.frame68c75-step h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--frame68c75-cream);
  line-height: 1.3;
}

.frame68c75-step p {
  margin-top: 3px;
  font-size: 13px;
  color: var(--frame68c75-mist);
}

.frame68c75-tipbox {
  margin-top: 12px;
  padding: 11px 13px;
  border-left: 3px solid var(--frame68c75-violet);
  border-radius: 0 var(--frame68c75-radius-card) var(--frame68c75-radius-card) 0;
  background: rgba(153, 50, 204, 0.12);
  font-size: 13px;
  color: var(--frame68c75-mist);
}

.frame68c75-tipbox b {
  color: var(--frame68c75-violet);
}

/* --- reviews module --- */
.frame68c75-reviews {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.frame68c75-review {
  padding: 12px 13px;
  border-radius: var(--frame68c75-radius-card);
  background: var(--frame68c75-tile);
  border: 1px solid var(--frame68c75-line);
}

.frame68c75-review-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.frame68c75-review-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--frame68c75-canvas-deeper);
  border: 1px solid var(--frame68c75-bronze-soft);
  font-family: var(--frame68c75-font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--frame68c75-violet);
}

.frame68c75-review-who {
  min-width: 0;
}

.frame68c75-review-who b {
  display: block;
  font-size: 13px;
  color: var(--frame68c75-cream);
}

.frame68c75-review-who span {
  display: block;
  font-size: 11px;
  color: var(--frame68c75-mist-dim);
}

.frame68c75-stars {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--frame68c75-violet);
  white-space: nowrap;
}

.frame68c75-review p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--frame68c75-mist);
}

.frame68c75-review-note {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--frame68c75-mist-dim);
}

/* --- winners module --- */
.frame68c75-winboard {
  margin-top: 14px;
  border: 1px solid var(--frame68c75-bronze-soft);
  border-radius: var(--frame68c75-radius-soft);
  background: var(--frame68c75-canvas-deeper);
  overflow: hidden;
}

.frame68c75-winrow {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--frame68c75-line);
  width: 100%;
  text-align: left;
}

.frame68c75-winrow:last-of-type {
  border-bottom: 0;
}

.frame68c75-winrow img {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  object-fit: cover;
  border: 1px solid var(--frame68c75-line-strong);
  background: var(--frame68c75-canvas);
}

.frame68c75-winrow:hover {
  background: rgba(153, 50, 204, 0.10);
}

.frame68c75-win-who {
  min-width: 0;
}

.frame68c75-win-who b {
  display: block;
  font-size: 13px;
  color: var(--frame68c75-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.frame68c75-win-who span {
  display: block;
  font-size: 11.5px;
  color: var(--frame68c75-mist-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.frame68c75-win-amt {
  font-family: var(--frame68c75-font-display);
  font-size: 13.5px;
  font-weight: 900;
  color: var(--frame68c75-violet);
  white-space: nowrap;
}

.frame68c75-win-note {
  padding: 9px 12px;
  font-size: 11.5px;
  color: var(--frame68c75-mist-dim);
  background: rgba(253, 245, 230, 0.03);
}

/* --- direct answer module --- */
.frame68c75-da {
  margin-top: 14px;
  padding: 14px 14px 15px;
  border-radius: var(--frame68c75-radius-soft);
  border: 1px solid rgba(153, 50, 204, 0.45);
  background: linear-gradient(160deg, rgba(153, 50, 204, 0.16), rgba(29, 42, 55, 0.6));
}

.frame68c75-da-q {
  font-family: var(--frame68c75-font-display);
  font-size: 14.5px;
  font-weight: 900;
  color: var(--frame68c75-violet);
  line-height: 1.35;
}

.frame68c75-da p {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--frame68c75-cream);
}

.frame68c75-da-more {
  margin-top: 9px;
  font-size: 13px;
  color: var(--frame68c75-mist);
}

.frame68c75-facts {
  margin-top: 12px;
  display: grid;
  gap: 7px;
}

.frame68c75-fact {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 9px 11px;
  border-radius: var(--frame68c75-radius-card);
  background: rgba(253, 245, 230, 0.05);
  border: 1px solid var(--frame68c75-line);
  font-size: 12.5px;
  color: var(--frame68c75-mist);
}

.frame68c75-fact i {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--frame68c75-orchid);
}

/* --- use case module --- */
.frame68c75-cases {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.frame68c75-case {
  padding: 12px 13px;
  border-radius: var(--frame68c75-radius-card);
  border: 1px solid var(--frame68c75-line);
  background: var(--frame68c75-tile);
  border-top: 3px solid var(--frame68c75-bronze);
}

.frame68c75-case h3 {
  font-family: var(--frame68c75-font-display);
  font-size: 13.5px;
  font-weight: 900;
  color: var(--frame68c75-cream);
  letter-spacing: 0.2px;
}

.frame68c75-case p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--frame68c75-mist);
}

/* =====================================================================
   Homepage extended footer - compact groups:
   brand > promotions (7) > page directory > disclaimer
   ===================================================================== */
.frame68c75-footx {
  margin: 34px 12px 0;
  padding: 16px 14px 14px;
  border-radius: var(--frame68c75-radius-soft) var(--frame68c75-radius-soft) 0 0;
  border: 1px solid var(--frame68c75-bronze-soft);
  border-bottom: 0;
  background: var(--frame68c75-canvas-deeper);
}

.frame68c75-fx-title {
  font-family: var(--frame68c75-font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--frame68c75-cream);
}

.frame68c75-fx-brand {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.frame68c75-fx-brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: var(--frame68c75-radius-card);
  border: 1px solid var(--frame68c75-bronze-soft);
  object-fit: cover;
}

.frame68c75-fx-brand p {
  font-size: 12.5px;
  color: var(--frame68c75-mist);
}

.frame68c75-fx-group {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--frame68c75-line-strong);
}

.frame68c75-fx-group h3 {
  font-family: var(--frame68c75-font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--frame68c75-bronze);
}

.frame68c75-fx-promos {
  margin-top: 9px;
  display: grid;
  gap: 7px;
}

.frame68c75-fxpromo {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 12px;
  border-radius: var(--frame68c75-radius-pill);
  border: 1px solid rgba(153, 50, 204, 0.5);
  background: linear-gradient(120deg, rgba(153, 50, 204, 0.22), rgba(153, 50, 204, 0.06));
  color: var(--frame68c75-cream);
  font-size: 12.5px;
  font-weight: 700;
  text-align: left;
  transition: box-shadow 0.15s ease;
}

.frame68c75-fxpromo:hover,
.frame68c75-fxpromo:active {
  box-shadow: 0 0 12px rgba(238, 130, 238, 0.35);
  text-decoration: none;
}

.frame68c75-fxpromo .frame68c75-ico {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  color: var(--frame68c75-violet);
}

.frame68c75-fx-dir {
  margin-top: 9px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
}

.frame68c75-fx-dir a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  font-size: 12px;
  font-weight: 600;
  color: var(--frame68c75-mist);
  border-bottom: 1px dotted var(--frame68c75-line-strong);
}

.frame68c75-fx-dir a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--frame68c75-bronze);
  flex: 0 0 5px;
}

.frame68c75-fx-dir a:hover {
  color: var(--frame68c75-violet);
}

.frame68c75-fx-disclaimer {
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid var(--frame68c75-line);
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--frame68c75-mist-dim);
}

/* ---------- common copyright footer ---------- */
.frame68c75-footc {
  margin: 0 12px;
  padding: 12px 14px calc(14px + env(safe-area-inset-bottom, 0px));
  border: 1px solid var(--frame68c75-bronze-soft);
  border-top: 0;
  border-radius: 0 0 var(--frame68c75-radius-soft) var(--frame68c75-radius-soft);
  background: var(--frame68c75-canvas-deeper);
  text-align: center;
  font-size: 12px;
  color: var(--frame68c75-mist-dim);
}

/* =====================================================================
   Fixed mobile bottom navigation - layered bar, 5 roles,
   active role marked with a top indicator line
   ===================================================================== */
.frame68c75-bnav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px; /* keeps the bar inside the phone canvas on wide screens */
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(180deg, var(--frame68c75-canvas-deeper), #141D27);
  border-top: 1px solid var(--frame68c75-bronze-soft);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.4);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.frame68c75-bnav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: var(--frame68c75-bnav-h);
  padding: 8px 2px 7px;
  color: var(--frame68c75-mist-dim);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.frame68c75-bnav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22%;
  right: 22%;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: transparent;
}

.frame68c75-bnav-item .frame68c75-ico {
  width: 22px;
  height: 22px;
}

.frame68c75-bnav-item:hover,
.frame68c75-bnav-item:active {
  color: var(--frame68c75-cream);
  text-decoration: none;
}

.frame68c75-bnav-item.frame68c75-active {
  color: var(--frame68c75-violet);
}

.frame68c75-bnav-item.frame68c75-active::before {
  background: var(--frame68c75-violet);
  box-shadow: 0 2px 8px rgba(238, 130, 238, 0.6);
}

.frame68c75-bnav-item.frame68c75-bpromo:active {
  color: var(--frame68c75-violet);
}

/* ---------- inline icon sizing helper ---------- */
.frame68c75-ico {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- narrow-canvas safeguards (320px) ---------- */
@media (max-width: 359px) {
  .frame68c75-brand-name {
    font-size: 18px;
  }

  .frame68c75-act {
    font-size: 12.5px;
    letter-spacing: 0.3px;
  }

  .frame68c75-ggrid {
    gap: 7px;
  }

  .frame68c75-game-name {
    font-size: 10.5px;
  }

  .frame68c75-fx-dir {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- hover glow only where pointers exist ---------- */
@media (hover: hover) {
  .frame68c75-act-primary:hover,
  .frame68c75-cta-main:hover {
    box-shadow: var(--frame68c75-glow);
  }

  .frame68c75-menu-btn:hover {
    color: var(--frame68c75-violet);
    border-color: var(--frame68c75-violet);
  }
}
