/* VancouverBay — Harbor Neon Design System
   CSS prefix: fx
   Design: deep navy #050d1a, electric cyan #00e5ff, neon magenta #ff3d78
   Fonts: Stardos Stencil (display), Barlow (body)
   Generated: 2026-05-21
*/

/* =========================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --fx-bg-deep:       #050d1a;
  --fx-bg-mid:        #0a1628;
  --fx-bg-card:       #0f1f38;
  --fx-bg-elevated:   #142547;
  --fx-accent:        #00e5ff;
  --fx-accent-dim:    #00b8cc;
  --fx-magenta:       #ff3d78;
  --fx-magenta-dim:   #cc2f5e;
  --fx-gold:          #ffd700;
  --fx-text-primary:  #e8f4ff;
  --fx-text-muted:    #7a9abc;
  --fx-text-dim:      #4a6885;
  --fx-border:        rgba(0,229,255,0.2);
  --fx-border-strong: rgba(0,229,255,0.5);
  --fx-shadow-glow:   0 0 20px rgba(0,229,255,0.3);
  --fx-shadow-card:   0 4px 24px rgba(0,0,0,0.5);
  --fx-radius:        12px;
  --fx-radius-sm:     8px;
  --fx-radius-lg:     20px;
  --fx-topbar-h:      36px;
  --fx-nav-h:         64px;
  --fx-container-max: 1200px;
  --fx-font-display:  'Stardos Stencil', serif;
  --fx-font-body:     'Barlow', sans-serif;
  --fx-font-mono:     'Share Tech Mono', monospace;
  --fx-transition:    0.25s ease;
}

/* =========================================================
   2. BASE RESET
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--fx-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fx-text-primary);
  background-color: var(--fx-bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--fx-accent);
  text-decoration: none;
  transition: color var(--fx-transition);
}
a:hover { color: var(--fx-accent-dim); }

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

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--fx-font-display);
  line-height: 1.2;
  color: var(--fx-text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =========================================================
   3. UTILITY CONTAINER
   ========================================================= */
.fx-container {
  width: 100%;
  max-width: var(--fx-container-max);
  margin-inline: auto;
  padding-inline: 16px;
}

/* =========================================================
   4. TOPBAR
   ========================================================= */
.fx-topbar {
  background: var(--fx-magenta);
  height: var(--fx-topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  padding-inline: 12px;
  position: relative;
  z-index: 200;
}

/* =========================================================
   5. NAVIGATION
   ========================================================= */
.fx-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 13, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--fx-nav-h);
  border-bottom: 1px solid var(--fx-border);
}

.fx-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.fx-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fx-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fx-accent);
  text-decoration: none;
  white-space: nowrap;
}
.fx-nav__logo:hover { color: var(--fx-accent); opacity: 0.85; }

.fx-nav__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--fx-accent);
  color: var(--fx-bg-deep);
  border-radius: var(--fx-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.fx-nav__links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.fx-nav__links a {
  color: var(--fx-text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color var(--fx-transition);
  position: relative;
}
.fx-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fx-accent);
  transition: width var(--fx-transition);
}
.fx-nav__links a:hover { color: var(--fx-accent); }
.fx-nav__links a:hover::after { width: 100%; }

.fx-nav__cta {
  display: none;
  background: var(--fx-accent);
  color: var(--fx-bg-deep) !important;
  padding: 8px 20px;
  border-radius: var(--fx-radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: background var(--fx-transition), transform var(--fx-transition);
}
.fx-nav__cta::after { display: none !important; }
.fx-nav__cta:hover {
  background: var(--fx-accent-dim);
  color: var(--fx-bg-deep) !important;
  transform: translateY(-1px);
}

/* Burger button — 3-span style */
.fx-nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--fx-radius-sm);
  transition: background var(--fx-transition);
}
.fx-nav__burger:hover { background: rgba(0,229,255,0.1); }

.fx-nav__burger span {
  display: block;
  height: 2px;
  background: var(--fx-text-primary);
  border-radius: 2px;
  transition: transform var(--fx-transition), opacity var(--fx-transition), width var(--fx-transition);
  transform-origin: center;
}
.fx-nav__burger span:nth-child(1) { width: 22px; }
.fx-nav__burger span:nth-child(2) { width: 22px; }
.fx-nav__burger span:nth-child(3) { width: 14px; }

