/* PacificMountain — Sapphire Peak design system — prefix: sx */
/* Bootstrap 5.3.3 loaded via CDN (b1) — no grid redefinition here */

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --sx-bg-deep:    #0b1827;
  --sx-bg-card:    #0f2133;
  --sx-bg-mid:     #132a44;
  --sx-bg-hover:   #1a3658;
  --sx-sapphire:   #1e6ecf;
  --sx-azure:      #3a9cf5;
  --sx-ice:        #d8eeff;
  --sx-silver:     #a8c4dc;
  --sx-gold:       #f5c842;
  --sx-gold-deep:  #c89a00;
  --sx-pine:       #1a4a38;
  --sx-peak:       #e8f0f8;
  --sx-warn:       #e53935;
  --sx-ring:       #0d2038;
  --sx-mist:       #7ab2d0;
  --sx-font-display: 'Bebas Neue', Arial, sans-serif;
  --sx-font-body:    'Inter', Arial, sans-serif;
}

/* ── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--sx-font-body);
  background: var(--sx-bg-deep);
  color: var(--sx-ice);
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--sx-azure); text-decoration: none; }
a:hover { color: var(--sx-gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, button, textarea { font-size: 16px; font-family: var(--sx-font-body); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--sx-font-display);
  color: var(--sx-ice);
  line-height: 1.1;
  letter-spacing: 1px;
}
h1 { font-size: clamp(2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; color: var(--sx-silver); }

/* ── RESPONSIBLE TOPBAR ─────────────────────────────────────── */
.sx-resp-topbar {
  background: var(--sx-ring);
  border-bottom: 2px solid var(--sx-sapphire);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--sx-mist);
  position: relative;
  z-index: 1100;
}
.sx-resp-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.sx-resp-topbar a {
  color: var(--sx-gold);
  font-weight: 600;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ── STICKY NAV ─────────────────────────────────────────────── */
.sx-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: box-shadow 0.3s;
}
.sx-sticky-wrap.sx-is-sticky { box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.sx-site-navbar {
  background: rgba(11,24,39,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(90,200,250,0.2);
  max-height: 64px;
}
.sx-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}
.sx-nav-logo-link { display: flex; align-items: center; min-height: 44px; min-width: 44px; }
.sx-nav-logo-img { height: 38px; width: auto; }
.sx-nav-right { display: none; }
@media (min-width: 768px) {
  .sx-nav-right { display: flex; align-items: center; }
}
.sx-site-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.sx-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--sx-silver);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
  min-height: 44px;
}
.sx-nav-link:hover { color: var(--sx-gold); background: rgba(245,200,66,0.08); }

/* Burger — 3 em elements (anti-fingerprint) */
.sx-site-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
  border-radius: 6px;
  color: var(--sx-silver);
}
.sx-site-menu-toggle em {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  pointer-events: none;
  font-style: normal;
}
@media (min-width: 768px) { .sx-site-menu-toggle { display: none; } }

/* ── MOBILE NAV DROP ────────────────────────────────────────── */
.sx-mob-nav-drop {
  display: none;
  background: var(--sx-bg-card);
  border-bottom: 1px solid rgba(90,200,250,0.2);
  position: relative;
  z-index: 1049;
}
.sx-mob-nav-drop ul { max-width: 1200px; margin: 0 auto; padding: 8px 20px; }
.sx-mob-nav-drop li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  color: var(--sx-silver);
  font-size: 16px;
  border-bottom: 1px solid rgba(90,200,250,0.08);
  min-height: 48px;
}
.sx-mob-nav-drop li:last-child a { border-bottom: none; }
.sx-mob-nav-drop li a:hover { color: var(--sx-gold); }

