/* YukonPioneer — Buccaneer Crimson — prefix: qz */
/* Mobile-first. Bootstrap 5.3.2 grid-only CDN handles .container/.row/.col-* */

/* ─── CSS Variables ─────────────────────────────────────────────────────── */
:root {
  --qz-bg-deep:    #1c0a0a;
  --qz-bg-mid:     #2d1010;
  --qz-bg-card:    #3a1515;
  --qz-bg-light:   #4a1f1f;
  --qz-gold:       #ffd700;
  --qz-gold-lt:    #ffe066;
  --qz-gold-dk:    #cc8800;
  --qz-red:        #d4190a;
  --qz-red-lt:     #ff3333;
  --qz-cream:      #fff8e7;
  --qz-cream-dk:   #c4a882;
  --qz-navy:       #0a1a2e;
  --qz-navy-lt:    #1a3060;
  --qz-warn:       #ff4444;
  --qz-ring:       #3d1515;
  --qz-text:       #f5e6c8;
  --qz-text-muted: #a08060;
  --qz-border:     rgba(255,215,0,0.2);
  --qz-display:    'Pirata One', 'Cinzel Decorative', Georgia, serif;
  --qz-body:       'Libre Baskerville', 'Georgia', serif;
  --qz-ui:         'Nunito', 'Segoe UI', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  background-color: var(--qz-bg-deep);
  color: var(--qz-text);
  font-family: var(--qz-body);
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--qz-gold); text-decoration: none; }
a:hover { color: var(--qz-gold-lt); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Typography ────────────────────────────────────────────────────────── */
.qz-display { font-family: var(--qz-display); }
h1, h2, h3, h4 { font-family: var(--qz-display); color: var(--qz-gold); line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }

/* ─── Topbar ────────────────────────────────────────────────────────────── */
.qz-topbar {
  background: var(--qz-warn);
  color: #fff;
  font-family: var(--qz-ui);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.5px;
}

/* ─── Navigation ────────────────────────────────────────────────────────── */
.qz-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28,10,10,0.97);
  border-bottom: 2px solid var(--qz-gold-dk);
  backdrop-filter: blur(8px);
  max-height: 64px;
}
.qz-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.qz-nav__logo { display: flex; align-items: center; gap: 10px; }
.qz-nav__logo img { height: 44px; width: auto; }
.qz-nav__links { display: none; gap: 24px; list-style: none; }
.qz-nav__links a {
  font-family: var(--qz-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--qz-cream);
  transition: color .2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.qz-nav__links a:hover { color: var(--qz-gold); text-decoration: none; }
.qz-nav__burger {
  background: none;
  border: 2px solid var(--qz-gold);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
}
.qz-nav__burger span { display: block; width: 22px; height: 2px; background: var(--qz-gold); border-radius: 2px; }
@media (min-width: 768px) {
  .qz-nav__links { display: flex; }
  .qz-nav__burger { display: none; }
}

/* ─── Mobile Nav Dropdown ───────────────────────────────────────────────── */
.qz-mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--qz-bg-mid);
  border-bottom: 2px solid var(--qz-gold-dk);
  z-index: 99;
  padding: 16px;
}
.qz-mobile-nav.qz-open { display: block; }
.qz-mobile-nav a {
  display: block;
  font-family: var(--qz-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--qz-cream);
  padding: 12px 0;
  border-bottom: 1px solid var(--qz-border);
  text-transform: uppercase;
}
.qz-mobile-nav a:hover { color: var(--qz-gold); text-decoration: none; }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.qz-hero {
  position: relative;
  background-color: var(--qz-bg-deep);
  padding: 64px 16px 48px;
  overflow: hidden;
}
.qz-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,10,10,0.85) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.qz-hero .container, .qz-hero .row { position: relative; z-index: 2; }
.qz-hero__tag {
  display: inline-block;
  background: var(--qz-gold);
  color: var(--qz-bg-deep);
  font-family: var(--qz-ui);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.qz-hero__h1 { color: var(--qz-cream); margin-bottom: 16px; }
.qz-hero__h1 span { color: var(--qz-gold); }
.qz-hero__lead {
  font-size: 1.1rem;
  color: var(--qz-cream-dk);
  margin-bottom: 28px;
  max-width: 520px;
}
.qz-hero__cta-wrap { display: flex; gap: 14px; flex-wrap: wrap; }
.qz-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--qz-gold);
  color: var(--qz-bg-deep);
  font-family: var(--qz-ui);
  font-size: 15px;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background .2s, transform .1s;
  min-height: 44px;
  min-width: 44px;
}
.qz-btn-primary:hover { background: var(--qz-gold-lt); color: var(--qz-bg-deep); text-decoration: none; transform: translateY(-2px); }
.qz-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--qz-cream);
  font-family: var(--qz-ui);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  border: 2px solid var(--qz-gold-dk);
  cursor: pointer;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
  min-height: 44px;
  min-width: 44px;
}
.qz-btn-secondary:hover { border-color: var(--qz-gold); color: var(--qz-gold); text-decoration: none; }

