/* Layout grid (mobile-first; breakpoints 576/768/992/1200/1400). */
:root {
  --cz-gutter-x: 1.5rem;
  --cz-gutter-y: 0;
}

/* ---------- Container ---------- */
.cz-container,
.cz-container-fluid,
.cz-container-sm,
.cz-container-md,
.cz-container-lg,
.cz-container-xl,
.cz-container-xxl {
  width: 100%;
  padding-right: calc(var(--cz-gutter-x) * .5);
  padding-left: calc(var(--cz-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .cz-container,
  .cz-container-sm { max-width: 540px; }
}
@media (min-width: 768px) {
  .cz-container,
  .cz-container-sm,
  .cz-container-md { max-width: 720px; }
}
@media (min-width: 992px) {
  .cz-container,
  .cz-container-sm,
  .cz-container-md,
  .cz-container-lg { max-width: 960px; }
}
@media (min-width: 1200px) {
  .cz-container,
  .cz-container-sm,
  .cz-container-md,
  .cz-container-lg,
  .cz-container-xl { max-width: 1140px; }
}
@media (min-width: 1400px) {
  .cz-container,
  .cz-container-sm,
  .cz-container-md,
  .cz-container-lg,
  .cz-container-xl,
  .cz-container-xxl { max-width: 1320px; }
}

/* ---------- Row ---------- */
.cz-row {
  --cz-gutter-x: 1.5rem;
  --cz-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--cz-gutter-y) * -1);
  margin-right: calc(var(--cz-gutter-x) * -.5);
  margin-left: calc(var(--cz-gutter-x) * -.5);
}
.cz-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--cz-gutter-x) * .5);
  padding-left: calc(var(--cz-gutter-x) * .5);
  margin-top: var(--cz-gutter-y);
}

/* ---------- Cols (xs, mobile baseline) ---------- */
.cz-col       { flex: 1 0 0%; }
.cz-col-auto  { flex: 0 0 auto; width: auto; }
.cz-col-1  { flex: 0 0 auto; width: 8.33333333%; }
.cz-col-2  { flex: 0 0 auto; width: 16.66666667%; }
.cz-col-3  { flex: 0 0 auto; width: 25%; }
.cz-col-4  { flex: 0 0 auto; width: 33.33333333%; }
.cz-col-5  { flex: 0 0 auto; width: 41.66666667%; }
.cz-col-6  { flex: 0 0 auto; width: 50%; }
.cz-col-7  { flex: 0 0 auto; width: 58.33333333%; }
.cz-col-8  { flex: 0 0 auto; width: 66.66666667%; }
.cz-col-9  { flex: 0 0 auto; width: 75%; }
.cz-col-10 { flex: 0 0 auto; width: 83.33333333%; }
.cz-col-11 { flex: 0 0 auto; width: 91.66666667%; }
.cz-col-12 { flex: 0 0 auto; width: 100%; }

/* ---------- Offsets (xs) ---------- */
.cz-offset-1  { margin-left: 8.33333333%; }
.cz-offset-2  { margin-left: 16.66666667%; }
.cz-offset-3  { margin-left: 25%; }
.cz-offset-4  { margin-left: 33.33333333%; }
.cz-offset-5  { margin-left: 41.66666667%; }
.cz-offset-6  { margin-left: 50%; }
.cz-offset-7  { margin-left: 58.33333333%; }
.cz-offset-8  { margin-left: 66.66666667%; }
.cz-offset-9  { margin-left: 75%; }
.cz-offset-10 { margin-left: 83.33333333%; }
.cz-offset-11 { margin-left: 91.66666667%; }

/* ---------- Order (xs) ---------- */
.cz-order-first { order: -1; }
.cz-order-last  { order: 6; }
.cz-order-0 { order: 0; }
.cz-order-1 { order: 1; }
.cz-order-2 { order: 2; }
.cz-order-3 { order: 3; }
.cz-order-4 { order: 4; }
.cz-order-5 { order: 5; }

/* ---------- Gutters (xs) ---------- */
.cz-g-0,  .cz-gx-0 { --cz-gutter-x: 0; }
.cz-g-0,  .cz-gy-0 { --cz-gutter-y: 0; }
.cz-g-1,  .cz-gx-1 { --cz-gutter-x: .25rem; }
.cz-g-1,  .cz-gy-1 { --cz-gutter-y: .25rem; }
.cz-g-2,  .cz-gx-2 { --cz-gutter-x: .5rem; }
.cz-g-2,  .cz-gy-2 { --cz-gutter-y: .5rem; }
.cz-g-3,  .cz-gx-3 { --cz-gutter-x: 1rem; }
.cz-g-3,  .cz-gy-3 { --cz-gutter-y: 1rem; }
.cz-g-4,  .cz-gx-4 { --cz-gutter-x: 1.5rem; }
.cz-g-4,  .cz-gy-4 { --cz-gutter-y: 1.5rem; }
.cz-g-5,  .cz-gx-5 { --cz-gutter-x: 3rem; }
.cz-g-5,  .cz-gy-5 { --cz-gutter-y: 3rem; }

/* ============================================================
   sm (>= 576px)
   ============================================================ */
@media (min-width: 576px) {
  .cz-col-sm       { flex: 1 0 0%; }
  .cz-col-sm-auto  { flex: 0 0 auto; width: auto; }
  .cz-col-sm-1  { flex: 0 0 auto; width: 8.33333333%; }
  .cz-col-sm-2  { flex: 0 0 auto; width: 16.66666667%; }
  .cz-col-sm-3  { flex: 0 0 auto; width: 25%; }
  .cz-col-sm-4  { flex: 0 0 auto; width: 33.33333333%; }
  .cz-col-sm-5  { flex: 0 0 auto; width: 41.66666667%; }
  .cz-col-sm-6  { flex: 0 0 auto; width: 50%; }
  .cz-col-sm-7  { flex: 0 0 auto; width: 58.33333333%; }
  .cz-col-sm-8  { flex: 0 0 auto; width: 66.66666667%; }
  .cz-col-sm-9  { flex: 0 0 auto; width: 75%; }
  .cz-col-sm-10 { flex: 0 0 auto; width: 83.33333333%; }
  .cz-col-sm-11 { flex: 0 0 auto; width: 91.66666667%; }
  .cz-col-sm-12 { flex: 0 0 auto; width: 100%; }
  .cz-offset-sm-0  { margin-left: 0; }
  .cz-offset-sm-1  { margin-left: 8.33333333%; }
  .cz-offset-sm-2  { margin-left: 16.66666667%; }
  .cz-offset-sm-3  { margin-left: 25%; }
  .cz-offset-sm-4  { margin-left: 33.33333333%; }
  .cz-offset-sm-5  { margin-left: 41.66666667%; }
  .cz-offset-sm-6  { margin-left: 50%; }
  .cz-offset-sm-7  { margin-left: 58.33333333%; }
  .cz-offset-sm-8  { margin-left: 66.66666667%; }
  .cz-offset-sm-9  { margin-left: 75%; }
  .cz-offset-sm-10 { margin-left: 83.33333333%; }
  .cz-offset-sm-11 { margin-left: 91.66666667%; }
  .cz-order-sm-first { order: -1; }
  .cz-order-sm-last  { order: 6; }
  .cz-order-sm-0 { order: 0; }
  .cz-order-sm-1 { order: 1; }
  .cz-order-sm-2 { order: 2; }
  .cz-order-sm-3 { order: 3; }
  .cz-order-sm-4 { order: 4; }
  .cz-order-sm-5 { order: 5; }
}

/* ============================================================
   md (>= 768px)
   ============================================================ */