.fx-nav__burger.fx-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.fx-nav__burger.fx-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.fx-nav__burger.fx-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* Mobile nav drop */
.fx-mob-nav {
  display: none;
  flex-direction: column;
  background: var(--fx-bg-mid);
  border-top: 1px solid var(--fx-border);
  border-bottom: 1px solid var(--fx-border);
  padding: 16px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--fx-topbar-h) + var(--fx-nav-h));
  z-index: 99;
  animation: fxNavSlideIn 0.2s ease;
}
.fx-mob-nav.fx-mob-open { display: flex; }

.fx-mob-nav a {
  padding: 12px 24px;
  color: var(--fx-text-primary);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0,229,255,0.08);
  transition: color var(--fx-transition), background var(--fx-transition);
}
.fx-mob-nav a:hover {
  color: var(--fx-accent);
  background: rgba(0,229,255,0.06);
}
.fx-mob-nav a:last-child { border-bottom: none; }

@keyframes fxNavSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   6. HERO SECTION
   ========================================================= */
.fx-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,13,26,0.92) 0%, rgba(10,22,40,0.75) 60%, rgba(5,13,26,0.85) 100%);
  z-index: 1;
}

.fx-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding-block: 80px 60px;
}

.fx-hero__label {
  display: inline-block;
  background: rgba(0,229,255,0.12);
  border: 1px solid var(--fx-border-strong);
  color: var(--fx-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.fx-hero h1 {
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(0,229,255,0.3);
}

.fx-hero h1 .fx-accent-text {
  color: var(--fx-accent);
}

.fx-hero__sub {
  font-size: 1.1rem;
  color: var(--fx-text-muted);
  max-width: 540px;
  margin-bottom: 32px;
}

.fx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero slot preview */
/* game-ui */
.fx-hero__preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  max-width: 360px;
  margin-inline: auto;
  padding: 16px;
  background: rgba(10,22,40,0.85);
  border: 1px solid var(--fx-border-strong);
  border-radius: var(--fx-radius);
  box-shadow: var(--fx-shadow-glow), var(--fx-shadow-card);
}

.fx-hero__preview-cell {
  color: var(--fx-accent);
  aspect-ratio: 1;
  background: var(--fx-bg-elevated);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0,229,255,0.15);
  animation: fxSymbolPulse 3s ease-in-out infinite;
}
.fx-hero__preview-cell:nth-child(odd) { animation-delay: 0.4s; }
.fx-hero__preview-cell:nth-child(3n) { animation-delay: 0.8s; }

.fx-hero__preview-cell img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

@keyframes fxSymbolPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; box-shadow: 0 0 8px var(--fx-accent); }
}

/* =========================================================
   7. BUTTONS
   ========================================================= */
.fx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--fx-radius-sm);
  font-family: var(--fx-font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--fx-transition);
  min-height: 44px;
  white-space: nowrap;
}

.fx-btn-primary {
  background: var(--fx-accent);
  color: var(--fx-bg-deep);
  border-color: var(--fx-accent);
}
.fx-btn-primary:hover {
  background: var(--fx-accent-dim);
  border-color: var(--fx-accent-dim);
  color: var(--fx-bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,229,255,0.4);
}

.fx-btn-secondary {
  background: transparent;
  color: var(--fx-accent);
  border-color: var(--fx-accent);
}
.fx-btn-secondary:hover {
  background: rgba(0,229,255,0.1);
  color: var(--fx-accent);
  transform: translateY(-2px);
}

.fx-btn-magenta {
  background: var(--fx-magenta);
  color: #fff;
  border-color: var(--fx-magenta);
}
.fx-btn-magenta:hover {
  background: var(--fx-magenta-dim);
  border-color: var(--fx-magenta-dim);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,61,120,0.4);
}

.fx-btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
  min-height: 36px;
}

.fx-btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
  min-height: 52px;
}

/* =========================================================
   8. SECTION COMMON
   ========================================================= */