/* Teaser card (hero right panel — no game widget on homepage) */
.qz-hero-teaser {
  background: rgba(255,215,0,0.08);
  border: 2px solid var(--qz-gold-dk);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  margin-top: 32px;
}
@media (min-width: 992px) {
  .qz-hero { padding: 120px 0 80px; }
  .qz-hero-teaser { margin-top: 0; }
}
.qz-hero-teaser__icon { font-size: 4rem; margin-bottom: 16px; display: block; }
.qz-hero-teaser__title { color: var(--qz-gold); font-family: var(--qz-display); font-size: 1.6rem; margin-bottom: 10px; }
.qz-hero-teaser__sub { color: var(--qz-cream-dk); font-size: 0.95rem; margin-bottom: 24px; }

/* ─── Section Common ────────────────────────────────────────────────────── */
.qz-section { padding: 56px 16px; }
@media (min-width: 768px) { .qz-section { padding: 96px 0; } }
.qz-section-title { text-align: center; margin-bottom: 12px; }
.qz-section-lead { text-align: center; color: var(--qz-cream-dk); max-width: 640px; margin: 0 auto 48px; }
.qz-eyebrow {
  display: inline-block;
  color: var(--qz-gold);
  font-family: var(--qz-ui);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

/* ─── Features ──────────────────────────────────────────────────────────── */
.qz-features { background-color: var(--qz-bg-mid); }
.qz-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .qz-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .qz-features-grid { grid-template-columns: repeat(3, 1fr); }
}
.qz-feature-card {
  background: var(--qz-bg-card);
  border: 1px solid var(--qz-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.qz-feature-card:hover { border-color: var(--qz-gold-dk); transform: translateY(-4px); }
.qz-feature-card__icon { font-size: 2.4rem; margin-bottom: 14px; }
.qz-feature-card__title { font-size: 1.15rem; margin-bottom: 8px; color: var(--qz-gold-lt); }
.qz-feature-card__text { color: var(--qz-cream-dk); font-size: 0.95rem; }

/* ─── About Strip ───────────────────────────────────────────────────────── */
.qz-about { background-color: var(--qz-bg-deep); }
.qz-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .qz-about-grid { grid-template-columns: 1fr 1fr; }
}
.qz-about__img-wrap { border-radius: 14px; overflow: hidden; border: 2px solid var(--qz-gold-dk); }
.qz-about__text { color: var(--qz-cream-dk); line-height: 1.8; }
.qz-about__bullets { list-style: none; margin-top: 20px; }
.qz-about__bullets li { padding: 8px 0; border-bottom: 1px solid var(--qz-border); display: flex; gap: 10px; align-items: flex-start; }
.qz-about__bullets li::before { content: "⚓"; flex-shrink: 0; }

/* ─── Platform Extended ─────────────────────────────────────────────────── */
.qz-platform { background: var(--qz-bg-mid); }
.qz-facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 576px) { .qz-facts-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .qz-facts-grid { grid-template-columns: repeat(3, 1fr); } }
.qz-fact-chip {
  background: var(--qz-bg-card);
  border: 1px solid var(--qz-border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.qz-fact-chip__num { font-family: var(--qz-display); font-size: 2.2rem; color: var(--qz-gold); display: block; }
.qz-fact-chip__label { font-size: 0.9rem; color: var(--qz-cream-dk); }

/* ─── Why Us ────────────────────────────────────────────────────────────── */
.qz-why { background: var(--qz-bg-deep); }
.qz-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) { .qz-why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .qz-why-grid { grid-template-columns: repeat(3, 1fr); } }
.qz-why-card {
  background: var(--qz-bg-card);
  border-left: 4px solid var(--qz-gold-dk);
  border-radius: 0 10px 10px 0;
  padding: 20px 18px;
}
.qz-why-card__num {
  font-family: var(--qz-display);
  font-size: 2rem;
  color: var(--qz-gold);
  display: block;
  margin-bottom: 8px;
}
.qz-why-card__title { font-size: 1rem; color: var(--qz-gold-lt); margin-bottom: 6px; }
.qz-why-card__text { font-size: 0.9rem; color: var(--qz-cream-dk); }

/* ─── Updates ───────────────────────────────────────────────────────────── */
.qz-updates { background: var(--qz-bg-mid); }
.qz-updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .qz-updates-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .qz-updates-grid { grid-template-columns: repeat(4, 1fr); } }
.qz-update-card {
  background: var(--qz-bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--qz-border);
}
.qz-update-card__img { width: 100%; height: 160px; object-fit: cover; }
.qz-update-card__body { padding: 16px; }
.qz-update-card__date { font-size: 0.8rem; color: var(--qz-text-muted); font-family: var(--qz-ui); margin-bottom: 6px; }
.qz-update-card__title { font-size: 1rem; color: var(--qz-gold-lt); margin-bottom: 6px; }
.qz-update-card__text { font-size: 0.88rem; color: var(--qz-cream-dk); }

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.qz-faq { background: var(--qz-bg-deep); }
.qz-faq-item {
  border: 1px solid var(--qz-border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.qz-faq-q {
  width: 100%;
  background: var(--qz-bg-card);
  border: none;
  color: var(--qz-cream);
  font-family: var(--qz-ui);
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.qz-faq-q:hover { background: var(--qz-bg-light); }
.qz-faq-q .qz-faq-icon { font-size: 1.1rem; color: var(--qz-gold); flex-shrink: 0; transition: transform .3s; }
.qz-faq-q[aria-expanded="true"] .qz-faq-icon { transform: rotate(45deg); }
.qz-faq-a {
  display: none;
  padding: 0 20px 18px;
  background: var(--qz-bg-card);
  color: var(--qz-cream-dk);
  font-size: 0.95rem;
  line-height: 1.7;
}
.qz-faq-a.qz-open { display: block; }

/* ─── General Context Strip ─────────────────────────────────────────────── */
.qz-context { background: var(--qz-bg-mid); }
.qz-context-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 992px) { .qz-context-grid { grid-template-columns: repeat(3, 1fr); } }
.qz-context-col__title { color: var(--qz-gold-lt); font-size: 1.1rem; margin-bottom: 12px; }
.qz-context-col p { color: var(--qz-cream-dk); font-size: 0.92rem; line-height: 1.7; margin-bottom: 10px; }
.qz-context-divider {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--qz-border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--qz-text-muted);
}
@media (min-width: 768px) { .qz-context-divider { grid-template-columns: 1fr 1fr 1fr; } }

/* ─── Responsible Gambling ──────────────────────────────────────────────── */
.qz-rg { background: #0a0505; border-top: 3px solid var(--qz-warn); border-bottom: 3px solid var(--qz-warn); }
.qz-rg__inner { padding: 48px 16px; }
.qz-rg__title { color: var(--qz-warn); font-family: var(--qz-display); font-size: 1.5rem; margin-bottom: 16px; }
.qz-rg__text { color: var(--qz-cream-dk); font-size: 0.95rem; line-height: 1.8; max-width: 720px; }
.qz-rg__badge { display: inline-block; background: var(--qz-warn); color: #fff; font-weight: 900; font-size: 1.1rem; padding: 4px 14px; border-radius: 4px; margin-bottom: 12px; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.qz-footer { background: #110505; border-top: 2px solid var(--qz-gold-dk); }
.qz-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 16px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 576px) { .qz-footer__cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .qz-footer__cols { grid-template-columns: 1.8fr 1fr 1fr 1fr; padding: 56px 0 32px; } }
.qz-footer__brand-name { font-family: var(--qz-display); font-size: 1.4rem; color: var(--qz-gold); margin-bottom: 12px; }
.qz-footer__desc { color: var(--qz-text-muted); font-size: 0.88rem; line-height: 1.7; }
.qz-footer__col-title { font-family: var(--qz-ui); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--qz-gold-dk); margin-bottom: 14px; }
.qz-footer__links { list-style: none; }
.qz-footer__links li { margin-bottom: 8px; }
.qz-footer__links a { color: var(--qz-text-muted); font-size: 0.9rem; transition: color .2s; }
.qz-footer__links a:hover { color: var(--qz-gold); text-decoration: none; }
.qz-footer__contact { color: var(--qz-text-muted); font-size: 0.9rem; }
.qz-footer__contact a { color: var(--qz-gold-dk); }

/* Footer responsible gaming */
.qz-footer-rg { background: #0c0303; padding: 32px 16px; border-top: 1px solid var(--qz-ring); max-width: 1200px; margin: 0 auto; }
.qz-footer-rg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .qz-footer-rg-grid { grid-template-columns: 1fr 1fr; } }
.qz-footer-rg__col-title { color: var(--qz-warn); font-family: var(--qz-ui); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.qz-footer-rg__text { color: var(--qz-text-muted); font-size: 0.85rem; line-height: 1.7; }

/* Regulator logos strip */
.qz-footer-regulators {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  border-top: 1px solid var(--qz-ring);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  background: #0c0303;
}
.qz-logo-frame {
  background: var(--qz-navy);
  padding: 10px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.qz-footer-regulators img { height: 36px; width: auto; }

/* Footer bottom bar */
.qz-footer-bottom {
  background: #080202;
  border-top: 1px solid var(--qz-ring);
  padding: 16px;
  text-align: center;
}
.qz-footer-bottom p { color: var(--qz-text-muted); font-size: 0.8rem; line-height: 1.6; }
.qz-footer-disclaimer {
  background: #080202;
  padding: 16px;
  text-align: center;
  border-top: 1px solid var(--qz-ring);
}
.qz-footer-disclaimer p { color: var(--qz-text-muted); font-size: 0.78rem; line-height: 1.65; max-width: 900px; margin: 0 auto; }
.qz-footer-attr { color: var(--qz-text-muted); font-size: 0.76rem; text-align: center; padding: 8px 16px 16px; background: #080202; }

/* ─── Age Gate ──────────────────────────────────────────────────────────── */
.qz-age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.qz-age-card {
  background: var(--qz-bg-mid);
  border: 3px solid var(--qz-gold);
  border-radius: 18px;
  padding: 36px 28px;
  max-width: min(480px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  text-align: center;
  overflow-y: auto;
}
.qz-age-card__skull { font-size: 3.5rem; display: block; margin-bottom: 16px; }
.qz-age-card__title { font-family: var(--qz-display); font-size: 1.6rem; color: var(--qz-gold); margin-bottom: 12px; }
.qz-age-card__text { color: var(--qz-cream-dk); font-size: 0.95rem; margin-bottom: 24px; }
.qz-age-card__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.qz-age-btn-yes {
  background: var(--qz-gold);
  color: var(--qz-bg-deep);
  font-family: var(--qz-ui);
  font-weight: 900;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  min-height: 44px;
  min-width: 44px;
}
.qz-age-btn-no {
  background: transparent;
  color: var(--qz-cream-dk);
  font-family: var(--qz-ui);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border: 2px solid var(--qz-text-muted);
  border-radius: 8px;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}

/* ─── Cookie Banner ─────────────────────────────────────────────────────── */
.qz-cookies {
  display: none;
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: var(--qz-bg-mid);
  border: 2px solid var(--qz-gold-dk);
  border-radius: 14px;
  padding: 18px;
  z-index: 9000;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
}
@media (min-width: 600px) {
  .qz-cookies { left: auto; right: 24px; bottom: 24px; width: 380px; padding: 24px; }
}
.qz-cookies__title { font-family: var(--qz-display); font-size: 1.1rem; color: var(--qz-gold); margin-bottom: 8px; }
.qz-cookies__text { color: var(--qz-cream-dk); font-size: 0.88rem; margin-bottom: 16px; }
.qz-cookies__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.qz-ck-accept, .qz-ck-decline {
  font-family: var(--qz-ui);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  min-height: 44px;
  min-width: 44px;
}
.qz-ck-accept { background: var(--qz-gold); color: var(--qz-bg-deep); }
.qz-ck-decline { background: transparent; color: var(--qz-cream-dk); border: 1px solid var(--qz-ring); }
.qz-ck-reopen {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: var(--qz-gold);
  color: var(--qz-bg-deep);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 20px;
  z-index: 8999;
  cursor: pointer;
  border: none;
  min-height: 44px;
}

/* ─── Sub-page Hero ─────────────────────────────────────────────────────── */
.qz-sub-hero {
  background-color: var(--qz-bg-mid);
  padding: 64px 16px 48px;
  position: relative;
  overflow: hidden;
}
.qz-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(28,10,10,0.85));
  z-index: 1;
}
.qz-sub-hero .container { position: relative; z-index: 2; }
.qz-sub-hero h1 { color: var(--qz-cream); }
.qz-sub-hero__lead { color: var(--qz-cream-dk); font-size: 1.05rem; max-width: 600px; margin-top: 12px; }
@media (min-width: 768px) { .qz-sub-hero { padding: 80px 0 60px; } }

/* ─── Sub-page Content ──────────────────────────────────────────────────── */
.qz-sub-content { background: var(--qz-bg-deep); padding: 56px 16px; }
@media (min-width: 768px) { .qz-sub-content { padding: 72px 0; } }
.qz-sub-h2 { color: var(--qz-gold-lt); font-size: 1.3rem; margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--qz-border); }
.qz-sub-p { color: var(--qz-cream-dk); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.qz-sub-ul { color: var(--qz-cream-dk); font-size: 0.95rem; line-height: 1.8; padding-left: 20px; margin-bottom: 16px; }
.qz-sub-ul li { margin-bottom: 6px; }
.qz-lead-intro { background: var(--qz-bg-card); border-left: 4px solid var(--qz-gold); padding: 20px 20px; border-radius: 0 10px 10px 0; margin-bottom: 32px; color: var(--qz-cream-dk); font-size: 1rem; line-height: 1.75; }

/* ─── Avatar (no people photos) ────────────────────────────────────────── */
/* Initials-avatar — replaces team/editor/author photos */
.qz-avatar {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--qz-display);
  font-size: 22px; font-weight: 700; letter-spacing: 0.5px;
  border-radius: 50%;
  text-transform: uppercase;
}
.qz-avatar--rounded-sq { border-radius: 16%; }
.qz-avatar--sharp-sq   { border-radius: 0; }
.qz-avatar--circle     { border-radius: 50%; }
.qz-avatar--lg { width: 96px; height: 96px; font-size: 32px; }
.qz-avatar--sm { width: 40px; height: 40px; font-size: 14px; }

/* ─── Game page styles (ONLY on set-sail.php) ───────────────────────────── */
.qz-game-section {
  background-color: var(--qz-bg-deep);
  padding: 48px 16px;
  position: relative;
}
@media (min-width: 768px) { .qz-game-section { padding: 72px 0; } }

/* game-ui — EXPANDING GRID slot: 3×3 → 5×5 */
/* game-ui */
.qz-game-ui {
  background: var(--qz-bg-mid);
  border: 2px solid var(--qz-gold-dk);
  border-radius: 18px;
  padding: 28px 20px 24px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.qz-game-title { font-family: var(--qz-display); font-size: 1.5rem; color: var(--qz-gold); margin-bottom: 6px; }
.qz-game-subtitle { color: var(--qz-cream-dk); font-size: 0.88rem; margin-bottom: 20px; }
.qz-credits-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.qz-cred-box { background: var(--qz-bg-card); border: 1px solid var(--qz-border); border-radius: 8px; padding: 8px 14px; }
.qz-cred-label { font-size: 0.7rem; color: var(--qz-text-muted); font-family: var(--qz-ui); text-transform: uppercase; }
.qz-cred-val { font-family: var(--qz-display); font-size: 1.2rem; color: var(--qz-gold); }

/* game-ui */
/* reel grid — base 3×3, grows to 3×5 via inline style override */
.qz-reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}
.qz-reel-cell {
  background: var(--qz-bg-card);
  border: 2px solid var(--qz-border);
  border-radius: 8px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  color: var(--qz-gold);
}
.qz-reel-cell img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}
.qz-reel-cell.qz-win {
  border-color: var(--qz-gold);
  box-shadow: 0 0 18px rgba(255,215,0,0.7), inset 0 0 8px rgba(255,215,0,0.3);
  animation: qz-pulse-win 0.8s ease-in-out infinite alternate;
}
.qz-reel-cell.qz-anchor-expand {
  border-color: #6699ff;
  box-shadow: 0 0 18px rgba(102,153,255,0.8);
  animation: qz-pulse-anchor 0.6s ease-in-out infinite alternate;
}
@keyframes qz-pulse-win {
  from { box-shadow: 0 0 12px rgba(255,215,0,0.5); }
  to   { box-shadow: 0 0 28px rgba(255,215,0,0.9), inset 0 0 12px rgba(255,215,0,0.4); }
}
@keyframes qz-pulse-anchor {
  from { box-shadow: 0 0 10px rgba(102,153,255,0.5); }
  to   { box-shadow: 0 0 25px rgba(102,153,255,0.9); }
}
@keyframes qz-spin-flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.qz-reel-cell.qz-spinning { animation: qz-spin-flash 0.15s linear infinite; }

/* Reel expansion indicator strip */
.qz-grid-size-bar { display: flex; gap: 6px; justify-content: center; margin-bottom: 14px; }
.qz-grid-pip {
  width: 28px; height: 8px;
  border-radius: 4px;
  background: var(--qz-border);
  transition: background 0.3s;
}
.qz-grid-pip.qz-expanded { background: var(--qz-gold); }

/* Bet / action row */
.qz-bet-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.qz-bet-btn {
  background: var(--qz-bg-card);
  border: 1px solid var(--qz-border);
  color: var(--qz-cream);
  font-family: var(--qz-ui);
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}
.qz-bet-btn:hover { border-color: var(--qz-gold-dk); }
.qz-bet-label { color: var(--qz-text-muted); font-size: 0.85rem; }
.qz-bet-val { color: var(--qz-gold); font-family: var(--qz-display); font-size: 1.1rem; }

/* Spin button */
.qz-play-btn {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  background: linear-gradient(135deg, var(--qz-gold) 0%, var(--qz-gold-dk) 100%);
  color: var(--qz-bg-deep);
  font-family: var(--qz-display);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.1s, box-shadow 0.2s;
  min-height: 44px;
}
.qz-play-btn:hover { transform: scale(1.04); box-shadow: 0 6px 24px rgba(255,215,0,0.4); }
.qz-play-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Message strip under reels */
.qz-game-msg {
  margin: 10px 0;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--qz-ui);
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qz-game-msg--win { background: rgba(255,215,0,0.15); color: var(--qz-gold); border: 1px solid var(--qz-gold-dk); }
.qz-game-msg--anchor { background: rgba(102,153,255,0.15); color: #88aaff; border: 1px solid #3366bb; }
.qz-game-msg--bonus { background: rgba(255,50,50,0.2); color: #ff6666; border: 1px solid var(--qz-red); animation: qz-pulse-win 0.6s alternate infinite; }
.qz-game-msg--neutral { background: transparent; color: var(--qz-text-muted); border: 1px solid var(--qz-border); }

/* Paytable */
.qz-paytable { margin-top: 24px; }
.qz-paytable-title { color: var(--qz-gold); font-family: var(--qz-display); font-size: 1.1rem; margin-bottom: 12px; }
.qz-paytable-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--qz-border); }
.qz-paytable-sym { width: 44px; height: 44px; object-fit: contain; }
.qz-paytable-name { flex: 1; color: var(--qz-cream-dk); font-size: 0.9rem; }
.qz-paytable-val { color: var(--qz-gold); font-family: var(--qz-display); font-size: 1rem; font-weight: 700; }

/* Bonus overlay */
.qz-bonus-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(28,10,10,0.96);
  border-radius: 18px;
  z-index: 10;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  text-align: center;
}
.qz-bonus-overlay.qz-active { display: flex; }
.qz-bonus-title { font-family: var(--qz-display); font-size: 2rem; color: var(--qz-red-lt); }
.qz-bonus-sub { color: var(--qz-cream-dk); font-size: 0.95rem; }
.qz-bonus-count { font-family: var(--qz-display); font-size: 3rem; color: var(--qz-gold); }