@media (min-width: 768px) {
  .cz-col-md       { flex: 1 0 0%; }
  .cz-col-md-auto  { flex: 0 0 auto; width: auto; }
  .cz-col-md-1  { flex: 0 0 auto; width: 8.33333333%; }
  .cz-col-md-2  { flex: 0 0 auto; width: 16.66666667%; }
  .cz-col-md-3  { flex: 0 0 auto; width: 25%; }
  .cz-col-md-4  { flex: 0 0 auto; width: 33.33333333%; }
  .cz-col-md-5  { flex: 0 0 auto; width: 41.66666667%; }
  .cz-col-md-6  { flex: 0 0 auto; width: 50%; }
  .cz-col-md-7  { flex: 0 0 auto; width: 58.33333333%; }
  .cz-col-md-8  { flex: 0 0 auto; width: 66.66666667%; }
  .cz-col-md-9  { flex: 0 0 auto; width: 75%; }
  .cz-col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
  .cz-col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
  .cz-col-md-12 { flex: 0 0 auto; width: 100%; }
  .cz-offset-md-0  { margin-left: 0; }
  .cz-offset-md-1  { margin-left: 8.33333333%; }
  .cz-offset-md-2  { margin-left: 16.66666667%; }
  .cz-offset-md-3  { margin-left: 25%; }
  .cz-offset-md-4  { margin-left: 33.33333333%; }
  .cz-offset-md-5  { margin-left: 41.66666667%; }
  .cz-offset-md-6  { margin-left: 50%; }
  .cz-offset-md-7  { margin-left: 58.33333333%; }
  .cz-offset-md-8  { margin-left: 66.66666667%; }
  .cz-offset-md-9  { margin-left: 75%; }
  .cz-offset-md-10 { margin-left: 83.33333333%; }
  .cz-offset-md-11 { margin-left: 91.66666667%; }
  .cz-order-md-first { order: -1; }
  .cz-order-md-last  { order: 6; }
  .cz-order-md-0 { order: 0; }
  .cz-order-md-1 { order: 1; }
  .cz-order-md-2 { order: 2; }
  .cz-order-md-3 { order: 3; }
  .cz-order-md-4 { order: 4; }
  .cz-order-md-5 { order: 5; }
}

/* ============================================================
   lg (>= 992px)
   ============================================================ */
@media (min-width: 992px) {
  .cz-col-lg       { flex: 1 0 0%; }
  .cz-col-lg-auto  { flex: 0 0 auto; width: auto; }
  .cz-col-lg-1  { flex: 0 0 auto; width: 8.33333333%; }
  .cz-col-lg-2  { flex: 0 0 auto; width: 16.66666667%; }
  .cz-col-lg-3  { flex: 0 0 auto; width: 25%; }
  .cz-col-lg-4  { flex: 0 0 auto; width: 33.33333333%; }
  .cz-col-lg-5  { flex: 0 0 auto; width: 41.66666667%; }
  .cz-col-lg-6  { flex: 0 0 auto; width: 50%; }
  .cz-col-lg-7  { flex: 0 0 auto; width: 58.33333333%; }
  .cz-col-lg-8  { flex: 0 0 auto; width: 66.66666667%; }
  .cz-col-lg-9  { flex: 0 0 auto; width: 75%; }
  .cz-col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .cz-col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
  .cz-col-lg-12 { flex: 0 0 auto; width: 100%; }
  .cz-offset-lg-0  { margin-left: 0; }
  .cz-offset-lg-1  { margin-left: 8.33333333%; }
  .cz-offset-lg-2  { margin-left: 16.66666667%; }
  .cz-offset-lg-3  { margin-left: 25%; }
  .cz-offset-lg-4  { margin-left: 33.33333333%; }
  .cz-offset-lg-5  { margin-left: 41.66666667%; }
  .cz-offset-lg-6  { margin-left: 50%; }
  .cz-offset-lg-7  { margin-left: 58.33333333%; }
  .cz-offset-lg-8  { margin-left: 66.66666667%; }
  .cz-offset-lg-9  { margin-left: 75%; }
  .cz-offset-lg-10 { margin-left: 83.33333333%; }
  .cz-offset-lg-11 { margin-left: 91.66666667%; }
  .cz-order-lg-first { order: -1; }
  .cz-order-lg-last  { order: 6; }
  .cz-order-lg-0 { order: 0; }
  .cz-order-lg-1 { order: 1; }
  .cz-order-lg-2 { order: 2; }
  .cz-order-lg-3 { order: 3; }
  .cz-order-lg-4 { order: 4; }
  .cz-order-lg-5 { order: 5; }
}

/* ============================================================
   xl (>= 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .cz-col-xl       { flex: 1 0 0%; }
  .cz-col-xl-auto  { flex: 0 0 auto; width: auto; }
  .cz-col-xl-1  { flex: 0 0 auto; width: 8.33333333%; }
  .cz-col-xl-2  { flex: 0 0 auto; width: 16.66666667%; }
  .cz-col-xl-3  { flex: 0 0 auto; width: 25%; }
  .cz-col-xl-4  { flex: 0 0 auto; width: 33.33333333%; }
  .cz-col-xl-5  { flex: 0 0 auto; width: 41.66666667%; }
  .cz-col-xl-6  { flex: 0 0 auto; width: 50%; }
  .cz-col-xl-7  { flex: 0 0 auto; width: 58.33333333%; }
  .cz-col-xl-8  { flex: 0 0 auto; width: 66.66666667%; }
  .cz-col-xl-9  { flex: 0 0 auto; width: 75%; }
  .cz-col-xl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .cz-col-xl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .cz-col-xl-12 { flex: 0 0 auto; width: 100%; }
  .cz-offset-xl-0  { margin-left: 0; }
  .cz-offset-xl-1  { margin-left: 8.33333333%; }
  .cz-offset-xl-2  { margin-left: 16.66666667%; }
  .cz-offset-xl-3  { margin-left: 25%; }
  .cz-offset-xl-4  { margin-left: 33.33333333%; }
  .cz-offset-xl-5  { margin-left: 41.66666667%; }
  .cz-offset-xl-6  { margin-left: 50%; }
  .cz-offset-xl-7  { margin-left: 58.33333333%; }
  .cz-offset-xl-8  { margin-left: 66.66666667%; }
  .cz-offset-xl-9  { margin-left: 75%; }
  .cz-offset-xl-10 { margin-left: 83.33333333%; }
  .cz-offset-xl-11 { margin-left: 91.66666667%; }
  .cz-order-xl-first { order: -1; }
  .cz-order-xl-last  { order: 6; }
  .cz-order-xl-0 { order: 0; }
  .cz-order-xl-1 { order: 1; }
  .cz-order-xl-2 { order: 2; }
  .cz-order-xl-3 { order: 3; }
  .cz-order-xl-4 { order: 4; }
  .cz-order-xl-5 { order: 5; }
}

/* ============================================================
   xxl (>= 1400px)
   ============================================================ */
@media (min-width: 1400px) {
  .cz-col-xxl       { flex: 1 0 0%; }
  .cz-col-xxl-auto  { flex: 0 0 auto; width: auto; }
  .cz-col-xxl-1  { flex: 0 0 auto; width: 8.33333333%; }
  .cz-col-xxl-2  { flex: 0 0 auto; width: 16.66666667%; }
  .cz-col-xxl-3  { flex: 0 0 auto; width: 25%; }
  .cz-col-xxl-4  { flex: 0 0 auto; width: 33.33333333%; }
  .cz-col-xxl-5  { flex: 0 0 auto; width: 41.66666667%; }
  .cz-col-xxl-6  { flex: 0 0 auto; width: 50%; }
  .cz-col-xxl-7  { flex: 0 0 auto; width: 58.33333333%; }
  .cz-col-xxl-8  { flex: 0 0 auto; width: 66.66666667%; }
  .cz-col-xxl-9  { flex: 0 0 auto; width: 75%; }
  .cz-col-xxl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .cz-col-xxl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .cz-col-xxl-12 { flex: 0 0 auto; width: 100%; }
  .cz-offset-xxl-0  { margin-left: 0; }
  .cz-offset-xxl-1  { margin-left: 8.33333333%; }
  .cz-offset-xxl-2  { margin-left: 16.66666667%; }
  .cz-offset-xxl-3  { margin-left: 25%; }
  .cz-offset-xxl-4  { margin-left: 33.33333333%; }
  .cz-offset-xxl-5  { margin-left: 41.66666667%; }
  .cz-offset-xxl-6  { margin-left: 50%; }
  .cz-offset-xxl-7  { margin-left: 58.33333333%; }
  .cz-offset-xxl-8  { margin-left: 66.66666667%; }
  .cz-offset-xxl-9  { margin-left: 75%; }
  .cz-offset-xxl-10 { margin-left: 83.33333333%; }
  .cz-offset-xxl-11 { margin-left: 91.66666667%; }
  .cz-order-xxl-first { order: -1; }
  .cz-order-xxl-last  { order: 6; }
  .cz-order-xxl-0 { order: 0; }
  .cz-order-xxl-1 { order: 1; }
  .cz-order-xxl-2 { order: 2; }
  .cz-order-xxl-3 { order: 3; }
  .cz-order-xxl-4 { order: 4; }
  .cz-order-xxl-5 { order: 5; }
}

/* ============================================================
   CascadeForest — Cascade Jade design system
   Dark forest greens + gold  |  prefix: cz-
   ============================================================ */