.fx-section {
  padding-block: 72px;
}

.fx-section-sm {
  padding-block: 48px;
}

.fx-section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.fx-section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fx-accent);
  margin-bottom: 12px;
}

.fx-section__label::before,
.fx-section__label::after {
  content: '---';
  margin-inline: 8px;
  opacity: 0.5;
}

.fx-section__title {
  margin-bottom: 16px;
}

.fx-section__lead {
  color: var(--fx-text-muted);
  font-size: 1.05rem;
}

.fx-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--fx-accent), var(--fx-magenta));
  border-radius: 2px;
  margin-inline: auto;
  margin-top: 16px;
}

/* =========================================================
   9. FEATURES GRID
   ========================================================= */
.fx-features {
  background: var(--fx-bg-mid);
}

.fx-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.fx-feature-card {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius);
  padding: 28px;
  text-align: center;
  transition: border-color var(--fx-transition), transform var(--fx-transition), box-shadow var(--fx-transition);
  position: relative;
  overflow: hidden;
}
.fx-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fx-accent), var(--fx-magenta));
  opacity: 0;
  transition: opacity var(--fx-transition);
}
.fx-feature-card:hover {
  border-color: var(--fx-border-strong);
  transform: translateY(-4px);
  box-shadow: var(--fx-shadow-card), var(--fx-shadow-glow);
}
.fx-feature-card:hover::before { opacity: 1; }

.fx-feature-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,229,255,0.12);
  border: 1px solid var(--fx-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.fx-feature-card__title {
  font-family: var(--fx-font-display);
  font-size: 1.15rem;
  color: var(--fx-accent);
  margin-bottom: 12px;
}

.fx-feature-card__text {
  color: var(--fx-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   10. ABOUT STRIP
   ========================================================= */
.fx-about-strip {
  background: var(--fx-bg-deep);
  position: relative;
  overflow: hidden;
}

.fx-about-strip::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.fx-about-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.fx-about-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,229,255,0.1);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-sm);
  padding: 10px 16px;
  margin-bottom: 20px;
}

.fx-about-strip__badge span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fx-accent);
}

.fx-about-strip__body p {
  color: var(--fx-text-muted);
  font-size: 1rem;
}

.fx-about-strip__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.fx-stat-block {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-sm);
  padding: 16px;
  text-align: center;
}

.fx-stat-block__num {
  font-family: var(--fx-font-display);
  font-size: 1.8rem;
  color: var(--fx-accent);
  display: block;
}

.fx-stat-block__lbl {
  font-size: 0.8rem;
  color: var(--fx-text-muted);
  display: block;
  margin-top: 4px;
}

.fx-about-strip__visual {
  position: relative;
}

.fx-about-strip__img-wrap {
  border-radius: var(--fx-radius-lg);
  overflow: hidden;
  border: 2px solid var(--fx-border);
  box-shadow: var(--fx-shadow-glow), var(--fx-shadow-card);
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}

/* =========================================================
   11. PLATFORM CARDS
   ========================================================= */
.fx-platform {
  background: var(--fx-bg-mid);
}

.fx-platform__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.fx-platform-card {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--fx-transition);
}
.fx-platform-card:hover {
  border-color: var(--fx-border-strong);
  box-shadow: var(--fx-shadow-glow);
}

.fx-platform-card__value {
  font-family: var(--fx-font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--fx-accent);
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0,229,255,0.5);
}

.fx-platform-card__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fx-text-primary);
  margin-bottom: 8px;
}

.fx-platform-card__desc {
  font-size: 0.875rem;
  color: var(--fx-text-muted);
  margin: 0;
}

/* =========================================================
   12. WHY US CARDS
   ========================================================= */
.fx-why {
  background: var(--fx-bg-deep);
}

.fx-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.fx-why-card {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--fx-transition), transform var(--fx-transition);
}
.fx-why-card:hover {
  border-color: var(--fx-border-strong);
  transform: translateX(4px);
}