/* Regulator help orgs cards */
.qz-help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 576px) { .qz-help-grid { grid-template-columns: 1fr 1fr; } }

/* About page cards */
.qz-about-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 768px) { .qz-about-card-grid { grid-template-columns: repeat(3, 1fr); } }
.qz-about-card {
  background: var(--qz-bg-card);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--qz-border);
}
.qz-about-card__icon { font-size: 2rem; margin-bottom: 12px; }
.qz-about-card__title { color: var(--qz-gold-lt); font-size: 1rem; margin-bottom: 8px; }
.qz-about-card__text { color: var(--qz-cream-dk); font-size: 0.9rem; }

/* Founders note */
.qz-pullquote { border-left: 4px solid var(--qz-gold); padding: 16px 20px; background: var(--qz-bg-card); border-radius: 0 10px 10px 0; margin: 28px 0; color: var(--qz-cream-dk); font-style: italic; font-size: 1.05rem; }
.qz-pullquote cite { display: block; color: var(--qz-gold-dk); font-style: normal; font-size: 0.85rem; margin-top: 10px; }

/* Team avatar row */
.qz-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 480px) { .qz-team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .qz-team-grid { grid-template-columns: repeat(4, 1fr); } }
.qz-team-card { text-align: center; }
.qz-team-card .qz-avatar { margin: 0 auto 12px; }
.qz-team-card__name { color: var(--qz-cream); font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.qz-team-card__role { color: var(--qz-text-muted); font-size: 0.82rem; }

/* Self-check questions */
.qz-self-check { list-style: none; margin: 16px 0; }
.qz-self-check li { padding: 12px 0; border-bottom: 1px solid var(--qz-border); color: var(--qz-cream-dk); font-size: 0.95rem; display: flex; gap: 12px; }
.qz-self-check li::before { content: "?"; font-family: var(--qz-display); font-size: 1.2rem; color: var(--qz-warn); flex-shrink: 0; width: 20px; }

/* Address block */
.qz-address-block { background: var(--qz-bg-card); border-radius: 12px; padding: 24px; border: 1px solid var(--qz-border); margin-top: 32px; }
.qz-address-block p { color: var(--qz-cream-dk); font-size: 0.9rem; margin-bottom: 6px; }

/* ─── Responsible strip (topbar) ────────────────────────────────────────── */
.qz-resp-topbar {
  background: var(--qz-bg-deep);
  border-top: 2px solid var(--qz-warn);
  padding: 10px 16px;
  text-align: center;
  color: var(--qz-warn);
  font-family: var(--qz-ui);
  font-size: 12px;
  font-weight: 700;
}

/* ─── About page extras ─────────────────────────────────────────────────── */
.qz-body-text { color: var(--qz-cream-dk); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }
.qz-about-card__list { color: var(--qz-cream-dk); font-size: 0.88rem; line-height: 1.7; padding-left: 18px; margin-top: 10px; }
.qz-about-card__list li { margin-bottom: 6px; }
.qz-team-card__bio { color: var(--qz-text-muted); font-size: 0.82rem; line-height: 1.6; margin-top: 8px; }
.qz-pullquote__cite { display: block; color: var(--qz-gold-dk); font-style: normal; font-size: 0.85rem; margin-top: 10px; }

/* ─── Legal pages ───────────────────────────────────────────────────────── */
.qz-legal-body { padding: 60px 0; }
.qz-legal-updated { color: var(--qz-text-muted); font-size: 0.85rem; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--qz-border); }
.qz-legal-h2 { color: var(--qz-gold-lt); font-family: var(--qz-display); font-size: 1.25rem; margin-top: 36px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--qz-border); }
.qz-legal-body p { color: var(--qz-cream-dk); font-size: 0.93rem; line-height: 1.8; margin-bottom: 14px; }
.qz-legal-contact-box { background: var(--qz-bg-card); border: 1px solid var(--qz-border); border-radius: 10px; padding: 20px 24px; margin-top: 40px; color: var(--qz-cream-dk); font-size: 0.9rem; line-height: 1.7; }
.qz-legal-contact-box strong { color: var(--qz-gold-lt); }