/* ── 1. Design tokens ───────────────────────────────────────── */
:root {
  /* Grid vars already set above; site vars below */
  --cz-bg-deep:      #071510;
  --cz-bg-mid:       #0d2418;
  --cz-bg-card:      #122e1d;
  --cz-bg-card2:     #1a3d28;
  --cz-accent:       #c9a83c;
  --cz-accent-hov:   #e0be55;
  --cz-jade:         #1e8c68;
  --cz-jade-lt:      #26b080;
  --cz-text:         #e6f0ea;
  --cz-text-muted:   #7fa598;
  --cz-ring:         #132a1c;
  --cz-nav-bg:       rgba(7,21,16,0.96);
  --cz-warn:         #e8502a;
  --cz-border:       rgba(201,168,60,0.25);
  --cz-radius-sm:    6px;
  --cz-radius:       10px;
  --cz-radius-lg:    16px;
  --cz-shadow:       0 4px 24px rgba(0,0,0,0.45);
  --cz-trans:        0.22s ease;
}

/* ── 2. Reset ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cz-text);
  background-color: var(--cz-bg-deep);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--cz-text);
}

a {
  color: var(--cz-accent);
  text-decoration: none;
  transition: color var(--cz-trans);
}
a:hover { color: var(--cz-accent-hov); }

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

ul, ol { list-style: none; }

input, button, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
}

button { cursor: pointer; }

/* ── 3. Responsible-play topbar ─────────────────────────────── */
.cz-resp-topbar {
  width: 100%;
  background: var(--cz-warn);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}

/* ── 4. Navigation ──────────────────────────────────────────── */
.cz-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cz-nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cz-border);
  max-height: 60px;
}

.cz-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
}

.cz-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cz-accent);
  text-decoration: none;
  white-space: nowrap;
}
.cz-nav__logo img {
  height: 36px;
  width: auto;
}

.cz-nav__links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.cz-nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cz-text);
  letter-spacing: 0.02em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--cz-trans), border-color var(--cz-trans);
}
.cz-nav__links a:hover {
  color: var(--cz-accent);
  border-bottom-color: var(--cz-accent);
}

.cz-nav__cta {
  display: none;
  align-items: center;
}

.cz-nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.cz-nav__burger span {
  display: block;
  height: 2px;
  background: var(--cz-text);
  border-radius: 2px;
  transition: transform var(--cz-trans), opacity var(--cz-trans);
}

@media (min-width: 768px) {
  .cz-nav__links { display: flex; }
  .cz-nav__cta   { display: flex; }
  .cz-nav__burger { display: none; }
}

/* ── 5. Mobile nav drawer ───────────────────────────────────── */
.cz-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cz-bg-mid);
  padding: 80px 28px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.cz-mobile-nav.cz-open,
.cz-mobile-nav.cz-mobile-nav--open {
  display: flex;
}
.cz-mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cz-text);
  border-bottom: 1px solid var(--cz-border);
}
.cz-mobile-nav a:hover { color: var(--cz-accent); }

/* ── 6. Buttons ─────────────────────────────────────────────── */
.cz-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  background: var(--cz-accent);
  color: var(--cz-bg-deep);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--cz-radius);
  border: 2px solid var(--cz-accent);
  transition: background var(--cz-trans), color var(--cz-trans), transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
}
.cz-btn-primary:hover {
  background: var(--cz-accent-hov);
  border-color: var(--cz-accent-hov);
  color: var(--cz-bg-deep);
  transform: translateY(-1px);
}

.cz-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  background: transparent;
  color: var(--cz-accent);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--cz-radius);
  border: 2px solid var(--cz-accent);
  transition: background var(--cz-trans), color var(--cz-trans);
  text-decoration: none;
  white-space: nowrap;
}
.cz-btn-secondary:hover {
  background: var(--cz-accent);
  color: var(--cz-bg-deep);
}

/* ── 7. Hero section ────────────────────────────────────────── */
.cz-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,21,16,0.92) 0%,
    rgba(13,36,24,0.80) 55%,
    rgba(30,140,104,0.20) 100%
  );
  z-index: 1;
}

.cz-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 20px 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .cz-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 88px 20px 72px;
    gap: 56px;
  }
}

.cz-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cz-text);
  margin-bottom: 16px;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .cz-hero h1 { font-size: 3rem; }
}
@media (min-width: 992px) {
  .cz-hero h1 { font-size: 3.6rem; }
}

.cz-hero__subtitle {
  font-size: 1.05rem;
  color: var(--cz-text-muted);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.6;
}

.cz-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── 8. Hero game preview card ──────────────────────────────── */
.cz-hero__game-preview {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-lg);
  padding: 24px;
  box-shadow: var(--cz-shadow);
  text-align: center;
  display: inline-block;
  margin-top: 28px;
}
.cz-hero__game-preview h3 {
  font-size: 0.95rem;
  color: var(--cz-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.cz-slot-preview-reel {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cz-slot-preview-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--cz-bg-card2);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-sm);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ── 9. Section typography helpers ─────────────────────────── */
.cz-section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cz-jade-lt);
  margin-bottom: 10px;
}

.cz-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--cz-text);
  margin-bottom: 14px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cz-section-title { font-size: 2.4rem; }
}

.cz-section-lead {
  font-size: 1rem;
  color: var(--cz-text-muted);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 40px;
}

/* ── 10. Features section ───────────────────────────────────── */
.cz-features {
  padding: 56px 20px;
  background: var(--cz-bg-mid);
}

@media (min-width: 768px) {
  .cz-features { padding: 88px 0; }
}

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

@media (min-width: 576px) {
  .cz-features__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .cz-features__grid { grid-template-columns: repeat(3, 1fr); }
}

.cz-feat-card {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-lg);
  padding: 28px 24px;
  transition: transform var(--cz-trans), box-shadow var(--cz-trans);
}
.cz-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.cz-feat-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.cz-feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cz-accent);
  margin-bottom: 8px;
}
.cz-feat-card p {
  font-size: 0.92rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
}

/* ── 11. About section ──────────────────────────────────────── */
.cz-about {
  padding: 56px 20px;
  background: var(--cz-bg-deep);
}

@media (min-width: 768px) {
  .cz-about { padding: 88px 0; }
}

.cz-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .cz-about__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.cz-about__img {
  border-radius: var(--cz-radius-lg);
  overflow: hidden;
  box-shadow: var(--cz-shadow);
}
.cz-about__img img {
  width: 100%;
  height: auto;
  display: block;
}

.cz-about__body p {
  color: var(--cz-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.cz-about__body p:last-child { margin-bottom: 0; }

/* ── 12. Platform / Stats strip ─────────────────────────────── */
.cz-platform {
  padding: 56px 20px;
  background: var(--cz-bg-mid);
  border-top: 1px solid var(--cz-border);
  border-bottom: 1px solid var(--cz-border);
}

@media (min-width: 768px) {
  .cz-platform { padding: 80px 0; }
}

.cz-platform__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .cz-platform__inner { grid-template-columns: 1fr 1fr 1fr; }
}

.cz-platform__stat {
  padding: 24px 20px;
}
.cz-platform__stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--cz-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.cz-platform__stat span {
  font-size: 0.9rem;
  color: var(--cz-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── 13. Why section ────────────────────────────────────────── */
.cz-why {
  padding: 56px 20px;
  background: var(--cz-bg-deep);
}

@media (min-width: 768px) {
  .cz-why { padding: 88px 0; }
}

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

@media (min-width: 576px) {
  .cz-why__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .cz-why__grid { grid-template-columns: repeat(3, 1fr); }
}

.cz-why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius);
  padding: 22px 20px;
}
.cz-why-card__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cz-jade);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}
.cz-why-card__text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cz-text);
  margin-bottom: 4px;
}
.cz-why-card__text p {
  font-size: 0.88rem;
  color: var(--cz-text-muted);
  line-height: 1.55;
}

/* ── 14. Updates / News grid ────────────────────────────────── */
.cz-updates {
  padding: 56px 20px;
  background: var(--cz-bg-mid);
}

@media (min-width: 768px) {
  .cz-updates { padding: 80px 0; }
}

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

@media (min-width: 576px) {
  .cz-updates__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .cz-updates__grid { grid-template-columns: repeat(4, 1fr); }
}

.cz-upd-card {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-lg);
  overflow: hidden;
  transition: transform var(--cz-trans);
}
.cz-upd-card:hover { transform: translateY(-3px); }

.cz-upd-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.cz-upd-card__body {
  padding: 18px 16px 20px;
}
.cz-upd-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cz-jade-lt);
  margin-bottom: 6px;
}
.cz-upd-card__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cz-text);
  margin-bottom: 8px;
  line-height: 1.35;
}
.cz-upd-card__body p {
  font-size: 0.85rem;
  color: var(--cz-text-muted);
  line-height: 1.55;
}

/* ── 15. FAQ ────────────────────────────────────────────────── */
.cz-faq {
  padding: 56px 20px;
  background: var(--cz-bg-deep);
}