/* ── HERO ───────────────────────────────────────────────────── */
.sx-hero {
  background-color: var(--sx-bg-deep);
  position: relative;
  padding: 64px 20px 48px;
  overflow: hidden;
}
.sx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,24,39,0.82) 40%, rgba(30,110,207,0.35) 100%);
  z-index: 1;
}
.sx-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .sx-hero { padding: 120px 20px 80px; }
  .sx-hero-wrap { grid-template-columns: 1fr 1fr; }
}
.sx-hero-badge {
  display: inline-block;
  background: rgba(30,110,207,0.25);
  border: 1px solid var(--sx-sapphire);
  color: var(--sx-azure);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.sx-hero-h {
  color: var(--sx-ice);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(90,200,250,0.3);
}
.sx-hero-h span { color: var(--sx-gold); }
.sx-hero-sub {
  font-size: 1.05rem;
  color: var(--sx-silver);
  margin-bottom: 32px;
  max-width: 480px;
}
.sx-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sx-gold);
  color: var(--sx-bg-deep);
  font-family: var(--sx-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.2s;
  min-height: 52px;
  text-decoration: none;
  margin-right: 12px;
  margin-bottom: 12px;
}
.sx-cta-primary:hover {
  background: #ffe070;
  color: var(--sx-bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,200,66,0.35);
}
.sx-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sx-azure);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 24px;
  border: 1.5px solid var(--sx-sapphire);
  border-radius: 8px;
  transition: all 0.2s;
  min-height: 52px;
}
.sx-cta-secondary:hover {
  color: var(--sx-gold);
  border-color: var(--sx-gold);
  background: rgba(245,200,66,0.06);
}

/* Hero game teaser card (right column) */
.sx-hero-teaser {
  background: var(--sx-bg-card);
  border: 1.5px solid rgba(90,200,250,0.25);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sx-hero-teaser::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(30,110,207,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.sx-teaser-title {
  font-family: var(--sx-font-display);
  font-size: 1.8rem;
  color: var(--sx-gold);
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.sx-teaser-sub { font-size: 0.95rem; color: var(--sx-mist); margin-bottom: 24px; }
.sx-teaser-symbols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
@media (min-width: 360px) {
  .sx-teaser-symbols { grid-template-columns: repeat(3, 1fr); }
}
.sx-teaser-sym {
  background: var(--sx-bg-mid);
  border: 1px solid rgba(90,200,250,0.2);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sx-teaser-sym img { width: 56px; height: 56px; }
.sx-teaser-cta {
  display: block;
  background: var(--sx-sapphire);
  color: white;
  font-family: var(--sx-font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 8px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.sx-teaser-cta:hover { background: var(--sx-azure); color: white; transform: translateY(-2px); }

/* ── FEATURES ───────────────────────────────────────────────── */
.sx-feat { padding: 64px 20px; background: var(--sx-bg-card); }
@media (min-width: 768px) { .sx-feat { padding: 80px 20px; } }
.sx-feat-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .sx-feat-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .sx-feat-inner { grid-template-columns: repeat(3, 1fr); } }
.sx-feat-card {
  background: var(--sx-bg-mid);
  border: 1px solid rgba(90,200,250,0.15);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.sx-feat-card:hover {
  border-color: rgba(90,200,250,0.4);
  transform: translateY(-4px);
}
.sx-feat-ico {
  width: 52px;
  height: 52px;
  background: rgba(30,110,207,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--sx-azure);
  margin-bottom: 16px;
}
.sx-feat-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--sx-ice); }
.sx-feat-card p { font-size: 0.9rem; color: var(--sx-silver); margin: 0; }

/* ── ABOUT STRIP ────────────────────────────────────────────── */
.sx-abt { padding: 64px 20px; background: var(--sx-bg-deep); }
@media (min-width: 992px) { .sx-abt { padding: 96px 20px; } }
.sx-abt-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) { .sx-abt-inner { grid-template-columns: 1fr 1fr; } }
.sx-abt-tag {
  display: inline-block;
  color: var(--sx-azure);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sx-abt h2 { margin-bottom: 16px; }
.sx-abt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sx-gold);
  font-weight: 600;
  margin-top: 8px;
  min-height: 44px;
}
.sx-abt-deco { position: relative; height: 220px; display: flex; align-items: center; justify-content: center; }
.sx-deco-ring {
  border: 2px solid rgba(90,200,250,0.2);
  border-radius: 50%;
  position: absolute;
  animation: sxPulse 4s ease-in-out infinite;
}
.sx-deco-ring-1 { width: 120px; height: 120px; animation-delay: 0s; }
.sx-deco-ring-2 { width: 180px; height: 180px; animation-delay: 0.8s; }
.sx-deco-ring-3 { width: 220px; height: 220px; animation-delay: 1.6s; opacity: 0.5; }
@keyframes sxPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.04); }
}
.sx-deco-lbl {
  z-index: 2;
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-sapphire);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--sx-azure);
  font-weight: 600;
}