/* Cookie table */
.qz-cookie-table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--qz-border); border-radius: 10px; }
.qz-cookie-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.qz-cookie-table th { background: var(--qz-bg-light); color: var(--qz-gold-lt); padding: 10px 14px; text-align: left; font-family: var(--qz-ui); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }
.qz-cookie-table td { padding: 10px 14px; border-top: 1px solid var(--qz-border); color: var(--qz-cream-dk); vertical-align: top; }
.qz-cookie-table code { background: var(--qz-bg-light); padding: 1px 5px; border-radius: 4px; font-size: 0.8rem; color: var(--qz-gold); }

/* ─── Safe-Waters / Responsible Play page ───────────────────────────────── */
.qz-rw-notice-box { background: #1a0505; border: 2px solid var(--qz-warn); border-radius: 10px; padding: 20px 24px; color: var(--qz-cream-dk); font-size: 0.95rem; line-height: 1.7; }

/* Signs grid */
.qz-signs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
}
@media (min-width: 576px) { .qz-signs-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .qz-signs-grid { grid-template-columns: repeat(3, 1fr); } }
.qz-sign-card { background: var(--qz-bg-card); border-radius: 12px; padding: 22px; border-left: 5px solid var(--qz-border); }
.qz-sign-card--yellow { border-left-color: #e8c44a; }
.qz-sign-card--orange { border-left-color: #e87a30; }
.qz-sign-card--red { border-left-color: var(--qz-warn); }
.qz-sign-card__icon { font-size: 2rem; margin-bottom: 10px; }
.qz-sign-card__title { color: var(--qz-gold-lt); font-size: 1rem; margin-bottom: 8px; }
.qz-sign-card p { color: var(--qz-cream-dk); font-size: 0.88rem; line-height: 1.7; }

/* Self-check form */
.qz-selfcheck { margin-top: 32px; }
.qz-sc-question { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--qz-border); }
.qz-sc-q-text { color: var(--qz-cream); font-size: 0.97rem; font-weight: 700; margin-bottom: 14px; line-height: 1.5; }
.qz-sc-options { display: flex; flex-direction: column; gap: 10px; }
.qz-sc-label { display: flex; align-items: center; gap: 12px; cursor: pointer; color: var(--qz-cream-dk); font-size: 0.9rem; min-height: 44px; }
.qz-sc-label input[type="radio"] { width: 18px; height: 18px; accent-color: var(--qz-gold); flex-shrink: 0; font-size: 16px; }
.qz-sc-submit { margin-top: 28px; width: 100%; justify-content: center; display: block; }
.qz-sc-result { margin-top: 24px; padding: 20px 24px; border-radius: 10px; font-size: 0.92rem; line-height: 1.7; }
.qz-sc-result--alert { background: #2a0505; border: 2px solid var(--qz-warn); color: var(--qz-cream); }
.qz-sc-result--caution { background: #2a1a05; border: 2px solid #e87a30; color: var(--qz-cream); }
.qz-sc-result--good { background: #052a10; border: 2px solid #3aac6a; color: var(--qz-cream); }
.qz-sc-result--neutral { background: var(--qz-bg-card); border: 1px solid var(--qz-border); color: var(--qz-cream-dk); }
.qz-sc-result strong { display: block; margin-bottom: 8px; font-size: 1rem; }

/* Regulator cards */
.qz-regulator-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 576px) { .qz-regulator-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .qz-regulator-cards { grid-template-columns: repeat(4, 1fr); } }
.qz-reg-card { background: var(--qz-bg-card); border-radius: 14px; padding: 24px; border: 1px solid var(--qz-border); display: flex; flex-direction: column; }
.qz-reg-card__name { color: var(--qz-gold-lt); font-family: var(--qz-display); font-size: 1.05rem; margin: 14px 0 10px; }
.qz-reg-card__desc { color: var(--qz-cream-dk); font-size: 0.86rem; line-height: 1.7; flex: 1; }
.qz-reg-card__details { margin: 16px 0; padding: 12px; background: var(--qz-bg-mid); border-radius: 8px; }
.qz-reg-card__details p { color: var(--qz-cream-dk); font-size: 0.83rem; margin-bottom: 4px; }
.qz-reg-card__link { margin-top: 14px; text-align: center; justify-content: center; display: inline-block; min-height: 44px; line-height: 44px; padding: 0 18px; border-radius: 8px; font-size: 0.85rem; }
.qz-logo-frame--lg { padding: 14px 20px; min-width: 60px; }
.qz-logo-frame--lg img { height: 48px; width: auto; }

/* Family support section */
.qz-family-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
@media (min-width: 768px) { .qz-family-grid { grid-template-columns: 1fr 1fr; } }
.qz-family-col__title { color: var(--qz-gold-lt); font-size: 1.05rem; margin-bottom: 14px; }
.qz-family-list { padding-left: 18px; color: var(--qz-cream-dk); font-size: 0.9rem; line-height: 1.7; }
.qz-family-list li { margin-bottom: 8px; }

/* Break steps */
.qz-break-steps { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.qz-break-step { display: flex; gap: 20px; align-items: flex-start; background: var(--qz-bg-card); border-radius: 12px; padding: 20px; border: 1px solid var(--qz-border); }
.qz-break-step__num { font-family: var(--qz-display); font-size: 2rem; color: var(--qz-gold-dk); min-width: 36px; flex-shrink: 0; line-height: 1; }
.qz-break-step__title { color: var(--qz-gold-lt); font-size: 1rem; margin-bottom: 6px; }
.qz-break-step__body p { color: var(--qz-cream-dk); font-size: 0.88rem; line-height: 1.7; }

/* Commitment grid */
.qz-commitment-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
@media (min-width: 576px) { .qz-commitment-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .qz-commitment-grid { grid-template-columns: repeat(3, 1fr); } }
.qz-commitment-item { display: flex; gap: 16px; align-items: flex-start; background: var(--qz-bg-card); border-radius: 12px; padding: 20px; border: 1px solid var(--qz-border); }
.qz-commitment-item__icon { font-size: 1.8rem; flex-shrink: 0; min-width: 32px; }
.qz-commitment-item__body strong { display: block; color: var(--qz-gold-lt); font-size: 0.95rem; margin-bottom: 6px; }
.qz-commitment-item__body p { color: var(--qz-cream-dk); font-size: 0.85rem; line-height: 1.65; }

/* Provincial helplines */
.qz-helplines-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
@media (min-width: 480px) { .qz-helplines-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 576px) { .qz-helplines-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .qz-helplines-grid { grid-template-columns: repeat(5, 1fr); } }
.qz-helpline-item { background: var(--qz-bg-card); border-radius: 10px; padding: 16px; border: 1px solid var(--qz-border); display: flex; flex-direction: column; gap: 4px; }
.qz-helpline-item strong { color: var(--qz-cream); font-size: 0.85rem; }
.qz-helpline-item a { color: var(--qz-gold); font-size: 0.88rem; font-weight: 700; min-height: 44px; display: flex; align-items: center; }
.qz-helpline-item span { color: var(--qz-text-muted); font-size: 0.75rem; }

/* ─── Utility ───────────────────────────────────────────────────────────── */
.qz-text-gold { color: var(--qz-gold) !important; }
.qz-text-cream { color: var(--qz-cream) !important; }
.qz-text-muted { color: var(--qz-text-muted) !important; }
.qz-mt-0 { margin-top: 0 !important; }
.qz-mb-3 { margin-bottom: 1rem !important; }
.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; }

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