@media (min-width: 768px) {
  .cz-faq { padding: 80px 0; }
}

.cz-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.cz-faq-item {
  border-bottom: 1px solid var(--cz-border);
}
.cz-faq-item:last-child { border-bottom: none; }

.cz-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--cz-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--cz-trans);
}
.cz-faq-item__q:hover { color: var(--cz-accent); }

.cz-faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--cz-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--cz-accent);
  transition: transform var(--cz-trans);
}
.cz-faq-item.cz-open .cz-faq-item__icon {
  transform: rotate(45deg);
}

.cz-faq-item__a {
  display: none;
  padding: 0 0 18px;
  color: var(--cz-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.cz-faq-item.cz-open .cz-faq-item__a {
  display: block;
}

/* ── 16. Context / Info section ─────────────────────────────── */
.cz-context {
  padding: 56px 20px;
  background: var(--cz-bg-mid);
  border-top: 1px solid var(--cz-border);
}

@media (min-width: 768px) {
  .cz-context { padding: 72px 0; }
}

.cz-context__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .cz-context__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 17. Footer ─────────────────────────────────────────────── */
.cz-footer {
  background: var(--cz-bg-deep);
  border-top: 1px solid var(--cz-border);
  padding: 56px 20px 0;
}

@media (min-width: 768px) {
  .cz-footer { padding: 72px 0 0; }
}

.cz-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--cz-border);
}

@media (min-width: 576px) {
  .cz-footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .cz-footer__cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.cz-footer__brand p {
  font-size: 0.88rem;
  color: var(--cz-text-muted);
  line-height: 1.65;
  margin-top: 14px;
}

.cz-footer__col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cz-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cz-footer__col ul li + li { margin-top: 8px; }
.cz-footer__col a {
  font-size: 0.88rem;
  color: var(--cz-text-muted);
  transition: color var(--cz-trans);
}
.cz-footer__col a:hover { color: var(--cz-text); }

/* Footer RG block */
.cz-footer__rg {
  padding: 40px 0;
  border-bottom: 1px solid var(--cz-border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .cz-footer__rg { grid-template-columns: 1fr 1fr; align-items: center; }
}

.cz-footer__rg-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cz-text-muted);
  margin-bottom: 14px;
}

.cz-footer-regulators {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Logo frames — dark background so light SVG logos are visible (Rule A0) */
.cz-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cz-bg-card2);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-sm);
  padding: 10px 14px;
}
.cz-logo-frame img {
  height: 36px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
}

.cz-footer__disclaimer {
  padding: 28px 0;
  border-bottom: 1px solid var(--cz-border);
}
.cz-footer__disclaimer p {
  font-size: 0.78rem;
  color: var(--cz-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.cz-footer__disclaimer p:last-child { margin-bottom: 0; }

.cz-footer__bottom {
  padding: 20px 0;
}
.cz-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--cz-text-muted);
}
.cz-footer__bottom-inner a {
  color: var(--cz-text-muted);
}
.cz-footer__bottom-inner a:hover { color: var(--cz-text); }

/* ── 18. Age verification overlay ──────────────────────────── */
.cz-age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7,21,16,0.97);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.cz-age-overlay.cz-open {
  display: flex;
}

.cz-age-overlay__card {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-lg);
  padding: 36px 28px;
  width: 100%;
  max-width: min(480px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 16px 64px rgba(0,0,0,0.6);
}

.cz-age-overlay__badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cz-warn);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cz-age-overlay__card h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--cz-text);
}
.cz-age-overlay__card p {
  font-size: 0.9rem;
  color: var(--cz-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.cz-age-overlay__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 400px) {
  .cz-age-overlay__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cz-age-yes,
.cz-age-no {
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--cz-radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--cz-trans);
}
.cz-age-yes {
  background: var(--cz-accent);
  color: var(--cz-bg-deep);
  border: 2px solid var(--cz-accent);
}
.cz-age-yes:hover { opacity: 0.88; }
.cz-age-no {
  background: transparent;
  color: var(--cz-text-muted);
  border: 2px solid var(--cz-border);
}
.cz-age-no:hover { border-color: var(--cz-text-muted); }

/* ── 19. Cookie banner ──────────────────────────────────────── */
.cz-cookie-banner {
  display: none;
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  width: auto;
  z-index: 5000;
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-lg);
  padding: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.cz-cookie-banner.cz-open { display: block; }

@media (min-width: 600px) {
  .cz-cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 380px;
    padding: 24px;
  }
}

.cz-cookie-banner p {
  font-size: 0.84rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cz-cookie-banner p a { color: var(--cz-accent); }

.cz-cookie-banner__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cz-ck-accept,
.cz-ck-decline {
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--cz-radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--cz-trans);
}
.cz-ck-accept {
  background: var(--cz-accent);
  color: var(--cz-bg-deep);
  border: 2px solid var(--cz-accent);
}
.cz-ck-accept:hover { opacity: 0.88; }
.cz-ck-decline {
  background: transparent;
  color: var(--cz-text-muted);
  border: 2px solid var(--cz-border);
}
.cz-ck-decline:hover { color: var(--cz-text); }

.cz-cookie-reopen {
  display: none;
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 4999;
  background: var(--cz-bg-card2);
  border: 1px solid var(--cz-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.cz-cookie-reopen.cz-visible { display: flex; }

/* ── 20. Slot machine widget ────────────────────────────────── */
.cz-slot-machine {
  max-width: 600px;
  margin: 0 auto;
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-lg);
  padding: 28px 20px 32px;
  text-align: center;
  box-shadow: var(--cz-shadow);
}
.cz-slot-machine h2 {
  font-size: 1.3rem;
  color: var(--cz-accent);
  margin-bottom: 6px;
}
.cz-slot-machine__subtitle {
  font-size: 0.88rem;
  color: var(--cz-text-muted);
  margin-bottom: 20px;
}

.cz-slot-reels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .cz-slot-reels { grid-template-columns: repeat(5, 1fr); }
}

.cz-slot-col {
  background: var(--cz-bg-deep);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-sm);
  height: 180px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (min-width: 480px) {
  .cz-slot-col { height: 280px; }
}

.cz-slot-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  font-size: 2rem;
  flex-shrink: 0;
}

.cz-slot-spin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 40px;
  background: var(--cz-jade);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--cz-radius);
  border: none;
  cursor: pointer;
  transition: background var(--cz-trans), transform 0.1s;
  letter-spacing: 0.04em;
}
.cz-slot-spin-btn:hover {
  background: var(--cz-jade-lt);
  transform: scale(1.03);
}
.cz-slot-spin-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.cz-slot-machine__paytable {
  margin-top: 24px;
  border-top: 1px solid var(--cz-border);
  padding-top: 20px;
  text-align: left;
}
.cz-slot-machine__paytable h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cz-text-muted);
  margin-bottom: 10px;
}
.cz-paytable-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,168,60,0.10);
  font-size: 0.85rem;
}
.cz-paytable-row:last-child { border-bottom: none; }
.cz-paytable-row span:last-child {
  color: var(--cz-accent);
  font-weight: 700;
}

/* ── 21. Sub-page hero ──────────────────────────────────────── */
.cz-sub-hero {
  position: relative;
  padding: 64px 20px;
  background: var(--cz-bg-mid);
  overflow: hidden;
  text-align: center;
}
.cz-sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,21,16,0.6) 0%, transparent 100%);
  z-index: 1;
}
.cz-sub-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cz-sub-hero { padding: 88px 0; }
}

/* ── 22. Sub-page body ──────────────────────────────────────── */
.cz-sub-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 20px;
}

@media (min-width: 768px) {
  .cz-sub-main { padding: 72px 20px; }
}

.cz-sub-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--cz-text);
  margin: 40px 0 14px;
}
.cz-sub-h2:first-child { margin-top: 0; }

.cz-sub-p {
  font-size: 0.97rem;
  color: var(--cz-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.cz-sub-list {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 20px;
}
.cz-sub-list li {
  font-size: 0.95rem;
  color: var(--cz-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.cz-sub-list li::marker { color: var(--cz-jade-lt); }

/* ── 23. Team grid ──────────────────────────────────────────── */
.cz-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 576px) {
  .cz-team-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.cz-team-card {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-lg);
  overflow: hidden;
  text-align: center;
}
.cz-team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.cz-team-card__body {
  padding: 18px 16px;
}
.cz-team-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cz-text);
  margin-bottom: 4px;
}
.cz-team-card__body p {
  font-size: 0.84rem;
  color: var(--cz-jade-lt);
}

/* ── 24. Three-column generic layout ────────────────────────── */
.cz-three-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .cz-three-col { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── 25. Responsible gaming section ─────────────────────────── */
.cz-rg {
  padding: 56px 20px;
  background: var(--cz-bg-mid);
  border-top: 1px solid var(--cz-border);
}

@media (min-width: 768px) {
  .cz-rg { padding: 80px 0; }
}

.cz-rg__intro {
  font-size: 0.97rem;
  color: var(--cz-text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 780px;
}

.cz-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .cz-rules-grid { grid-template-columns: 1fr 1fr; }
}

.cz-rule-card {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius);
  padding: 22px 20px;
}
.cz-rule-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cz-jade-lt);
  margin-bottom: 8px;
}
.cz-rule-card p {
  font-size: 0.88rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
}