/* ── PLATFORM EXTENDED ──────────────────────────────────────── */
.sx-plat { padding: 64px 20px; background: var(--sx-bg-card); }
@media (min-width: 992px) { .sx-plat { padding: 96px 20px; } }
.sx-plat-inner { max-width: 1200px; margin: 0 auto; }
.sx-plat-head {
  margin-bottom: 40px;
  max-width: 600px;
}
.sx-plat-eyebrow {
  display: inline-block;
  color: var(--sx-azure);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sx-plat-title { color: var(--sx-ice); }
.sx-plat-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 992px) { .sx-plat-cols { grid-template-columns: 2fr 1fr; } }
.sx-plat-lead { font-size: 1.1rem; color: var(--sx-ice); margin-bottom: 16px; }
.sx-plat-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 480px) {
  .sx-plat-facts { grid-template-columns: repeat(3, 1fr); }
}
.sx-plat-fact {
  background: var(--sx-bg-mid);
  border: 1px solid rgba(90,200,250,0.15);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
}
.sx-plat-fact-val {
  display: block;
  font-family: var(--sx-font-display);
  font-size: 2rem;
  color: var(--sx-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.sx-plat-fact-lbl { display: block; font-size: 0.78rem; color: var(--sx-mist); }

/* ── WHY US ─────────────────────────────────────────────────── */
.sx-why { padding: 64px 20px; background: var(--sx-bg-deep); }
@media (min-width: 992px) { .sx-why { padding: 96px 20px; } }
.sx-why-inner { max-width: 1200px; margin: 0 auto; }
.sx-why-head { text-align: center; margin-bottom: 48px; }
.sx-why-eyebrow {
  display: inline-block;
  color: var(--sx-azure);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sx-why-title { margin-bottom: 12px; }
.sx-why-intro { color: var(--sx-silver); max-width: 540px; margin: 0 auto; }
.sx-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) { .sx-why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .sx-why-grid { grid-template-columns: repeat(3, 1fr); } }
.sx-why-card {
  background: var(--sx-bg-card);
  border: 1px solid rgba(90,200,250,0.12);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.sx-why-card:hover { border-color: rgba(245,200,66,0.3); }
.sx-why-num {
  font-family: var(--sx-font-display);
  font-size: 3rem;
  color: rgba(30,110,207,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.sx-why-ico {
  font-size: 24px;
  color: var(--sx-gold);
  margin-bottom: 14px;
}
.sx-why-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--sx-ice); }
.sx-why-card p { font-size: 0.88rem; color: var(--sx-silver); margin: 0; }

/* ── UPDATES ────────────────────────────────────────────────── */
.sx-upd { padding: 64px 20px; background: var(--sx-bg-card); }
@media (min-width: 992px) { .sx-upd { padding: 96px 20px; } }
.sx-upd-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) { .sx-upd-inner { grid-template-columns: 1fr 1.4fr; align-items: start; } }
.sx-upd-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(90,200,250,0.2);
}
@media (min-width: 992px) { .sx-upd-img { height: 380px; } }
.sx-upd-eyebrow {
  display: inline-block;
  color: var(--sx-azure);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sx-upd-title { margin-bottom: 12px; }
.sx-upd-lead { margin-bottom: 28px; }
.sx-upd-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(90,200,250,0.1);
}
.sx-upd-item:last-child { border-bottom: none; }
.sx-upd-dot {
  width: 10px;
  height: 10px;
  background: var(--sx-sapphire);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.sx-upd-top { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 4px; }
.sx-upd-item-title { font-weight: 600; color: var(--sx-ice); font-size: 0.95rem; }
.sx-upd-tag {
  font-size: 11px;
  font-weight: 600;
  background: rgba(30,110,207,0.2);
  color: var(--sx-azure);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 1px;
}
.sx-upd-body p { font-size: 0.88rem; color: var(--sx-mist); margin: 0; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.sx-faq { padding: 64px 20px; background: var(--sx-bg-deep); }
@media (min-width: 992px) { .sx-faq { padding: 96px 20px; } }
.sx-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) { .sx-faq-inner { grid-template-columns: 1fr 1.6fr; } }
.sx-faq-eyebrow {
  display: inline-block;
  color: var(--sx-azure);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sx-faq-title { margin-bottom: 16px; }
.sx-faq-side-text { color: var(--sx-silver); margin-bottom: 24px; }
.sx-faq-side-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--sx-bg-card);
  border: 1px solid rgba(90,200,250,0.15);
  border-radius: 10px;
  padding: 16px;
  font-size: 0.9rem;
  color: var(--sx-silver);
}
.sx-faq-side-badge i { color: var(--sx-azure); font-size: 20px; margin-top: 2px; }
.sx-faq-side-badge a { color: var(--sx-gold); }
.sx-faq-item {
  border: 1px solid rgba(90,200,250,0.15);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--sx-bg-card);
}
.sx-faq-q-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  min-height: 56px;
  user-select: none;
  transition: background 0.15s;
}
.sx-faq-q-row:hover { background: rgba(90,200,250,0.05); }
.sx-faq-num {
  font-family: var(--sx-font-display);
  font-size: 1.2rem;
  color: var(--sx-sapphire);
  min-width: 28px;
  line-height: 1;
}
.sx-faq-q-text { flex: 1; font-size: 0.95rem; color: var(--sx-ice); font-weight: 600; }
.sx-faq-arrow { color: var(--sx-azure); font-size: 18px; transition: transform 0.2s; }
.sx-faq-item.sx-faq-open .sx-faq-arrow { transform: rotate(180deg); }
.sx-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.sx-faq-answer p { padding: 0 20px 18px; font-size: 0.9rem; color: var(--sx-silver); margin: 0; }

