/* ─── PubKick shared styles ─── */
/* Tokens (mirror app DARK_THEME) */
:root {
  --bg: #0A0C0F;
  --surface: #1A1F27;
  --surface-2: #131820;
  --cell-bg: #2C343F;
  --border: #252D38;
  --accent: #00E676;
  --accent-dim: #00b85f;
  --gold: #F5A623;
  --near: #FACC15;
  --red: #DA2020;
  --text: #F0F2F5;
  --text-sec: #9BA4B5;
  --text-dim: #6B7585;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --max-w: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 1.2px 1.2px, rgba(180, 195, 215, 0.18) 1.2px, transparent 0),
    linear-gradient(180deg, rgba(0, 230, 118, 0.02) 0%, transparent 30%, transparent 70%, rgba(245, 166, 35, 0.015) 100%);
  background-size: 26px 26px, 100% 100%;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: ""; position: fixed; inset: -10%; z-index: -1;
  background:
    radial-gradient(ellipse 780px 540px at 12% 18%, rgba(0, 230, 118, 0.06), transparent 65%),
    radial-gradient(ellipse 640px 480px at 88% 35%, rgba(245, 166, 35, 0.035), transparent 65%),
    radial-gradient(ellipse 600px 460px at 50% 90%, rgba(0, 230, 118, 0.045), transparent 65%);
  filter: blur(30px); pointer-events: none;
  animation: bgDrift 28s ease-in-out infinite;
}
@keyframes bgDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.05); }
  66%      { transform: translate(-30px, 35px) scale(0.97); }
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1;
  background-image: repeating-linear-gradient(
    135deg, transparent 0, transparent 80px,
    rgba(255, 255, 255, 0.008) 80px, rgba(255, 255, 255, 0.008) 81px
  );
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}
header.scrolled {
  background: rgba(10, 12, 15, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 20px;
}
.nav-left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.logo {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}
.logo-img {
  height: 35px; width: auto; display: block;
  filter: drop-shadow(0 0 18px rgba(0, 230, 118, 0.18));
}
.logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 24px rgba(0, 230, 118, 0.4));
}
.nav-links {
  display: flex; gap: 28px; font-size: 14px; color: var(--text-sec);
  flex-shrink: 0;
}
.nav-links a {
  position: relative; padding: 6px 0;
  transition: color 0.18s;
}
.nav-links a::after {
  content: ""; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #6effb0);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #001b0c;
  padding: 9px 18px; border-radius: 999px;
  font-weight: 700; font-size: 13.5px;
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.nav-cta::before {
  content: ""; position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  animation: ctaShine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaShine {
  0%, 50% { left: -120%; }
  80%, 100% { left: 130%; }
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 230, 118, 0.35);
}
/* Hamburger toggle (injected by shared.js, shown only on mobile) */
.menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 4px;
  width: 42px; height: 42px; padding: 0 11px;
  border: 1px solid var(--border); border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer; flex-shrink: 0;
}
.menu-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav { gap: 12px; }
  .nav-left { margin-right: auto; }
  .logo-img { height: 30px; }
  .nav-cta { padding: 8px 14px; font-size: 12.5px; }
  .menu-toggle { display: flex; }
  .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(10, 12, 15, 0.97);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 6px 24px 18px;
    max-height: calc(100vh - 64px); overflow-y: auto;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 49;
  }
  header.menu-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 15px 2px; font-size: 16px; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer; border: 0;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.btn-primary { background: var(--accent); color: #001b0c; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(0, 230, 118, 0.32); }
.btn-ghost {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface-2); border-color: #38424f; }
.btn-primary::before {
  content: ""; position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  animation: ctaShine 5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

/* ── Scroll reveal ──
   Uses a keyframe animation (not transition) so a card's own
   transition (hover lift, etc.) can never override the reveal. */
.reveal { opacity: 0; transform: translateY(36px); will-change: opacity, transform; }
.reveal.in {
  opacity: 1; transform: translateY(0);
  animation: revealIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.reveal.in[data-delay="1"] { animation-delay: 0.08s; }
.reveal.in[data-delay="2"] { animation-delay: 0.16s; }
.reveal.in[data-delay="3"] { animation-delay: 0.24s; }
.reveal.in[data-delay="4"] { animation-delay: 0.32s; }
@keyframes revealIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; animation: none; }
}

/* ── Section eyebrow ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--accent);
}

/* ── Footer ── */
footer {
  background-color: var(--surface-2);
  background-image:
    /* Strong darkening + accent tint so content stays legible */
    linear-gradient(180deg,
      rgba(10,12,15,0.82) 0%,
      rgba(10,12,15,0.78) 35%,
      rgba(10,12,15,0.88) 70%,
      rgba(10,12,15,0.96) 100%),
    /* Real stadium tunnel photo */
    url(../img/stadium.jpg);
  background-size: 100% 100%, cover;
  background-position: center, center 40%;
  background-repeat: no-repeat, no-repeat;
  border-top: 1px solid var(--border);
  padding: 0 0 32px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
/* Accent glow + light atmosphere */
footer::before {
  content: ""; position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse 700px 260px at 15% 70%, rgba(0, 230, 118, 0.10), transparent 70%),
    radial-gradient(ellipse 600px 220px at 85% 75%, rgba(245, 166, 35, 0.06), transparent 70%);
  animation: bgDrift 18s ease-in-out infinite;
  pointer-events: none;
}
footer > * { position: relative; z-index: 1; }

.footer-hero {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
  padding: 72px 0 56px;
  position: relative;
  margin-bottom: 48px;
}
.footer-hero::after {
  content: ""; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,230,118,0.5), rgba(245,166,35,0.3), transparent);
}
@media (max-width: 880px) {
  .footer-hero { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 44px; }
}
.footer-hero-left .logo { margin-bottom: 24px; }
.footer-hero-left .logo-img { height: 45px; }
.footer-hero-tagline {
  font-size: clamp(20px, 2.4vw, 26px); font-weight: 700;
  color: var(--text); letter-spacing: -0.015em;
  line-height: 1.3; max-width: 480px; margin-bottom: 14px;
}
.footer-hero-sub {
  font-size: 14px; color: var(--text-sec); max-width: 460px;
}
.footer-cta-block { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-cta-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.footer-cta-label::before {
  content: ""; width: 24px; height: 1px; background: var(--accent);
}
.footer-cta-label .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.2);
  animation: pulseDot 3s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
}
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; border: 1px solid #2a3340;
  border-radius: 13px; padding: 10px 18px;
  min-width: 180px; color: #fff;
  transition: transform .2s ease, border-color .25s ease, box-shadow .25s ease;
}
.store-badge:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 32px rgba(0, 230, 118, 0.20);
}
.store-badge svg.badge-ico { width: 28px; height: 28px; flex-shrink: 0; }
.store-badge .badge-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .badge-top {
  font-size: 9.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #c2c8d0;
}
.store-badge .badge-main {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.015em; color: #fff;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-col h4 {
  font-size: 12px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.10em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-sec); font-size: 14px;
  transition: color 0.15s, padding-left 0.2s;
  display: inline-block; position: relative;
}
.footer-col a::before {
  content: "→"; position: absolute;
  left: -16px; opacity: 0;
  color: var(--accent);
  transition: opacity 0.2s, left 0.2s;
}
.footer-col a:hover { color: var(--text); padding-left: 4px; }
.footer-col a:hover::before { opacity: 1; left: -14px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: var(--text-sec); font-size: 13px;
}
.footer-bottom .compliance-mini {
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-bottom .compliance-mini .dot-sep {
  width: 3px; height: 3px; border-radius: 50%; background: var(--text-sec); opacity: 0.5;
}

/* ─── Shared float keyframes ─── */
@keyframes nmFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes orbitFloat {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  33%      { transform: translate(8px, -12px) rotate(8deg); }
  66%      { transform: translate(-7px, 8px) rotate(-6deg); }
}

/* ─── Alternating feature rows (shared by partner pages) ─── */
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 56px 0;
}
.feat-row.reverse .feat-copy { order: 2; }
.feat-row.reverse .feat-illo { order: 1; }
@media (max-width: 920px) {
  .feat-row { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .feat-row.reverse .feat-copy { order: 1; }
  .feat-row.reverse .feat-illo { order: 2; }
}
.feat-copy .feat-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.feat-copy .feat-eyebrow .n {
  width: 24px; height: 24px; border-radius: 7px;
  background: rgba(0,230,118,0.14); color: var(--accent);
  display: grid; place-items: center; font-size: 12px; font-weight: 900;
}
.feat-copy h3 {
  font-size: clamp(26px, 3.4vw, 36px); line-height: 1.12;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.feat-copy p { color: var(--text-sec); font-size: 16px; line-height: 1.6; margin-bottom: 18px; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feat-tag {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 13px;
  font-size: 12.5px; font-weight: 700; color: var(--text-sec);
}
.feat-tag .dot { color: var(--accent); margin-right: 5px; }
.feat-illo { position: relative; display: grid; place-items: center; min-height: 320px; }
.feat-box {
  width: 100%; max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  position: relative; z-index: 2;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  animation: nmFloat 8s ease-in-out infinite;
}
.feat-box::before {
  content: ""; position: absolute; inset: -2px;
  background: linear-gradient(135deg, rgba(0,230,118,0.20), transparent 50%, rgba(245,166,35,0.12));
  border-radius: 24px; z-index: -1; filter: blur(22px); opacity: 0.3;
}
.feat-mini-label {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 14px;
}

/* ─── FAQ accordion (shared) ─── */
.faq-section { padding: 80px 0; }
.faq-section .faq-head {
  text-align: center; max-width: 640px; margin: 0 auto 40px;
}
.faq-section .faq-head h2 {
  font-size: clamp(28px, 4vw, 42px); line-height: 1.1;
  letter-spacing: -0.022em; margin-bottom: 12px;
}
.faq-section .faq-head p { color: var(--text-sec); font-size: 17px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: #38424f; }
.faq-item .faq-summary {
  width: 100%;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: 0;
  text-align: left;
  font-family: inherit;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item .faq-summary::after {
  content: "+";
  font-size: 22px; color: var(--accent);
  font-weight: 800;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.faq-item.open .faq-summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  height: 0;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item .faq-body > .faq-inner {
  padding: 0 22px 18px;
  color: var(--text-sec);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item .faq-body p { margin-bottom: 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }
.faq-item .faq-body a:not(.btn) { color: var(--accent); }

/* ─── Legal page layout ─── */
.legal-hero {
  padding: 100px 0 60px;
  position: relative; overflow: hidden;
}
.legal-hero::before {
  content: ""; position: absolute;
  inset: -200px -200px auto -200px; height: 600px;
  background:
    radial-gradient(ellipse 600px 380px at 18% 30%, rgba(0, 230, 118, 0.16), transparent 70%),
    radial-gradient(ellipse 500px 320px at 82% 15%, rgba(245, 166, 35, 0.08), transparent 70%);
  filter: blur(40px); pointer-events: none; z-index: 0;
}
.legal-hero > * { position: relative; z-index: 1; }

.legal-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.04; letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.legal-hero h1 .accent {
  background: linear-gradient(135deg, var(--accent) 0%, #6effb0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-hero .lede {
  font-size: 18px; color: var(--text);
  max-width: 700px; margin-bottom: 28px;
  line-height: 1.55;
}
.legal-meta {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px 18px;
  font-size: 13px; color: var(--text-sec);
}
.legal-meta b { color: var(--text); font-weight: 700; }
.legal-meta .meta-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-dim); opacity: 0.6;
}

.legal-body {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 56px; padding: 40px 0 80px;
}
@media (max-width: 880px) {
  .legal-body { grid-template-columns: 1fr; gap: 24px; }
}

.legal-toc {
  position: sticky; top: 100px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.legal-toc-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
  padding-left: 12px;
}
.legal-toc ul { list-style: none; }
.legal-toc li {
  margin-bottom: 2px;
}
.legal-toc a {
  display: block;
  padding: 7px 12px;
  font-size: 13.5px;
  color: var(--text-sec);
  border-radius: 7px;
  transition: color 0.15s, background 0.15s, padding-left 0.2s;
  border-left: 2px solid transparent;
}
.legal-toc a:hover {
  color: var(--text);
  padding-left: 14px;
  background: rgba(0, 230, 118, 0.04);
}
.legal-toc a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(0, 230, 118, 0.06);
}
@media (max-width: 880px) {
  .legal-toc { position: static; max-height: none; overflow: visible; display: none; }
}

.legal-content > section {
  scroll-margin-top: 100px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.legal-content > section:last-child { border-bottom: 0; }
.legal-content h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.018em;
  margin-bottom: 14px;
  display: flex; align-items: baseline; gap: 14px;
}
.legal-content h2 .num {
  font-size: 13px; font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.legal-content h3 {
  font-size: 16px;
  margin: 22px 0 8px;
  color: var(--text);
}
.legal-content p {
  font-size: 15.5px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content p strong, .legal-content p b {
  color: var(--text); font-weight: 700;
}
.legal-content ul {
  list-style: none;
  margin: 6px 0 18px;
}
.legal-content ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.6;
}
.legal-content ul li::before {
  content: ""; position: absolute;
  left: 6px; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent);
}
.legal-content ul li strong, .legal-content ul li b {
  color: var(--text); font-weight: 700;
}
.legal-content a:not(.btn) { color: var(--accent); }
.legal-content a:not(.btn):hover { text-decoration: underline; }

/* Special callout — important notices */
.callout {
  display: flex; gap: 18px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.08), rgba(0, 230, 118, 0.02));
  border: 1px solid rgba(0, 230, 118, 0.35);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 300px 120px at 0% 0%, rgba(0, 230, 118, 0.12), transparent 70%);
  pointer-events: none;
}
.callout > * { position: relative; z-index: 1; }
.callout .ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0, 230, 118, 0.18);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.callout-content h4 {
  font-size: 15px; margin-bottom: 6px;
  color: var(--text);
}
.callout-content p {
  font-size: 14px; color: var(--text);
  margin: 0; line-height: 1.55;
}
.callout.warning {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(245, 166, 35, 0.02));
  border-color: rgba(245, 166, 35, 0.35);
}
.callout.warning::before {
  background: radial-gradient(ellipse 300px 120px at 0% 0%, rgba(245, 166, 35, 0.12), transparent 70%);
}
.callout.warning .ico {
  background: rgba(245, 166, 35, 0.18);
  color: var(--gold);
}