.cz-regcard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .cz-regcard-grid { grid-template-columns: 1fr 1fr; }
}

.cz-regcard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cz-bg-card2);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius);
  padding: 20px 18px;
}
.cz-regcard__logo {
  flex-shrink: 0;
}
.cz-regcard__text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cz-text);
  margin-bottom: 4px;
}
.cz-regcard__text p {
  font-size: 0.84rem;
  color: var(--cz-text-muted);
  line-height: 1.55;
}
.cz-regcard__text a {
  font-size: 0.84rem;
  color: var(--cz-jade-lt);
  display: inline-block;
  margin-top: 4px;
}

/* ── 26. Contact block ──────────────────────────────────────── */
.cz-contact-block {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-lg);
  padding: 32px 28px;
  margin-bottom: 32px;
}
.cz-contact-block h3 {
  font-size: 1.1rem;
  color: var(--cz-text);
  margin-bottom: 14px;
}
.cz-contact-block p {
  font-size: 0.92rem;
  color: var(--cz-text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.cz-contact-block a { color: var(--cz-jade-lt); }

/* ── 27. Self-assessment check ──────────────────────────────── */
.cz-selfcheck {
  background: var(--cz-bg-card2);
  border: 1px solid var(--cz-border);
  border-left: 4px solid var(--cz-jade);
  border-radius: var(--cz-radius);
  padding: 24px 22px;
  margin-bottom: 28px;
}
.cz-selfcheck h3 {
  font-size: 1rem;
  color: var(--cz-jade-lt);
  margin-bottom: 14px;
}
.cz-selfcheck ol {
  list-style: decimal;
  padding-left: 20px;
}
.cz-selfcheck ol li {
  font-size: 0.9rem;
  color: var(--cz-text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}

/* ── 28. 404 callout ────────────────────────────────────────── */
.cz-not-callout {
  text-align: center;
  padding: 80px 20px;
  max-width: 560px;
  margin: 0 auto;
}
.cz-not-callout__code {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 900;
  color: var(--cz-border);
  line-height: 1;
  margin-bottom: 16px;
}
.cz-not-callout h1 {
  font-size: 1.8rem;
  color: var(--cz-text);
  margin-bottom: 14px;
}
.cz-not-callout p {
  font-size: 0.97rem;
  color: var(--cz-text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ── 29. Cookie policy table ────────────────────────────────── */
.cz-cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}
.cz-cookie-table thead th {
  background: var(--cz-bg-card2);
  color: var(--cz-accent);
  font-weight: 700;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid var(--cz-border);
  white-space: nowrap;
}
.cz-cookie-table tbody td {
  padding: 10px 14px;
  color: var(--cz-text-muted);
  border-bottom: 1px solid rgba(201,168,60,0.10);
  vertical-align: top;
  line-height: 1.55;
}
.cz-cookie-table tbody tr:hover td {
  background: var(--cz-bg-card);
}

/* ── 30. Utility classes ────────────────────────────────────── */
.cz-text-center { text-align: center; }
.cz-text-accent  { color: var(--cz-accent); }
.cz-text-muted   { color: var(--cz-text-muted); }
.cz-mt-0  { margin-top: 0; }
.cz-mt-8  { margin-top: 8px; }
.cz-mt-16 { margin-top: 16px; }
.cz-mt-24 { margin-top: 24px; }
.cz-mt-32 { margin-top: 32px; }
.cz-mb-0  { margin-bottom: 0; }
.cz-mb-8  { margin-bottom: 8px; }
.cz-mb-16 { margin-bottom: 16px; }
.cz-mb-24 { margin-bottom: 24px; }
.cz-mb-32 { margin-bottom: 32px; }
.cz-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* == SUPPLEMENT: additional component classes == */

/* ── S1. Button system ──────────────────────────────────────── */
.cz-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 5px;
  min-height: 48px;
  cursor: pointer;
  transition: background var(--cz-trans), color var(--cz-trans), border-color var(--cz-trans), transform 0.15s;
  text-decoration: none;
  border: none;
  line-height: 1.2;
  white-space: nowrap;
  font-family: inherit;
}

.cz-btn--primary {
  background: var(--cz-accent);
  color: var(--cz-bg-deep);
}
.cz-btn--primary:hover {
  background: var(--cz-accent-hov);
  color: var(--cz-bg-deep);
  transform: translateY(-1px);
}

.cz-btn--secondary {
  background: transparent;
  color: var(--cz-accent);
  border: 2px solid var(--cz-accent);
}
.cz-btn--secondary:hover {
  background: var(--cz-accent);
  color: var(--cz-bg-deep);
}

.cz-btn--outline {
  background: transparent;
  color: var(--cz-text);
  border: 1px solid var(--cz-border);
}
.cz-btn--outline:hover {
  border-color: var(--cz-accent);
  color: var(--cz-accent);
}

.cz-btn--ghost {
  background: transparent;
  color: var(--cz-text-muted);
  border: none;
}
.cz-btn--ghost:hover {
  color: var(--cz-text);
}

.cz-btn--rg {
  background: var(--cz-warn);
  color: #fff;
}
.cz-btn--rg:hover {
  background: #c93e1e;
  color: #fff;
}

.cz-btn--sm {
  min-height: 44px;
  padding: 9px 18px;
  font-size: 14px;
}

.cz-btn--lg {
  min-height: 56px;
  padding: 16px 36px;
  font-size: 17px;
}

.cz-btn--outline-light {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--cz-text);
  background: transparent;
}
.cz-btn--outline-light:hover {
  border-color: var(--cz-accent);
  color: var(--cz-accent);
}

.cz-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cz-accent);
  color: var(--cz-bg-deep);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  min-height: 56px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background var(--cz-trans), transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.cz-play-btn:hover {
  background: var(--cz-accent-hov);
  color: var(--cz-bg-deep);
  transform: translateY(-1px);
}

/* ── S2. Age-gate overlay (custom modal) ─────────────────────── */
.cz-age-box {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-lg);
  padding: 36px 28px;
  width: 100%;
  max-width: min(480px, calc(100vw - 24px));
  text-align: center;
  box-shadow: 0 16px 64px rgba(0,0,0,0.6);
}

.cz-age-logo {
  margin-bottom: 20px;
}
.cz-age-logo img {
  margin: 0 auto;
}

.cz-age-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 14px;
}
@media (min-width: 400px) {
  .cz-age-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.cz-age-disclaimer {
  font-size: 0.8rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
}
.cz-age-disclaimer a { color: var(--cz-accent); }

/* ── S3. Cookie banner inner ─────────────────────────────────── */
.cz-cookie-inner {
  padding: 4px 0;
}

.cz-cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ── S4. Nav link variants ───────────────────────────────────── */
.cz-nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cz-text);
  letter-spacing: 0.02em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--cz-trans), border-color var(--cz-trans);
  text-decoration: none;
}
.cz-nav__link:hover {
  color: var(--cz-accent);
  border-bottom-color: var(--cz-accent);
}
.cz-nav__link--active {
  color: var(--cz-accent);
  border-bottom-color: var(--cz-accent);
}
.cz-nav__link--rg {
  color: var(--cz-warn);
}
.cz-nav__link--rg:hover {
  color: var(--cz-warn);
  border-bottom-color: var(--cz-warn);
}

.cz-mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cz-text);
  border-bottom: 1px solid var(--cz-border);
  text-decoration: none;
  transition: color var(--cz-trans);
}
.cz-mobile-nav__link:hover { color: var(--cz-accent); }

/* ── S5. Sub-hero (sub-page hero banner) ─────────────────────── */
.cz-subhero {
  position: relative;
  background: var(--cz-bg-mid);
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cz-subhero--plain {
  background: var(--cz-bg-deep);
}

.cz-subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,21,16,0.65) 0%, rgba(7,21,16,0.9) 100%);
  z-index: 1;
}

.cz-subhero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cz-subhero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 20px 48px;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .cz-subhero__content { padding: 88px 20px 64px; }
}