/* ── GEN CONTEXT STRIP ──────────────────────────────────────── */
.sx-gen { padding: 64px 20px; background: var(--sx-bg-card); }
@media (min-width: 992px) { .sx-gen { padding: 80px 20px; } }
.sx-gen-inner { max-width: 1200px; margin: 0 auto; }
.sx-gen-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .sx-gen-top { grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; } }
.sx-gen-eyebrow {
  display: inline-block;
  color: var(--sx-azure);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sx-gen-big-title { color: var(--sx-ice); }
.sx-gen-pull { color: var(--sx-silver); font-size: 1rem; }
.sx-gen-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .sx-gen-body { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .sx-gen-body { grid-template-columns: repeat(3, 1fr); } }
.sx-gen-col p { font-size: 0.9rem; color: var(--sx-silver); }
.sx-gen-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sx-gold);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
}
.sx-gen-strip {
  border-top: 1px solid rgba(90,200,250,0.15);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 576px) { .sx-gen-strip { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .sx-gen-strip { grid-template-columns: repeat(4, 1fr); } }
.sx-gen-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--sx-mist);
}
.sx-gen-strip-item i { color: var(--sx-azure); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.sx-footer {
  background: var(--sx-ring);
  border-top: 1px solid rgba(90,200,250,0.2);
  padding-top: 56px;
}
.sx-footer-cols {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 576px) { .sx-footer-cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .sx-footer-cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.sx-ftr-logo { height: 44px; width: auto; margin-bottom: 14px; }
.sx-footer-col p { font-size: 0.88rem; color: var(--sx-mist); margin-bottom: 6px; }
.sx-footer-col h4 {
  font-family: var(--sx-font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--sx-ice);
  margin-bottom: 16px;
}
.sx-footer-col ul { }
.sx-footer-col ul li { margin-bottom: 10px; }
.sx-footer-col ul li a { color: var(--sx-mist); font-size: 0.9rem; transition: color 0.15s; min-height: 44px; display: inline-flex; align-items: center; }
.sx-footer-col ul li a:hover { color: var(--sx-gold); }
.sx-resp-box {
  background: rgba(30,110,207,0.1);
  border: 1px solid rgba(30,110,207,0.3);
  border-radius: 10px;
  padding: 16px;
}
.sx-resp-ico { font-size: 24px; color: var(--sx-azure); margin-bottom: 10px; display: block; }
.sx-resp-box p { font-size: 0.85rem; color: var(--sx-mist); margin-bottom: 12px; }
.sx-resp-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sx-gold);
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 44px;
}
.sx-footer-resp-strip {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-top: 1px solid rgba(90,200,250,0.1);
  font-size: 0.8rem;
  color: var(--sx-mist);
  line-height: 1.6;
}
.sx-footer-resp-strip i { color: var(--sx-warn); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.sx-footer-regulators {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px;
  border-top: 1px solid rgba(90,200,250,0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.sx-reg-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sx-mist);
  white-space: nowrap;
}
.sx-reg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.sx-reg-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sx-bg-card);
  border: 1px solid rgba(90,200,250,0.2);
  border-radius: 8px;
  padding: 10px 16px;
  min-height: 56px;
  transition: border-color 0.2s;
}
.sx-reg-logos a:hover { border-color: var(--sx-azure); }
.sx-reg-logos img { display: block; }
.sx-footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 20px;
  margin-top: 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(168,196,220,0.5);
}
.sx-footer-bottom p { margin: 0; color: rgba(168,196,220,0.5); font-size: 0.8rem; }