/* Contact CTA card at bottom of legal pages */
.legal-cta {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(26,31,39,0.7) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 40px;
  margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
  position: relative; overflow: hidden;
}
.legal-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 400px 200px at 100% 0%, rgba(0, 230, 118, 0.10), transparent 70%);
  pointer-events: none;
}
.legal-cta > * { position: relative; z-index: 1; }
@media (max-width: 720px) {
  .legal-cta { flex-direction: column; text-align: center; padding: 28px 24px; }
}
.legal-cta h3 { font-size: 22px; margin-bottom: 6px; letter-spacing: -0.015em; }
.legal-cta p { color: var(--text-sec); font-size: 15px; }

/* ─── Hero bingo board animation (creators / sponsors hero cards) ─── */
@keyframes heroSlotIn {
  0%   { transform: scale(0.85) rotateY(-18deg); opacity: 0; box-shadow: 0 0 0 rgba(0,230,118,0); }
  40%  { transform: scale(1.12); opacity: 1; box-shadow: 0 0 34px rgba(0,230,118,0.8); }
  70%  { transform: scale(0.96); box-shadow: 0 0 18px rgba(0,230,118,0.4); }
  100% { transform: scale(1); box-shadow: 0 0 10px rgba(0,230,118,0.25); }
}
@keyframes heroCellMiss {
  0% { transform: scale(1); } 30% { transform: scale(0.9); } 100% { transform: scale(1); }
}
@keyframes heroRowGlow {
  0%,100% { box-shadow: 0 0 6px rgba(0,230,118,0.3); }
  50%     { box-shadow: 0 0 22px rgba(0,230,118,0.7); }
}
.host-board-mini .cell.justHit, .sp-card-board .cell.justHit {
  animation: heroSlotIn 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.host-board-mini .cell.justMiss, .sp-card-board .cell.justMiss {
  animation: heroCellMiss 0.45s ease both;
}
.host-board-mini .cell.win, .sp-card-board .cell.win {
  background: rgba(0, 230, 118, 0.40);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.5);
  animation: heroRowGlow 1.5s ease-in-out infinite;
}
.hero-bingo-banner {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  background: #181c22;
  color: var(--accent);
  padding: 18px 30px;
  border-radius: 18px;
  font-weight: 900; text-align: center;
  border: 1.5px solid rgba(0, 230, 118, 0.5);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.65), 0 0 32px rgba(0, 230, 118, 0.30);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 30;
}
.hero-bingo-banner.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.hero-bingo-banner .hbb-title { font-size: 28px; letter-spacing: 0.04em; color: var(--accent); text-shadow: 0 0 20px rgba(0, 230, 118, 0.55); }
.hero-bingo-banner .hbb-sub { font-size: 11.5px; margin-top: 5px; font-weight: 700; color: var(--text-sec); }