.cz-subhero__h1 {
  font-size: 2rem;
  color: var(--cz-accent);
  margin-bottom: 14px;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cz-subhero__h1 { font-size: 2.8rem; }
}

.cz-subhero__lead {
  color: var(--cz-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── S6. Hero inner classes ──────────────────────────────────── */
.cz-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 20px 48px;
}

.cz-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.cz-hero__h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cz-text);
  margin-bottom: 16px;
  line-height: 1.1;
  font-family: 'Playfair Display', Georgia, serif;
}

@media (min-width: 768px) {
  .cz-hero__h1 { font-size: 3rem; }
}
@media (min-width: 992px) {
  .cz-hero__h1 { font-size: 3.6rem; }
}

.cz-hero__sub {
  font-size: 1.1rem;
  color: var(--cz-text-muted);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.6;
}

.cz-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ── S7. About inner layout helpers ─────────────────────────── */
.cz-about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .cz-about__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.cz-about__img-wrap {
  border-radius: var(--cz-radius-lg);
  overflow: hidden;
  box-shadow: var(--cz-shadow);
}
.cz-about__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.cz-about__text {
  color: var(--cz-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}
.cz-about__text p {
  margin-bottom: 16px;
}
.cz-about__text p:last-child { margin-bottom: 0; }
.cz-about__text h2 {
  font-size: 1.7rem;
  color: var(--cz-accent);
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}
@media (min-width: 768px) {
  .cz-about__text h2 { font-size: 2.1rem; }
}

/* ── S8. Platform grid helper ───────────────────────────────── */
.cz-platform__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cz-platform__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── S9. Feature cards ───────────────────────────────────────── */
.cz-feature-card {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform 0.2s;
}
.cz-feature-card:hover { transform: translateY(-3px); }

.cz-feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cz-ring);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--cz-accent);
  margin-bottom: 16px;
}

.cz-feature-card__title {
  font-size: 1.05rem;
  color: var(--cz-accent);
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}

.cz-feature-card__body {
  font-size: 0.92rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
}

/* ── S10. How-it-works section ───────────────────────────────── */
.cz-how {
  background: var(--cz-bg-deep);
  padding: 56px 20px;
}

@media (min-width: 768px) {
  .cz-how { padding: 80px 0; }
}

.cz-how__steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 576px) {
  .cz-how__steps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
  .cz-how__steps { grid-template-columns: repeat(3, 1fr); }
}

.cz-how__step {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: 10px;
  padding: 24px;
  position: relative;
  list-style: none;
}

.cz-how__step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  color: rgba(201,168,60,0.2);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.cz-how__step-title {
  font-size: 1rem;
  color: var(--cz-accent);
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}

.cz-how__step-body {
  font-size: 0.9rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
}

/* ── S11. Stats / platform cards ─────────────────────────────── */
.cz-stat-card {
  background: var(--cz-bg-card2);
  border: 1px solid var(--cz-border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}

.cz-stat-card__value {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cz-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.cz-stat-card__label {
  display: block;
  font-size: 1rem;
  color: var(--cz-accent);
  margin-bottom: 8px;
}

.cz-stat-card__body {
  font-size: 0.88rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
}

/* ── S12. Why-us section ─────────────────────────────────────── */
.cz-why-us {
  background: var(--cz-bg-deep);
  padding: 56px 20px;
}

@media (min-width: 768px) {
  .cz-why-us { padding: 88px 0; }
}

.cz-why-us__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .cz-why-us__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
  .cz-why-us__grid { grid-template-columns: repeat(3, 1fr); }
}

.cz-why-card__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cz-jade);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

.cz-why-card__title {
  font-size: 1rem;
  color: var(--cz-accent);
  margin-bottom: 8px;
  font-weight: 700;
}

/* ── S13. Update cards ───────────────────────────────────────── */
.cz-update-card {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--cz-trans);
}
.cz-update-card:hover { transform: translateY(-3px); }

.cz-update-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.cz-update-card__body {
  padding: 16px;
}

.cz-update-card__tag {
  display: block;
  font-size: 11px;
  color: var(--cz-jade-lt);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}

.cz-update-card__title {
  font-size: 0.95rem;
  color: var(--cz-accent);
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.35;
}

/* ── S14. FAQ alt names ──────────────────────────────────────── */
.cz-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.cz-faq__item {
  border-bottom: 1px solid var(--cz-border);
}
.cz-faq__item:last-child { border-bottom: none; }
.cz-faq__item summary { list-style: none; }
.cz-faq__item summary::-webkit-details-marker { display: none; }

.cz-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--cz-text);
  min-height: 56px;
  transition: color var(--cz-trans);
  gap: 16px;
}
.cz-faq__q:hover { color: var(--cz-accent); }

.cz-faq__icon {
  color: var(--cz-accent);
  font-size: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.cz-faq__item[open] .cz-faq__icon,
.cz-faq__item.cz-open .cz-faq__icon {
  transform: rotate(45deg);
}

.cz-faq__a {
  display: none;
  padding: 0 0 18px;
  color: var(--cz-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cz-faq__item[open] .cz-faq__a,
.cz-faq__item.cz-open .cz-faq__a {
  display: block;
}

.cz-faq__a p { margin-bottom: 10px; }
.cz-faq__a p:last-child { margin-bottom: 0; }

/* ── S15. Context cards ──────────────────────────────────────── */
.cz-context-card {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: 10px;
  padding: 24px;
}

.cz-context-card__icon {
  font-size: 24px;
  color: var(--cz-accent);
  margin-bottom: 12px;
}

.cz-context__cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .cz-context__cards { grid-template-columns: repeat(3, 1fr); }
}

.cz-context__info {
  max-width: 1200px;
  margin: 24px auto 0;
  background: var(--cz-bg-card2);
  border: 1px solid var(--cz-border);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--cz-text-muted);
  line-height: 1.7;
}

/* ── S16. RG inner section helpers ───────────────────────────── */
.cz-rg__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cz-rg__title {
  font-size: 1.4rem;
  color: var(--cz-warn);
  margin-bottom: 10px;
  font-family: 'Playfair Display', Georgia, serif;
}

.cz-rg__lead {
  color: var(--cz-text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.cz-rg__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cz-warn);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.cz-rg__list {
  color: var(--cz-text-muted);
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 12px;
  list-style: disc;
}

.cz-rg__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .cz-rg__columns { grid-template-columns: 1fr 1fr; }
}

.cz-rg__col {
  background: var(--cz-bg-card2);
  border-radius: 8px;
  padding: 16px;
}
.cz-rg__col h3 {
  font-size: 0.95rem;
  color: var(--cz-accent);
  margin-bottom: 10px;
  font-family: 'Playfair Display', Georgia, serif;
}

.cz-rg__helpline {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--cz-text-muted);
  line-height: 1.65;
}

.cz-rg__phone {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--cz-accent);
  font-weight: 700;
  margin: 6px 0;
}

.cz-rg__orgs {
  margin-top: 12px;
}

.cz-rg__orgs-label {
  font-size: 12px;
  color: var(--cz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

.cz-rg__orgs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cz-rg__orgs-list a {
  font-size: 0.88rem;
  color: var(--cz-jade-lt);
}

.cz-rg__helpline-note {
  font-size: 0.82rem;
  color: var(--cz-text-muted);
  line-height: 1.65;
  margin-top: 6px;
}

/* ── S17. Responsibly page sections ──────────────────────────── */
.cz-rg-section {
  padding: 40px 20px;
}

.cz-rg-section--alt {
  background: var(--cz-bg-mid);
}

.cz-rg-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.cz-rg-section__icon {
  font-size: 28px;
  color: var(--cz-accent);
  margin-bottom: 12px;
}

.cz-rg-section__body {
  color: var(--cz-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}
.cz-rg-section__body h2 {
  font-size: 1.4rem;
  color: var(--cz-accent);
  margin-bottom: 14px;
  font-family: 'Playfair Display', Georgia, serif;
}
@media (min-width: 768px) {
  .cz-rg-section__body h2 { font-size: 1.7rem; }
}
.cz-rg-section__body h3 {
  font-size: 1rem;
  color: var(--cz-accent);
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}
.cz-rg-section__body p {
  margin-bottom: 14px;
}
.cz-rg-section__body p:last-child { margin-bottom: 0; }

.cz-rg-warning-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.cz-rg-warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--cz-border);
  color: var(--cz-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.cz-rg-warning-list li:last-child { border-bottom: none; }

.cz-rg-warning-list__icon {
  color: var(--cz-warn);
  flex-shrink: 0;
  margin-top: 2px;
}

.cz-rg-selfcheck {
  background: var(--cz-bg-card);
  border-radius: 8px;
  padding: 20px;
  margin: 16px 0;
  list-style: none;
}

.cz-rg-selfcheck__item {
  padding: 10px 0;
  border-bottom: 1px solid var(--cz-border);
  color: var(--cz-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.cz-rg-selfcheck__item:last-child { border-bottom: none; }
.cz-rg-selfcheck__item p {
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--cz-text-muted);
}

.cz-rg-selfcheck__note {
  font-size: 0.82rem;
  color: var(--cz-text-muted);
  font-style: italic;
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--cz-bg-card2);
  border-radius: 6px;
}

.cz-rg-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 16px 0;
}

@media (min-width: 576px) {
  .cz-rg-steps { grid-template-columns: 1fr 1fr; }
}

.cz-rg-step {
  background: var(--cz-bg-card);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cz-rg-step__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--cz-accent);
  line-height: 1;
  flex-shrink: 0;
  font-weight: 700;
}

.cz-rg-step__body {
  font-size: 0.9rem;
  color: var(--cz-text-muted);
  line-height: 1.65;
}
.cz-rg-step__body h3 {
  font-size: 0.95rem;
  color: var(--cz-accent);
  margin-bottom: 6px;
  font-family: 'Playfair Display', Georgia, serif;
}

.cz-rg-design-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 16px 0;
}