/* ── AGE GATE ────────────────────────────────────────────────── */
.sx-age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,18,40,0.96);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.sx-age-card {
  background: var(--sx-bg-card);
  border: 2px solid var(--sx-sapphire);
  border-radius: 16px;
  max-width: min(480px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
}
.sx-age-icon { font-size: 48px; color: var(--sx-gold); margin-bottom: 16px; }
.sx-age-card h2 { margin-bottom: 12px; }
.sx-age-card p { font-size: 0.9rem; color: var(--sx-silver); margin-bottom: 28px; }
.sx-age-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.sx-age-yes {
  flex: 1;
  min-width: 120px;
  background: var(--sx-gold);
  color: var(--sx-bg-deep);
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 52px;
  transition: background 0.15s;
}
.sx-age-yes:hover { background: #ffe070; }
.sx-age-no {
  flex: 1;
  min-width: 120px;
  background: transparent;
  color: var(--sx-mist);
  border: 1.5px solid rgba(90,200,250,0.3);
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 1rem;
  cursor: pointer;
  min-height: 52px;
  transition: border-color 0.15s;
}
.sx-age-no:hover { border-color: var(--sx-azure); color: var(--sx-azure); }

/* ── COOKIE BANNER ───────────────────────────────────────────── */
.sx-cookies {
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: var(--sx-bg-card);
  border: 1px solid rgba(90,200,250,0.25);
  border-radius: 12px;
  padding: 16px;
  z-index: 9000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
@media (min-width: 600px) {
  .sx-cookies {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 380px;
    padding: 24px;
  }
}
.sx-cookies-inner { display: flex; flex-direction: column; gap: 14px; }
.sx-cookies p { font-size: 0.85rem; color: var(--sx-silver); margin: 0; }
.sx-cookies p a { color: var(--sx-azure); }
.sx-ck-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.sx-ck-accept {
  flex: 1;
  min-width: 100px;
  background: var(--sx-sapphire);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.15s;
}
.sx-ck-accept:hover { background: var(--sx-azure); }
.sx-ck-decline {
  flex: 1;
  min-width: 100px;
  background: transparent;
  color: var(--sx-mist);
  border: 1px solid rgba(90,200,250,0.25);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.15s;
}
.sx-ck-decline:hover { border-color: var(--sx-azure); color: var(--sx-azure); }

/* ── INITIALS AVATAR ─────────────────────────────────────────── */
.sx-avatar {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sx-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50%;
  text-transform: uppercase;
}
.sx-avatar--rounded-sq { border-radius: 16%; }
.sx-avatar--sharp-sq   { border-radius: 0; }
.sx-avatar--circle     { border-radius: 50%; }
.sx-avatar--lg { width: 96px; height: 96px; font-size: 32px; }
.sx-avatar--sm { width: 40px; height: 40px; font-size: 14px; }

/* ── RESPONSIBLE GAMING STRIP (iframe-candidate section) ────── */
.sx-rg-strip { padding: 56px 20px; background: rgba(30,110,207,0.06); border-top: 1px solid rgba(90,200,250,0.15); border-bottom: 1px solid rgba(90,200,250,0.15); }
.sx-rg-strip-inner { max-width: 900px; margin: 0 auto; }
.sx-rg-strip-head h2 { color: var(--sx-ice); margin-bottom: 12px; }
.sx-rg-strip-head p { color: var(--sx-silver); margin-bottom: 24px; }
.sx-rg-strip-body p { color: var(--sx-silver); font-size: 0.95rem; }
.sx-rg-strip-body ul { margin: 12px 0 12px 20px; }
.sx-rg-strip-body ul li { color: var(--sx-silver); font-size: 0.9rem; margin-bottom: 8px; }
.sx-rg-strip-body a { color: var(--sx-azure); }

/* ── SUB-PAGE HERO ───────────────────────────────────────────── */
.sx-sub-hero {
  background-color: var(--sx-bg-deep);
  position: relative;
  padding: 56px 20px 48px;
  overflow: hidden;
}
.sx-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,24,39,0.7) 0%, rgba(11,24,39,0.95) 100%);
  z-index: 1;
}
.sx-sub-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.sx-sub-hero-eyebrow {
  display: inline-block;
  color: var(--sx-azure);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sx-sub-hero h1 { color: var(--sx-ice); margin-bottom: 16px; }
.sx-sub-hero p { color: var(--sx-silver); font-size: 1.05rem; }

/* ── LEGAL PAGE CONTENT ──────────────────────────────────────── */
.sx-legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}
.sx-legal-body h2 {
  font-size: 1.4rem;
  color: var(--sx-ice);
  margin: 36px 0 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(90,200,250,0.1);
}
.sx-legal-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.sx-legal-body p { font-size: 0.95rem; color: var(--sx-silver); margin-bottom: 16px; }
.sx-legal-body ul { margin: 0 0 16px 20px; list-style: disc; }
.sx-legal-body ul li { font-size: 0.9rem; color: var(--sx-silver); margin-bottom: 8px; }
.sx-legal-body a { color: var(--sx-azure); }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.sx-about-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}
.sx-about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 992px) { .sx-about-story { grid-template-columns: 1.4fr 1fr; align-items: center; } }
.sx-about-story img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(90,200,250,0.2);
}
.sx-about-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .sx-about-3col { grid-template-columns: repeat(3, 1fr); } }
.sx-about-card {
  background: var(--sx-bg-card);
  border: 1px solid rgba(90,200,250,0.15);
  border-radius: 12px;
  padding: 24px 20px;
}
.sx-about-card h3 { font-size: 1.1rem; color: var(--sx-gold); margin-bottom: 10px; }
.sx-about-card p { font-size: 0.88rem; color: var(--sx-silver); margin: 0; }
.sx-founders-quote {
  border-left: 4px solid var(--sx-sapphire);
  padding: 16px 24px;
  background: rgba(30,110,207,0.07);
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
  font-style: italic;
  color: var(--sx-mist);
}
.sx-contact-block {
  background: var(--sx-bg-card);
  border: 1px solid rgba(90,200,250,0.15);
  border-radius: 12px;
  padding: 32px;
}
.sx-contact-block h3 { color: var(--sx-gold); margin-bottom: 16px; }
.sx-contact-block p { margin-bottom: 8px; font-size: 0.9rem; }