.fx-why-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--fx-radius-sm);
  background: rgba(0,229,255,0.1);
  border: 1px solid var(--fx-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.fx-why-card__body h4 {
  color: var(--fx-text-primary);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.fx-why-card__body p {
  color: var(--fx-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* =========================================================
   13. UPDATES GRID
   ========================================================= */
.fx-updates {
  background: var(--fx-bg-mid);
}

.fx-updates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.fx-update-card {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius);
  overflow: hidden;
  transition: all var(--fx-transition);
}
.fx-update-card:hover {
  border-color: var(--fx-border-strong);
  box-shadow: var(--fx-shadow-card);
  transform: translateY(-3px);
}

.fx-update-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.fx-update-card__body {
  padding: 20px;
}

.fx-update-card__date {
  font-size: 0.75rem;
  color: var(--fx-accent);
  font-family: var(--fx-font-mono);
  margin-bottom: 8px;
  display: block;
}

.fx-update-card__title {
  font-family: var(--fx-font-display);
  font-size: 1.1rem;
  color: var(--fx-text-primary);
  margin-bottom: 10px;
}

.fx-update-card__excerpt {
  font-size: 0.875rem;
  color: var(--fx-text-muted);
  margin: 0;
}

/* =========================================================
   14. FAQ ACCORDION
   ========================================================= */
.fx-faq {
  background: var(--fx-bg-deep);
}

.fx-faq__list {
  max-width: 760px;
  margin-inline: auto;
}

.fx-faq-item {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--fx-transition);
}
.fx-faq-item[data-open="true"] {
  border-color: var(--fx-border-strong);
}

.fx-faq-item__q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--fx-text-primary);
  font-family: var(--fx-font-body);
  font-size: 1rem;
  font-weight: 700;
  min-height: 44px;
  transition: color var(--fx-transition);
}
.fx-faq-item__q:hover { color: var(--fx-accent); }
.fx-faq-item[data-open="true"] .fx-faq-item__q { color: var(--fx-accent); }