@media (min-width: 576px) {
  .cz-rg-design-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.cz-rg-design-card {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: 8px;
  padding: 16px;
}
.cz-rg-design-card h3 {
  font-size: 0.95rem;
  color: var(--cz-accent);
  margin: 8px 0 6px;
  font-family: 'Playfair Display', Georgia, serif;
}
.cz-rg-design-card p {
  font-size: 0.88rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
}

.cz-rg-design-card__icon {
  font-size: 22px;
  color: var(--cz-jade);
  margin-bottom: 8px;
}

/* ── S18. RG helpline section ────────────────────────────────── */
.cz-rg-helpline-section {
  background: var(--cz-bg-mid);
  padding: 32px 20px;
}

.cz-rg-helpline-callout {
  background: var(--cz-bg-card2);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cz-rg-helpline-callout__icon {
  font-size: 36px;
  color: var(--cz-accent);
  margin-bottom: 12px;
}

.cz-rg-helpline-callout__body {
  margin-top: 10px;
}
.cz-rg-helpline-callout__body h2 {
  font-size: 1.3rem;
  color: var(--cz-accent);
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}

.cz-rg-helpline-callout__number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--cz-accent);
  font-weight: 700;
  margin: 10px 0;
  text-decoration: none;
}
.cz-rg-helpline-callout__number:hover { color: var(--cz-accent-hov); }

.cz-rg-helpline-callout__tagline {
  font-size: 0.9rem;
  color: var(--cz-text-muted);
  margin-top: 6px;
  line-height: 1.6;
}

.cz-rg-helpline-callout__body-text {
  font-size: 0.85rem;
  color: var(--cz-text-muted);
  margin-top: 10px;
  line-height: 1.65;
}