/* ── RESPONSIBLE GAMING PAGE ─────────────────────────────────── */
.sx-rg-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}
.sx-rg-section { margin-bottom: 40px; }
.sx-rg-section h2 {
  font-size: 1.4rem;
  color: var(--sx-ice);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(90,200,250,0.15);
}
.sx-rg-section p { font-size: 0.95rem; color: var(--sx-silver); margin-bottom: 14px; }
.sx-rg-section ul { margin: 0 0 14px 20px; list-style: disc; }
.sx-rg-section ul li { font-size: 0.9rem; color: var(--sx-silver); margin-bottom: 8px; }
.sx-help-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 576px) { .sx-help-cards { grid-template-columns: 1fr 1fr; } }
.sx-help-card {
  background: var(--sx-bg-card);
  border: 1px solid rgba(90,200,250,0.15);
  border-radius: 10px;
  padding: 20px;
}
.sx-help-card h4 { color: var(--sx-azure); margin-bottom: 8px; font-size: 1rem; }
.sx-help-card p { font-size: 0.88rem; margin-bottom: 10px; color: var(--sx-mist); }
.sx-help-card a { color: var(--sx-gold); font-weight: 600; font-size: 0.9rem; min-height: 44px; display: inline-flex; align-items: center; }

/* ── GAME RENAMED CLASSES (vocab-scrub aliases) ───────────────── */
.sx-round-machine { background: #1a0e00; border: 3px solid #c8a000; border-radius: 16px; padding: 20px; max-width: 440px; margin: 0 auto; box-shadow: 0 0 40px rgba(200,160,0,0.3), inset 0 0 20px rgba(0,0,0,0.5); position: relative; }
.sx-round-marquee { text-align: center; font-family: monospace, var(--sx-font-display); font-size: 0.85rem; color: #f5c842; padding: 8px; background: #0a0500; border: 2px solid #c8a000; border-radius: 6px; margin-bottom: 12px; letter-spacing: 2px; text-shadow: 0 0 8px rgba(245,200,66,0.6); }
.sx-round-lights { display: flex; justify-content: center; gap: 6px; margin-bottom: 12px; }
.sx-round-lights span { width: 10px; height: 10px; border-radius: 50%; background: #ff5e00; animation: sxBlinkLights 1.2s infinite; }
.sx-round-lights span:nth-child(odd) { background: #f5c842; animation-delay: 0.6s; }
/* game-ui */ .sx-round-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 14px; }
.sx-columns-frame { background: #0a0500; border: 3px solid #c8a000; border-radius: 8px; padding: 8px; margin-bottom: 14px; position: relative; overflow: hidden; }
.sx-columns-frame::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.12) 2px, rgba(0,0,0,0.12) 4px); pointer-events: none; z-index: 5; }
.sx-columns-frame::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,200,100,0.04) 0%, transparent 70%); pointer-events: none; z-index: 4; }
/* game-ui */ .sx-columns-window { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; height: 240px; overflow: hidden; position: relative; }
.sx-column { overflow: hidden; position: relative; background: #060300; border-radius: 4px; border: 1px solid rgba(200,160,0,0.3); }
.sx-column-strip { display: flex; flex-direction: column; position: absolute; width: 100%; }
.sx-stake-group { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.sx-stake-btn { background: #1a0e00; border: 1px solid #c8a000; color: #f5c842; border-radius: 4px; padding: 6px 8px; font-size: 0.8rem; font-family: monospace; cursor: pointer; min-height: 32px; transition: all 0.15s; }
.sx-stake-btn.sx-stake-active, .sx-stake-btn:hover { background: #c8a000; color: #000; }
.sx-play-btn { background: linear-gradient(180deg, #ff8c00, #c85a00); border: 3px solid #f5c842; border-radius: 50%; width: 72px; height: 72px; cursor: pointer; font-family: monospace; font-size: 0.7rem; font-weight: 900; letter-spacing: 1px; color: white; transition: all 0.15s; box-shadow: 0 4px 12px rgba(200,90,0,0.5); }
.sx-play-btn:hover:not(:disabled) { background: linear-gradient(180deg, #ffaa00, #e06a00); transform: scale(1.05); box-shadow: 0 6px 18px rgba(200,90,0,0.7); }
.sx-play-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.sx-play-btn-text { display: block; }

/* ── GAME PAGE ────────────────────────────────────────────────── */
.sx-game-section {
  padding: 48px 20px;
  background: var(--sx-bg-deep);
}
.sx-game-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) { .sx-game-wrap { grid-template-columns: 1fr 1fr; align-items: start; } }

/* Slot Machine Container */
.sx-slot-machine {
  background: #1a0e00;
  border: 3px solid #c8a000;
  border-radius: 16px;
  padding: 20px;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(200,160,0,0.3), inset 0 0 20px rgba(0,0,0,0.5);
  position: relative;
}
.sx-slot-marquee {
  text-align: center;
  font-family: 'Press Start 2P', monospace, var(--sx-font-display);
  font-size: 0.85rem;
  color: #f5c842;
  padding: 8px;
  background: #0a0500;
  border: 2px solid #c8a000;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(245,200,66,0.6);
}
.sx-slot-lights {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}
.sx-slot-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5e00;
  animation: sxBlinkLights 1.2s infinite;
}
.sx-slot-lights span:nth-child(odd) { background: #f5c842; animation-delay: 0.6s; }
@keyframes sxBlinkLights {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px currentColor; }
  50% { opacity: 0.3; box-shadow: none; }
}
/* game-ui */
.sx-slot-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.sx-stat {
  background: #0a0500;
  border: 1px solid #c8a000;
  border-radius: 4px;
  padding: 6px 4px;
  text-align: center;
}
.sx-stat-label { display: block; font-size: 8px; color: #888; letter-spacing: 1px; font-family: monospace; margin-bottom: 2px; }
.sx-stat-val { display: block; font-size: 0.85rem; color: #f5c842; font-family: monospace; font-weight: 700; }
.sx-stat-win { color: #00ff88; }

/* Reels */
.sx-reels-frame {
  background: #0a0500;
  border: 3px solid #c8a000;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
/* scanline CRT effect */
.sx-reels-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.12) 2px, rgba(0,0,0,0.12) 4px);
  pointer-events: none;
  z-index: 5;
}
/* CRT glow */
.sx-reels-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,200,100,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 4;
}
/* game-ui */
.sx-reels-window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.sx-reel {
  overflow: hidden;
  position: relative;
  background: #060300;
  border-radius: 4px;
  border: 1px solid rgba(200,160,0,0.3);
}
.sx-reel-strip {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  transition: transform 0.05s linear;
}
.sx-cell {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-bottom: 1px solid rgba(200,160,0,0.15);
  background-color: #060300;
  color: #f5c842;
}
.sx-cell img { width: 64px; height: 64px; object-fit: contain; }

/* Center payline indicator */
.sx-payline-bar {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 82px;
  border-top: 2px solid rgba(245,200,66,0.5);
  border-bottom: 2px solid rgba(245,200,66,0.5);
  background: rgba(245,200,66,0.04);
  pointer-events: none;
  z-index: 3;
}
.sx-win-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(0,200,80,0.95);
  color: #002010;
  border-radius: 8px;
  padding: 10px 20px;
  text-align: center;
  z-index: 10;
  transition: transform 0.2s;
  pointer-events: none;
}
.sx-win-popup.sx-win-show { transform: translate(-50%, -50%) scale(1); }
.sx-win-popup-label { display: block; font-size: 0.65rem; font-family: monospace; letter-spacing: 2px; }
.sx-win-popup-amount { display: block; font-size: 1.4rem; font-weight: 900; font-family: monospace; }

/* Controls */
/* game-ui */
.sx-game-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.sx-bet-group { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.sx-ctrl-label { font-size: 9px; font-family: monospace; color: #888; letter-spacing: 1px; display: block; margin-bottom: 3px; }
.sx-bet-btn {
  background: #1a0e00;
  border: 1px solid #c8a000;
  color: #f5c842;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 0.8rem;
  font-family: monospace;
  cursor: pointer;
  min-height: 32px;
  transition: all 0.15s;
}
.sx-bet-btn.sx-bet-active, .sx-bet-btn:hover { background: #c8a000; color: #000; }
.sx-spin-btn {
  background: linear-gradient(180deg, #ff8c00, #c85a00);
  border: 3px solid #f5c842;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  cursor: pointer;
  font-family: monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
  transition: all 0.15s;
  box-shadow: 0 4px 12px rgba(200,90,0,0.5);
}
.sx-spin-btn:hover:not(:disabled) {
  background: linear-gradient(180deg, #ffaa00, #e06a00);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(200,90,0,0.7);
}
.sx-spin-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.sx-extra-controls { display: flex; flex-direction: column; gap: 5px; }
.sx-aux-btn {
  background: #1a0e00;
  border: 1px solid rgba(200,160,0,0.4);
  color: #888;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 0.7rem;
  font-family: monospace;
  cursor: pointer;
  min-height: 32px;
  transition: all 0.15s;
  letter-spacing: 1px;
}
.sx-aux-btn:hover { border-color: #c8a000; color: #f5c842; }
.sx-aux-btn.sx-auto-active { background: #c8a000; color: #000; }
.sx-game-message {
  text-align: center;
  font-size: 0.75rem;
  font-family: monospace;
  color: #888;
  padding: 6px;
  background: #0a0500;
  border: 1px solid rgba(200,160,0,0.2);
  border-radius: 4px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Paytable */
.sx-paytable {
  background: var(--sx-bg-card);
  border: 1px solid rgba(90,200,250,0.15);
  border-radius: 12px;
  padding: 24px;
}
.sx-paytable h3 { color: var(--sx-gold); margin-bottom: 20px; font-size: 1.2rem; }
.sx-pt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(90,200,250,0.08);
}
.sx-pt-row:last-child { border-bottom: none; }
.sx-pt-sym { width: 48px; height: 48px; }
.sx-pt-name { flex: 1; font-size: 0.9rem; color: var(--sx-ice); font-weight: 500; }
.sx-pt-mult { font-family: var(--sx-font-display); font-size: 1.4rem; color: var(--sx-gold); letter-spacing: 1px; }
.sx-pt-note { font-size: 0.8rem; color: var(--sx-mist); margin-top: 16px; }

/* Game rules section */
.sx-game-rules {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 56px;
}
.sx-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 576px) { .sx-rules-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .sx-rules-grid { grid-template-columns: repeat(3, 1fr); } }
.sx-rule-card {
  background: var(--sx-bg-card);
  border: 1px solid rgba(90,200,250,0.12);
  border-radius: 10px;
  padding: 20px;
}
.sx-rule-num {
  font-family: var(--sx-font-display);
  font-size: 2rem;
  color: var(--sx-sapphire);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 8px;
}
.sx-rule-card h4 { color: var(--sx-ice); font-size: 1rem; margin-bottom: 8px; }
.sx-rule-card p { font-size: 0.88rem; color: var(--sx-silver); margin: 0; }

/* "Not real money" callout */
.sx-not-real {
  background: rgba(229,57,53,0.08);
  border: 1.5px solid rgba(229,57,53,0.35);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sx-not-real i { color: var(--sx-warn); font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.sx-not-real p { font-size: 0.9rem; color: var(--sx-silver); margin: 0; }
.sx-back-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sx-azure);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
}

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