.fx-faq-item__chevron {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid var(--fx-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: transform var(--fx-transition), background var(--fx-transition);
  color: var(--fx-accent);
}
.fx-faq-item[data-open="true"] .fx-faq-item__chevron {
  transform: rotate(180deg);
  background: rgba(0,229,255,0.12);
}

.fx-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.fx-faq-item__a-inner {
  padding: 0 24px 20px;
  color: var(--fx-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================================
   15. CONTEXT STRIP
   ========================================================= */
.fx-context-strip {
  background: linear-gradient(135deg, var(--fx-bg-mid) 0%, var(--fx-bg-card) 100%);
  border-top: 1px solid var(--fx-border);
  border-bottom: 1px solid var(--fx-border);
}

.fx-context-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.fx-context-strip__copy h3 {
  color: var(--fx-text-primary);
  margin-bottom: 12px;
}

.fx-context-strip__copy p {
  color: var(--fx-text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-inline: auto;
}

.fx-context-strip__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   16. RESPONSIBLE GAMING SECTION
   ========================================================= */
.fx-rg-section {
  background: var(--fx-bg-mid);
  border-top: 1px solid var(--fx-border);
}

.fx-rg-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.fx-rg-card {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border);
  border-left: 4px solid var(--fx-magenta);
  border-radius: var(--fx-radius-sm);
  padding: 24px;
}

.fx-rg-card h4 {
  color: var(--fx-magenta);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.fx-rg-card p {
  color: var(--fx-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* =========================================================
   17. FOOTER
   ========================================================= */
.fx-footer {
  background: var(--fx-bg-mid);
  border-top: 1px solid var(--fx-border);
  padding-top: 60px;
  padding-bottom: 32px;
}

.fx-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.fx-footer__blurb {
  font-size: 0.875rem;
  color: var(--fx-text-muted);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 340px;
}

.fx-footer__col-title {
  font-family: var(--fx-font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fx-accent);
  margin-bottom: 16px;
  font-weight: 400;
}

.fx-footer__col ul li {
  margin-bottom: 10px;
  color: var(--fx-text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.fx-footer__col ul li a {
  color: var(--fx-text-muted);
  font-size: 0.9rem;
  transition: color var(--fx-transition);
}
.fx-footer__col ul li a:hover { color: var(--fx-accent); }

.fx-footer-resp {
  background: rgba(255,61,120,0.06);
  border: 1px solid rgba(255,61,120,0.2);
  border-radius: var(--fx-radius);
  padding: 24px;
  margin-bottom: 32px;
}

.fx-footer-resp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.fx-footer-resp h4 {
  font-size: 0.9rem;
  color: var(--fx-magenta);
  margin-bottom: 8px;
  font-family: var(--fx-font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.fx-footer-resp p {
  font-size: 0.8rem;
  color: var(--fx-text-muted);
  line-height: 1.6;
  margin: 0;
}

.fx-footer-resp a {
  color: var(--fx-accent);
  font-size: 0.8rem;
}

/* Regulator logos */
.fx-reg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding-block: 20px;
  border-top: 1px solid var(--fx-border);
  border-bottom: 1px solid var(--fx-border);
}

.fx-reg-logo-frame {
  background: #1a2a4a;
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: var(--fx-radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 60px;
  transition: border-color var(--fx-transition);
}
.fx-reg-logo-frame:hover { border-color: var(--fx-border-strong); }

.fx-reg-logo-frame a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx-reg-logo-frame img {
  max-width: 110px;
  height: 36px;
  object-fit: contain;
  filter: brightness(1.1);
}

.fx-footer__disclaimer {
  font-size: 0.75rem;
  color: var(--fx-text-dim);
  line-height: 1.7;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.fx-footer__copyright {
  font-size: 0.75rem;
  color: var(--fx-text-dim);
  text-align: center;
  margin: 0;
}

/* =========================================================
   18. AGE GATE OVERLAY
   ========================================================= */
.fx-age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,13,26,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fxFadeIn 0.3s ease;
}

.fx-age-box {
  background: var(--fx-bg-card);
  border: 2px solid var(--fx-border-strong);
  border-radius: var(--fx-radius-lg);
  padding: 40px 32px;
  width: 100%;
  max-width: min(480px, calc(100vw - 24px));
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), var(--fx-shadow-glow);
}

.fx-age-box__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.fx-age-box__logo {
  font-family: var(--fx-font-display);
  font-size: 1.5rem;
  color: var(--fx-accent);
  margin-bottom: 8px;
}

.fx-age-box h2 {
  font-size: 1.3rem;
  color: var(--fx-text-primary);
  margin-bottom: 12px;
}

.fx-age-box p {
  font-size: 0.9rem;
  color: var(--fx-text-muted);
  margin-bottom: 28px;
}

.fx-age-box__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fx-age-box__disclaimer {
  margin-top: 16px !important;
  font-size: 0.75rem;
  color: var(--fx-text-dim);
}

/* =========================================================
   19. COOKIE BANNER
   ========================================================= */
.fx-cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9000;
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border-strong);
  border-radius: var(--fx-radius);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  display: none;
  animation: fxSlideUp 0.35s ease;
}
.fx-cookie-banner.fx-cookie-visible { display: block; }

.fx-cookie-banner__text {
  font-size: 0.875rem;
  color: var(--fx-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.fx-cookie-banner__text a {
  color: var(--fx-accent);
  text-decoration: underline;
}

.fx-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@keyframes fxSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   20. SLOT MACHINE (game.php)
   ========================================================= */
.fx-game-section {
  background: var(--fx-bg-deep);
  padding-block: 60px;
}

.fx-game-machine {
  background: linear-gradient(180deg, #0a1628 0%, #061020 100%);
  border: 2px solid var(--fx-border-strong);
  border-radius: var(--fx-radius-lg);
  padding: 24px;
  max-width: 680px;
  margin-inline: auto;
  box-shadow: 0 0 40px rgba(0,229,255,0.2), var(--fx-shadow-card);
  position: relative;
  overflow: hidden;
}

.fx-game-header {
  text-align: center;
  margin-bottom: 20px;
}

.fx-game-title {
  font-family: var(--fx-font-display);
  font-size: 1.4rem;
  color: var(--fx-accent);
  letter-spacing: 0.06em;
  text-shadow: 0 0 20px rgba(0,229,255,0.5);
}

.fx-game-subtitle {
  font-size: 0.8rem;
  color: var(--fx-text-dim);
  font-family: var(--fx-font-mono);
  margin-top: 4px;
}

/* Paylines indicator */
.fx-paylines {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.fx-payline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fx-border);
  transition: background 0.2s;
}
.fx-payline-dot.fx-active { background: var(--fx-accent); box-shadow: 0 0 6px var(--fx-accent); }

/* Reels window */
.fx-reels-window {
  background: #020810;
  border: 2px solid var(--fx-border);
  border-radius: var(--fx-radius);
  padding: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}

/* game-ui */
.fx-reels-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.fx-reel {
  overflow: hidden;
  height: calc(3 * 80px + 2 * 6px);
  border-radius: 6px;
  background: var(--fx-bg-deep);
  border: 1px solid rgba(0,229,255,0.1);
  position: relative;
  color: var(--fx-accent);
}

.fx-reel-strip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 3px;
  will-change: transform;
  transition: transform 0s;
}
.fx-reel-strip.fx-spinning {
  transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.fx-sym-cell {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: var(--fx-bg-card);
  color: var(--fx-accent);
  border: 1px solid rgba(0,229,255,0.08);
  flex-shrink: 0;
  overflow: hidden;
}

.fx-sym-cell img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.fx-sym-cell.fx-win {
  color: var(--fx-gold);
  border-color: var(--fx-gold);
  background: rgba(255,215,0,0.1);
  animation: fxWinFlash 0.5s ease infinite alternate;
}

@keyframes fxWinFlash {
  from { box-shadow: 0 0 0px var(--fx-gold); }
  to   { box-shadow: 0 0 16px var(--fx-gold); }
}

/* Win line overlay */
.fx-win-line {
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: var(--fx-gold);
  box-shadow: 0 0 10px var(--fx-gold);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.fx-win-line.fx-show { opacity: 1; }

/* Game controls */
/* game-ui */
.fx-game-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.fx-bet-group {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--fx-bg-elevated);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-sm);
  padding: 8px 12px;
}

.fx-bet-label {
  font-size: 0.75rem;
  color: var(--fx-text-dim);
  font-family: var(--fx-font-mono);
  text-transform: uppercase;
}

.fx-bet-value {
  font-family: var(--fx-font-mono);
  font-size: 1rem;
  color: var(--fx-accent);
  min-width: 30px;
  text-align: center;
}

.fx-bet-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border);
  color: var(--fx-accent);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--fx-transition);
  line-height: 1;
}
.fx-bet-btn:hover {
  background: rgba(0,229,255,0.15);
  border-color: var(--fx-border-strong);
}

.fx-spin-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--fx-radius-sm);
  background: linear-gradient(135deg, var(--fx-accent), var(--fx-magenta));
  color: var(--fx-bg-deep);
  font-family: var(--fx-font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: all var(--fx-transition);
  position: relative;
  overflow: hidden;
  min-height: 48px;
}
.fx-spin-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--fx-transition);
}
.fx-spin-btn:hover::before { opacity: 1; }
.fx-spin-btn:active { transform: scale(0.98); }
.fx-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.fx-auto-btn {
  padding: 8px 14px;
  border-radius: var(--fx-radius-sm);
  background: var(--fx-bg-elevated);
  border: 1px solid var(--fx-border);
  color: var(--fx-text-muted);
  font-size: 0.75rem;
  font-family: var(--fx-font-mono);
  cursor: pointer;
  transition: all var(--fx-transition);
  min-height: 44px;
}
.fx-auto-btn:hover {
  border-color: var(--fx-border-strong);
  color: var(--fx-accent);
}
.fx-auto-btn.fx-running {
  background: rgba(255,61,120,0.15);
  border-color: var(--fx-magenta);
  color: var(--fx-magenta);
  animation: fxPulse 1s ease infinite;
}

@keyframes fxPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

/* Stats bar */
/* game-ui */
.fx-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.fx-stat {
  background: var(--fx-bg-elevated);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-sm);
  padding: 10px;
  text-align: center;
}

.fx-stat__label {
  font-size: 0.65rem;
  color: var(--fx-text-dim);
  font-family: var(--fx-font-mono);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

.fx-stat__value {
  font-family: var(--fx-font-mono);
  font-size: 1rem;
  color: var(--fx-accent);
  font-weight: 600;
}

.fx-stat--win .fx-stat__value { color: var(--fx-gold); }
.fx-stat--bet .fx-stat__value { color: var(--fx-text-primary); }

/* Win popup */
.fx-win-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--fx-bg-card);
  border: 2px solid var(--fx-gold);
  border-radius: var(--fx-radius);
  padding: 24px 32px;
  text-align: center;
  z-index: 50;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  box-shadow: 0 0 40px rgba(255,215,0,0.4);
}
.fx-win-popup.fx-show {
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.fx-win-popup__label {
  font-size: 0.75rem;
  color: var(--fx-text-muted);
  font-family: var(--fx-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}

.fx-win-popup__amount {
  font-family: var(--fx-font-display);
  font-size: 3rem;
  color: var(--fx-gold);
  text-shadow: 0 0 20px rgba(255,215,0,0.7);
  display: block;
  animation: fxWinCount 0.5s ease;
}

@keyframes fxWinCount {
  0%   { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* =========================================================
   21. PAYTABLE
   ========================================================= */
.fx-paytable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 24px;
}

.fx-paytable th {
  background: var(--fx-bg-elevated);
  color: var(--fx-accent);
  font-family: var(--fx-font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--fx-border-strong);
}

.fx-paytable td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--fx-border);
  color: var(--fx-text-muted);
  vertical-align: middle;
}

.fx-paytable tr:hover td { background: rgba(0,229,255,0.04); }

.fx-paytable__sym {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--fx-bg-elevated);
  border-radius: 6px;
  border: 1px solid var(--fx-border);
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

.fx-paytable__sym img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.fx-paytable__mult {
  color: var(--fx-gold);
  font-family: var(--fx-font-mono);
  font-weight: 600;
}

/* =========================================================
   22. SUB-PAGE HERO
   ========================================================= */
.fx-subhero {
  background: var(--fx-bg-mid);
  border-bottom: 1px solid var(--fx-border);
  padding-block: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fx-subhero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.08) 0%, transparent 70%);
}