.cz-rg-orgs-intro {
  text-align: center;
  color: var(--cz-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

/* ── S19. RG contact section ─────────────────────────────────── */
.cz-rg-contact {
  background: var(--cz-bg-mid);
  padding: 32px 20px;
}

.cz-rg-contact__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cz-rg-contact__inner p {
  color: var(--cz-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.cz-rg-contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}
.cz-rg-contact__details p {
  font-size: 0.9rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.cz-rg-contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}

/* ── S20. RG anchor nav ──────────────────────────────────────── */
.cz-rg-anchors {
  background: var(--cz-bg-mid);
  padding: 16px 20px;
  border-bottom: 1px solid var(--cz-border);
}

.cz-rg-anchors__list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.cz-rg-anchor {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--cz-border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--cz-text-muted);
  margin: 4px;
  text-decoration: none;
  transition: color var(--cz-trans), border-color var(--cz-trans);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.cz-rg-anchor:hover {
  color: var(--cz-accent);
  border-color: var(--cz-accent);
}

/* ── S21. RG CTA strip ───────────────────────────────────────── */
.cz-rg-cta-strip {
  background: var(--cz-bg-card2);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  margin: 24px 0;
}

.cz-rg-cta-strip__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .cz-rg-cta-strip__inner {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
}

.cz-rg-cta-strip__icon {
  font-size: 32px;
  color: var(--cz-accent);
  flex-shrink: 0;
}

.cz-rg-cta-strip__text {
  color: var(--cz-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.cz-rg-cta-strip__text p {
  margin-top: 6px;
}

/* ── S22. Testimonials ───────────────────────────────────────── */
.cz-testimonials {
  background: var(--cz-bg-deep);
  padding: 56px 20px;
}

@media (min-width: 768px) {
  .cz-testimonials { padding: 80px 0; }
}

.cz-testimonials__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .cz-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.cz-testimonial {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: 10px;
  padding: 24px;
}

.cz-testimonial__quote {
  color: var(--cz-text-muted);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.cz-testimonial__author {
  border-top: 1px solid var(--cz-border);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cz-testimonial__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cz-accent);
}

.cz-testimonial__location {
  font-size: 0.8rem;
  color: var(--cz-text-muted);
}

/* ── S23. Team (about page) ──────────────────────────────────── */
.cz-team {
  padding: 32px 0;
}

.cz-team__intro {
  color: var(--cz-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.cz-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .cz-team__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.cz-team-card__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.cz-team-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cz-accent);
  margin-bottom: 2px;
  font-family: 'Playfair Display', Georgia, serif;
}

.cz-team-card__role {
  display: block;
  font-size: 0.82rem;
  color: var(--cz-jade-lt);
  margin-bottom: 6px;
}

.cz-team-card__bio {
  font-size: 0.82rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
}

/* ── S24. Values grid ────────────────────────────────────────── */
.cz-values {
  padding: 32px 0;
}

.cz-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .cz-values__grid { grid-template-columns: repeat(3, 1fr); }
}

.cz-value-card {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: 8px;
  padding: 20px;
}

.cz-value-card--dont { border-color: rgba(232,80,42,0.3); }
.cz-value-card--do   { border-color: rgba(38,176,128,0.3); }
.cz-value-card--measure { border-color: var(--cz-border); }

.cz-value-card__icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.cz-value-card__title {
  font-size: 0.95rem;
  color: var(--cz-accent);
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}

.cz-value-card__list {
  list-style: none;
  padding: 0;
  color: var(--cz-text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

.cz-value-card__list li::before {
  content: '— ';
  color: var(--cz-jade-lt);
}

/* ── S25. About story layout ─────────────────────────────────── */
.cz-about-story {
  background: var(--cz-bg-mid);
  padding: 56px 20px;
}

@media (min-width: 768px) {
  .cz-about-story { padding: 80px 0; }
}

.cz-about-story__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .cz-about-story__inner { grid-template-columns: 1fr 1fr; }
}

.cz-about-story__text {
  color: var(--cz-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}
.cz-about-story__text p {
  margin-bottom: 14px;
}
.cz-about-story__text p:last-child { margin-bottom: 0; }
.cz-about-story__text h2 {
  font-size: 1.7rem;
  color: var(--cz-accent);
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}
@media (min-width: 768px) {
  .cz-about-story__text h2 { font-size: 2.1rem; }
}

/* ── S26. Footer alt names ───────────────────────────────────── */
.cz-footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cz-footer__col--brand {
  max-width: 280px;
}

.cz-footer__col--rg {
  color: var(--cz-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.cz-footer__logo {
  display: block;
  margin-bottom: 12px;
}

.cz-footer__tagline {
  font-size: 0.85rem;
  color: var(--cz-text-muted);
  margin-top: 8px;
  line-height: 1.65;
}

.cz-footer__col-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: var(--cz-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cz-footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cz-footer__nav a {
  color: var(--cz-text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--cz-trans);
}
.cz-footer__nav a:hover { color: var(--cz-accent); }

.cz-footer__address {
  font-size: 0.85rem;
  color: var(--cz-text-muted);
  line-height: 1.7;
  font-style: normal;
}

.cz-footer__rg-link {
  display: inline-block;
  color: var(--cz-jade-lt);
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 6px;
}
.cz-footer__rg-link:hover { color: var(--cz-accent); }

.cz-footer__rg-phone {
  display: inline-block;
  color: var(--cz-text);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin: 4px 0;
}
.cz-footer__rg-phone:hover { color: var(--cz-accent); }

.cz-footer__regulators-wrap {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 20px 28px;
}

/* ── S27. Legal pages ────────────────────────────────────────── */
.cz-legal-body {
  background: var(--cz-bg-deep);
  padding: 48px 20px;
}

@media (min-width: 768px) {
  .cz-legal-body { padding: 64px 0; }
}

.cz-legal-prose {
  max-width: 860px;
  margin: 0 auto;
}
.cz-legal-prose h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--cz-accent);
  margin: 36px 0 12px;
}
.cz-legal-prose h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--cz-text);
  margin: 24px 0 8px;
}
.cz-legal-prose p {
  font-size: 0.95rem;
  color: var(--cz-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.cz-legal-prose ul,
.cz-legal-prose ol {
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--cz-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.cz-legal-prose ul { list-style: disc; }
.cz-legal-prose ol { list-style: decimal; }
.cz-legal-prose a { color: var(--cz-jade-lt); }

.cz-legal-intro {
  color: var(--cz-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cz-border);
}

.cz-legal-address {
  background: var(--cz-bg-card);
  border: 1px solid var(--cz-border);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 24px;
  color: var(--cz-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: normal;
}

.cz-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
}

/* ── S28. Contact items ──────────────────────────────────────── */
.cz-contact-block__intro {
  color: var(--cz-text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

.cz-contact-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 576px) {
  .cz-contact-block__grid { grid-template-columns: 1fr 1fr; }
}

.cz-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--cz-bg-card2);
  border-radius: 6px;
  padding: 12px 14px;
}

.cz-contact-item__icon {
  color: var(--cz-jade);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cz-contact-item__label {
  display: block;
  font-size: 11px;
  color: var(--cz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.cz-contact-item__body {
  font-size: 0.92rem;
  color: var(--cz-text);
  margin-top: 2px;
}
.cz-contact-item__body a {
  color: var(--cz-jade-lt);
  text-decoration: none;
}
.cz-contact-item__body address {
  font-style: normal;
  color: var(--cz-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── S29. Game section ───────────────────────────────────────── */
.cz-game-section {
  background: var(--cz-bg-deep);
  padding: 48px 20px;
}

@media (min-width: 768px) {
  .cz-game-section { padding: 64px 0; }
}

.cz-game-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.cz-game-score {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.cz-game-score__label {
  font-size: 12px;
  color: var(--cz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cz-game-score__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cz-accent);
}

.cz-game-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  justify-content: center;
}

.cz-game-msg {
  text-align: center;
  min-height: 28px;
  font-size: 0.95rem;
  color: var(--cz-jade-lt);
  font-weight: 600;
  margin-top: 12px;
}
.cz-game-msg--win  { color: var(--cz-accent); }
.cz-game-msg--miss { color: var(--cz-text-muted); }

.cz-game-disclaimer {
  max-width: 600px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--cz-text-muted);
  line-height: 1.6;
}

/* Paytable */
.cz-paytable {
  margin-top: 24px;
}

.cz-paytable__title {
  font-size: 1rem;
  color: var(--cz-accent);
  margin-bottom: 12px;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
}

.cz-paytable__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid var(--cz-border);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 8px;
}
.cz-paytable__row:last-child { border-bottom: none; }

.cz-paytable__cell {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cz-text-muted);
}
.cz-paytable__cell img { width: 28px; height: 28px; }
.cz-paytable__cell--premium { color: var(--cz-accent); font-weight: 700; }

/* Symbol tables */
.cz-sym-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}
.cz-sym-table th {
  background: var(--cz-bg-card2);
  color: var(--cz-accent);
  font-family: 'Playfair Display', Georgia, serif;
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--cz-border);
}
.cz-sym-table td {
  color: var(--cz-text-muted);
  padding: 9px 12px;
  border-bottom: 1px solid var(--cz-border);
  vertical-align: middle;
}
.cz-sym-table tr:last-child td { border-bottom: none; }

.cz-sym-table__note {
  font-size: 0.8rem;
  color: var(--cz-text-muted);
  font-style: italic;
  margin-top: 8px;
  line-height: 1.6;
}

.cz-sym-tbl {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}
.cz-sym-tbl th {
  background: var(--cz-bg-card2);
  color: var(--cz-accent);
  font-family: 'Playfair Display', Georgia, serif;
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--cz-border);
}
.cz-sym-tbl td {
  color: var(--cz-text-muted);
  padding: 9px 12px;
  border-bottom: 1px solid var(--cz-border);
  vertical-align: middle;
}
.cz-sym-tbl tr:last-child td { border-bottom: none; }

/* Rules grid */
.cz-rules {
  padding: 32px 0;
}

.cz-rules__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .cz-rules__grid { grid-template-columns: 1fr 1fr; }
}

.cz-rule-card__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--cz-accent);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.cz-rule-card__title {
  font-size: 0.95rem;
  color: var(--cz-accent);
  margin-bottom: 6px;
  font-family: 'Playfair Display', Georgia, serif;
}

/* Round machine grid */
.cz-round-machine {
  max-width: 600px;
  margin: 0 auto;
  background: var(--cz-bg-card);
  border-radius: 12px;
  padding: 20px;
}

.cz-round-columns {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.cz-round-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.cz-round-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cz-round-preview-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.cz-round-cell,
.cz-round-preview-cell {
  width: 56px;
  height: 56px;
  background: var(--cz-bg-mid);
  border: 1px solid var(--cz-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cz-round-cell img,
.cz-round-preview-cell img {
  width: 44px;
  height: 44px;
}

.cz-round-win-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(201,168,60,0.4);
  pointer-events: none;
  transform: translateY(-50%);
  border-radius: 2px;
}

/* Game CTA section */
.cz-game-cta {
  background: var(--cz-bg-mid);
  padding: 48px 20px;
  text-align: center;
  border-top: 1px solid var(--cz-border);
}

@media (min-width: 768px) {
  .cz-game-cta { padding: 64px 0; }
}

.cz-game-cta__body {
  color: var(--cz-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 24px;
}

.cz-game-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Not-callout inner */
.cz-not-callout__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 576px) {
  .cz-not-callout__inner {
    flex-direction: row;
    align-items: flex-start;
  }
}

.cz-not-callout__icon {
  font-size: 2.5rem;
  color: var(--cz-warn);
  flex-shrink: 0;
}

.cz-not-callout__title {
  font-size: 1.05rem;
  color: var(--cz-warn);
  margin-bottom: 10px;
  font-family: 'Playfair Display', Georgia, serif;
}

.cz-not-callout__list {
  list-style: disc;
  padding-left: 20px;
  color: var(--cz-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── S30. Pullquote & affiliate notice & palette strip ────────── */
.cz-pullquote {
  background: var(--cz-bg-card2);
  border-left: 4px solid var(--cz-accent);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.cz-pullquote__block {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cz-text);
  line-height: 1.6;
}

.cz-pullquote__text {
  font-size: 0.85rem;
  color: var(--cz-text-muted);
  margin-top: 8px;
  line-height: 1.6;
}

.cz-affiliate-notice {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: 0.8rem;
  color: var(--cz-text-muted);
  text-align: center;
  padding: 8px 0;
  border-top: 1px solid var(--cz-border);
  line-height: 1.65;
}

.cz-palette-strip {
  background: var(--cz-bg-mid);
  padding: 32px 20px;
}

@media (min-width: 768px) {
  .cz-palette-strip { padding: 40px 0; }
}

.cz-palette__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.cz-palette__swatch {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--cz-border);
  flex-shrink: 0;
}

.cz-palette__swatch--forest  { background: #071510; }
.cz-palette__swatch--jade    { background: #1e8c68; }
.cz-palette__swatch--cedar   { background: #c9a83c; }
.cz-palette__swatch--mist    { background: #7fa598; }
.cz-palette__swatch--snow    { background: #e6f0ea; }

.cz-palette__label {
  font-size: 11px;
  color: var(--cz-text-muted);
  text-align: center;
  margin-top: 4px;
  width: 100%;
}

.cz-preview-label {
  font-size: 12px;
  color: var(--cz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.cz-preview-cta {
  margin-top: 12px;
  font-size: 0.88rem;
}

.cz-section-title--left {
  text-align: left;
}

/* ── S31. Regcard body extensions ────────────────────────────── */
.cz-regcard__logo-wrap {
  flex-shrink: 0;
}

.cz-regcard__body {
  flex: 1;
}

.cz-regcard__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cz-text);
  margin-bottom: 6px;
  font-family: 'Playfair Display', Georgia, serif;
}

/* == Touch-target fixes (visual audit gate) == */
.cz-nav__logo {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.cz-rg__phone,
.cz-footer__rg-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
}
.cz-footer__rg-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
}
a.cz-footer__rg-link,
a.cz-rg__phone,
a.cz-footer__rg-phone {
  min-height: 44px;
}

.cz-regcard__desc {
  font-size: 0.88rem;
  color: var(--cz-text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

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