/* Feature bingo boards (creators #chBoard, pubs #fiBoard) — hero-style states */
.fi-board .c.win {
  background: rgba(0, 230, 118, 0.40) !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.5) !important;
  animation: heroRowGlow 1.5s ease-in-out infinite;
}
.fi-board .c.justHit { animation: heroSlotIn 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.fi-board .c.justMiss { animation: heroCellMiss 0.45s ease both; }

/* Confetti burst (shared) */
.confetti-burst { position: absolute; inset: 0; pointer-events: none; overflow: visible; z-index: 31; }
.confetti-burst i {
  position: absolute; left: 50%; top: 48%;
  width: 9px; height: 14px;
  background: var(--c, var(--accent));
  border-radius: 2px; opacity: 0;
  animation: confettiFly 1.1s ease-out forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes confettiFly {
  0%   { opacity: 1; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, 0px))) rotate(var(--r, 360deg)) scale(0.5); }
}

/* ── Compliance band (shared across pages) ── */
.compliance-band {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 40px;
  display: flex; gap: 28px; align-items: center;
  position: relative; overflow: hidden;
}
.compliance-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 200px at 25% 50%, rgba(0,230,118,0.07), transparent 70%),
    radial-gradient(ellipse 400px 180px at 80% 50%, rgba(245,166,35,0.05), transparent 70%);
  animation: bgShift 12s ease-in-out infinite;
}
.compliance-band > * { position: relative; z-index: 1; }
@keyframes bgShift {
  0%, 100% { transform: translateX(0) scale(1); }
  50%      { transform: translateX(30px) scale(1.05); }
}
@media (max-width: 720px) { .compliance-band { flex-direction: column; text-align: center; padding: 28px 24px; } }
.compliance-band .shield {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(0, 230, 118, 0.10);
  color: var(--accent);
  display: grid; place-items: center; font-size: 28px;
  flex-shrink: 0;
  animation: shieldPulse 3s ease-in-out infinite;
}
.compliance-band .shield svg { width: 30px; height: 30px; }
@keyframes shieldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.45); transform: scale(1); }
  50%      { box-shadow: 0 0 0 12px rgba(0, 230, 118, 0); transform: scale(1.09); }
}
.compliance-band h3 { font-size: 19px; margin-bottom: 6px; letter-spacing: -0.01em; }
.compliance-band p { color: var(--text-sec); font-size: 14.5px; max-width: 740px; }