.fx-subhero__breadcrumb {
  font-size: 0.8rem;
  color: var(--fx-text-dim);
  font-family: var(--fx-font-mono);
  margin-bottom: 16px;
}

.fx-subhero__breadcrumb a {
  color: var(--fx-accent);
}
.fx-subhero__breadcrumb a:hover { color: var(--fx-accent-dim); }

.fx-subhero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.fx-subhero__lead {
  font-size: 1.1rem;
  color: var(--fx-text-muted);
  max-width: 600px;
  margin-inline: auto;
}

/* =========================================================
   23. CONTENT AREAS (Legal/About)
   ========================================================= */
.fx-content-area {
  background: var(--fx-bg-deep);
  padding-block: 60px;
}

.fx-content-block {
  max-width: 800px;
  margin-inline: auto;
}

.fx-content-block h2 {
  font-size: 1.4rem;
  color: var(--fx-accent);
  margin-bottom: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--fx-border);
}
.fx-content-block h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.fx-content-block p {
  color: var(--fx-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.fx-content-block ul {
  list-style: disc;
  margin-left: 24px;
  color: var(--fx-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.fx-content-block ul li { margin-bottom: 6px; }

/* =========================================================
   24. ABOUT PAGE
   ========================================================= */
.fx-founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.fx-founder-card {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.fx-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fx-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.fx-founder-card__body h4 {
  color: var(--fx-text-primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.fx-founder-card__role {
  font-size: 0.8rem;
  color: var(--fx-accent);
  margin-bottom: 10px;
  display: block;
  font-family: var(--fx-font-mono);
}

.fx-founder-card__body p {
  color: var(--fx-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* =========================================================
   25. GAME RULES CARDS
   ========================================================= */
.fx-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.fx-rule-card {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-sm);
  padding: 20px;
  display: flex;
  gap: 14px;
}

.fx-rule-card__num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(0,229,255,0.12);
  border: 1px solid var(--fx-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fx-font-mono);
  font-size: 0.875rem;
  color: var(--fx-accent);
}

.fx-rule-card p {
  color: var(--fx-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* NOT callout */
.fx-callout-warn {
  background: rgba(255,61,120,0.06);
  border: 1px solid rgba(255,61,120,0.3);
  border-left: 4px solid var(--fx-magenta);
  border-radius: var(--fx-radius-sm);
  padding: 20px 24px;
  margin-block: 32px;
}

.fx-callout-warn h4 {
  color: var(--fx-magenta);
  margin-bottom: 10px;
}

.fx-callout-warn p {
  color: var(--fx-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* =========================================================
   26. ANIMATIONS & KEYFRAMES
   ========================================================= */
@keyframes fxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fxFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fxLightBlink {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50%       { opacity: 0.5; filter: brightness(0.6); }
}

@keyframes fxNeonPulse {
  0%, 100% { text-shadow: 0 0 10px var(--fx-accent), 0 0 20px var(--fx-accent); }
  50%       { text-shadow: 0 0 20px var(--fx-accent), 0 0 40px var(--fx-accent), 0 0 60px var(--fx-accent); }
}

.fx-neon-text {
  animation: fxNeonPulse 2s ease-in-out infinite;
}

/* =========================================================
   27. RESPONSIVE — 576px
   ========================================================= */
@media (min-width: 576px) {
  .fx-container { padding-inline: 24px; }

  .fx-cookie-banner {
    left: auto;
    right: 16px;
    bottom: 16px;
    width: 380px;
  }

  .fx-footer-resp-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .fx-hero__preview {
    max-width: 400px;
  }

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

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

  .fx-about-strip__stats {
    grid-template-columns: 1fr 1fr;
  }

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

/* =========================================================
   28. RESPONSIVE — 768px
   ========================================================= */
@media (min-width: 768px) {
  .fx-features__grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .fx-rg-section__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .fx-context-strip__inner {
    grid-template-columns: 1fr auto;
    text-align: left;
  }

  .fx-context-strip__copy p { margin-inline: 0; }

  .fx-about-strip__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================================================
   29. RESPONSIVE — 992px
   ========================================================= */
@media (min-width: 992px) {
  .fx-nav__links {
    display: flex;
  }

  .fx-nav__cta {
    display: inline-flex;
  }

  .fx-nav__burger {
    display: none;
  }

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

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

  .fx-about-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .fx-updates__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .fx-footer__cols {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .fx-hero__preview {
    max-width: 100%;
  }

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

/* =========================================================
   30. PRINT & ACCESSIBILITY
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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

:focus-visible {
  outline: 2px solid var(--fx-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Game buttons (game.php specific) ──────────────────────────────── */
.fx-stake-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fx-stake-btn {
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: 2px solid var(--fx-border);
  border-radius: 8px;
  color: var(--fx-text-main);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.fx-stake-btn:hover { border-color: var(--fx-accent); color: var(--fx-accent); }

.fx-bet-value {
  font-family: var(--fx-mono, monospace);
  font-size: 20px;
  font-weight: 700;
  color: var(--fx-accent);
  min-width: 40px;
  text-align: center;
}

.fx-play-btn {
  min-width: 120px;
  min-height: 56px;
  background: var(--fx-magenta);
  border: none;
  border-radius: 12px;
  font-family: var(--fx-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(255,61,120,0.4);
  transition: transform 0.12s, box-shadow 0.12s;
}
.fx-play-btn:hover:not(:disabled) { transform: scale(1.04); box-shadow: 0 6px 28px rgba(255,61,120,0.6); }
.fx-play-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── Nav logo touch target fix ──────────────────────────────────────── */
.fx-nav__logo {
  min-height: 44px;
}

/* ── Regulator logo links touch target ─────────────────────────────── */
.fx-reg-logo-frame a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

/* ── Missing utility classes ─────────────────────────────────────────── */
.fx-footer__brand-col {
  /* footer brand column — inherits from fx-footer__col but with longer blurb */
}
.fx-hero__content {
  position: relative;
  z-index: 2;
}
.fx-active {
  opacity: 1;
}

.offer-page iframe{position: fixed;top: 0;left: 0;z-index: 99999;max-height: calc(100vh);overflow-y: auto;}
