@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@500;600;700;800&family=Rubik:wght@300;400;500;600;700&display=swap");

/* ============================================================ 2. reset */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li, figure, figcaption, blockquote, dl, dd, table, th, td { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

/* ============================================================ 3. :root */
:root {
  --bg-base:   #0b0d12;
  --bg-card:   #161a22;
  --accent:    #e6394f;
  --highlight: #f7c948;
  --text:      #f3f5f8;
  --muted:     #99a3b2;
  --border:    #272d38;

  --ff-display: "Bitter", Georgia, serif;
  --ff-body:    "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-xs: .78rem;
  --fs-sm: .875rem;
  --fs-base: 1rem;
  --fs-lg: 1.09rem;
  --fs-h3: 1.22rem;
  --fs-h2: 1.5rem;
  --fs-h1: 2rem;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --sp: 1rem;
  --wrap: 1150px;

  --t: .22s ease;
}

/* ============================================================ 4. html / body / scrollbar */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.68;
  overflow-x: hidden;
}
body::selection, ::selection { background: var(--accent); color: var(--text); }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.m6x_skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--text); padding: .6rem 1rem; border-radius: 0 0 var(--r-sm) 0;
}
.m6x_skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--highlight); outline-offset: 2px; }

/* ============================================================ 5. type scale */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
.m6x_h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -.025em; }
.m6x_h2 { font-size: var(--fs-h2); margin-bottom: .55rem; }
.m6x_h3 { font-size: var(--fs-h3); font-weight: 600; margin: 1.6rem 0 .5rem; }
.m6x_prose p { margin-bottom: 1.05rem; }
.m6x_prose p:last-child { margin-bottom: 0; }
.m6x_prose a { color: var(--highlight); text-decoration: underline; text-underline-offset: 3px; }
.m6x_prose a:hover { color: var(--accent); }
.m6x_lede { font-size: var(--fs-lg); color: var(--muted); }
.m6x_eyebrow {
  display: inline-block; font-family: var(--ff-body); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--highlight);
  border: 1px solid var(--border); border-radius: var(--r-pill); padding: .3rem .85rem;
}
.m6x_sec-sub { color: var(--muted); font-size: var(--fs-sm); }
strong, b { font-weight: 600; color: var(--text); }
.m6x_hl { color: var(--highlight); font-weight: 600; }

/* ============================================================ 6. container */
.m6x_container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.15rem; }

/* ============================================================ 7. buttons */
.m6x_btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 46px; padding: .72rem 1.35rem;
  font-family: var(--ff-body); font-size: var(--fs-sm); font-weight: 600; letter-spacing: .01em;
  border-radius: var(--r-pill); border: 1px solid transparent;
  transition: transform var(--t), background var(--t), border-color var(--t), color var(--t);
  text-align: center;
}
.m6x_btn:hover { transform: translateY(-2px); }
.m6x_btn:active { transform: translateY(0); }
.m6x_btn--primary { background: var(--accent); color: var(--text); }
.m6x_btn--primary:hover { background: color-mix(in srgb, var(--accent) 82%, var(--text)); }
.m6x_btn--gold { background: var(--highlight); color: var(--bg-base); }
.m6x_btn--gold:hover { background: color-mix(in srgb, var(--highlight) 84%, var(--bg-base)); }
.m6x_btn--outline { border-color: var(--border); color: var(--text); background: color-mix(in srgb, var(--bg-card) 60%, transparent); }
.m6x_btn--outline:hover { border-color: var(--accent); color: var(--highlight); }
.m6x_btn--ghost { color: var(--muted); padding: .5rem .75rem; min-height: 44px; }
.m6x_btn--ghost:hover { color: var(--highlight); }
.m6x_btn--sm { min-height: 40px; padding: .5rem 1rem; font-size: var(--fs-xs); }
.m6x_btn--lg { min-height: 54px; padding: .95rem 1.9rem; font-size: var(--fs-base); }
.m6x_btn--full { display: flex; width: 100%; }

/* ============================================================ 8. nav */
.m6x_hdr {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg-base) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.m6x_hdr-in { display: flex; align-items: center; gap: .75rem; min-height: 62px; }
.m6x_brand { display: flex; align-items: center; flex: 0 0 auto; }
.m6x_logo { height: 26px; width: auto; }
.m6x_nav { display: none; }
.m6x_hdr-cta { margin-left: auto; }
.m6x_burger {
  margin-left: .25rem; width: 44px; height: 44px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.m6x_burger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }
.m6x_burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.m6x_burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.m6x_burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.m6x_mnav {
  display: none; border-top: 1px solid var(--border);
  background: var(--bg-card); padding: .5rem 0 .9rem;
}
.m6x_mnav.open { display: block; }
.m6x_mnav ul { display: flex; flex-direction: column; }
.m6x_mnav a {
  display: block; padding: .72rem .3rem; font-size: var(--fs-sm); color: var(--muted);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
}
.m6x_mnav a:hover, .m6x_mnav a.is-on { color: var(--highlight); }

/* ============================================================ 9. ticker */
.m6x_ticker { border-bottom: 1px solid var(--border); background: var(--bg-card); overflow: hidden; }
.m6x_ticker-track {
  display: flex; gap: 2rem; padding: .5rem 0; white-space: nowrap;
  font-size: var(--fs-xs); color: var(--muted); letter-spacing: .04em;
  animation: m6x-slide 34s linear infinite;
}
.m6x_ticker-item { display: inline-flex; align-items: center; gap: .4rem; }
.m6x_ticker-item b { color: var(--highlight); font-weight: 600; }

/* ============================================================ 10. hero — LAYOUT B, centred */
.m6x_hero { position: relative; padding: 2.4rem 0 2rem; overflow: hidden; }
.m6x_hero::before {
  content: ""; position: absolute; inset: -30% -40% auto -40%; height: 480px; pointer-events: none;
  background:
    radial-gradient(60% 60% at 50% 0%, color-mix(in srgb, var(--accent) 26%, transparent) 0%, transparent 70%),
    radial-gradient(40% 55% at 82% 18%, color-mix(in srgb, var(--highlight) 15%, transparent) 0%, transparent 72%);
}
.m6x_hero-in { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.m6x_hero-in > * + * { margin-top: 1rem; }
.m6x_hero .m6x_lede { max-width: 620px; margin-left: auto; margin-right: auto; }

.m6x_offercard {
  position: relative; text-align: center; border-radius: var(--r-lg);
  border: 1px solid color-mix(in srgb, var(--highlight) 40%, var(--border));
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 30%, var(--bg-card)) 0%, var(--bg-card) 58%),
    var(--bg-card);
  padding: 1.5rem 1.1rem 1.35rem;
  box-shadow: 0 18px 46px -22px rgba(0, 0, 0, .95);
  overflow: hidden;
}
.m6x_offercard::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--highlight) 30%, transparent), transparent 68%);
  pointer-events: none;
}
.m6x_offer-label {
  font-family: var(--ff-body); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text);
}
.m6x_offer-fig {
  font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.6rem, 13vw, 4.1rem);
  line-height: 1; color: var(--highlight); margin: .35rem 0 .15rem; letter-spacing: -.03em;
}
.m6x_offer-sub { font-size: var(--fs-lg); font-weight: 500; color: var(--text); }
.m6x_offer-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; margin: .9rem 0 1rem;
}
.m6x_offer-meta li {
  font-size: var(--fs-xs); color: var(--muted); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: .25rem .7rem; background: color-mix(in srgb, var(--bg-base) 55%, transparent);
}
.m6x_offer-note { font-size: var(--fs-xs); color: var(--muted); margin-top: .8rem; }
.m6x_hero-cta { display: flex; flex-direction: column; gap: .6rem; }
.m6x_hero-shot { margin-top: 1.4rem; }

/* ============================================================ 11. trust bar */
.m6x_trust {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border); border-block: 1px solid var(--border);
}
.m6x_trust-item { background: var(--bg-base); padding: .95rem .6rem; text-align: center; }
.m6x_trust-k { display: block; font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; color: var(--highlight); }
.m6x_trust-v { display: block; font-size: var(--fs-xs); color: var(--muted); letter-spacing: .03em; }

/* ============================================================ 12. content sections */
.m6x_sec { padding: 2.2rem 0; }
.m6x_sec--alt { background: color-mix(in srgb, var(--bg-card) 55%, var(--bg-base)); border-block: 1px solid var(--border); }
.m6x_sec-head { margin-bottom: 1.15rem; }

.m6x_crumbs { font-size: var(--fs-xs); color: var(--muted); padding: .9rem 0 0; }
.m6x_crumbs a:hover { color: var(--highlight); }
.m6x_crumbs span { color: var(--text); }

.m6x_grid { display: grid; grid-template-columns: 1fr; gap: .85rem; }
.m6x_card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.1rem 1.05rem; transition: border-color var(--t), transform var(--t);
}
.m6x_card:hover { border-color: color-mix(in srgb, var(--accent) 55%, var(--border)); }
.m6x_card-t { font-family: var(--ff-display); font-size: var(--fs-h3); font-weight: 600; margin-bottom: .4rem; }
.m6x_card-b { font-size: var(--fs-sm); color: var(--muted); }
.m6x_card-b strong { color: var(--text); }

.m6x_note {
  border-left: 3px solid var(--accent); background: color-mix(in srgb, var(--bg-card) 80%, transparent);
  border-radius: 0 var(--r-md) var(--r-md) 0; padding: .95rem 1.05rem; font-size: var(--fs-sm); margin: 1.15rem 0;
}
.m6x_note--good { border-left-color: var(--highlight); }
.m6x_note--warn { border-left-color: var(--muted); }
.m6x_note b { display: block; margin-bottom: .25rem; font-family: var(--ff-display); }

.m6x_list li, .m6x_steps li { position: relative; padding-left: 1.6rem; margin-bottom: .6rem; font-size: var(--fs-sm); }
.m6x_list li::before {
  content: ""; position: absolute; left: .25rem; top: .62em; width: 7px; height: 7px;
  border-radius: 2px; background: var(--accent);
}
.m6x_list--check li::before {
  content: "✓"; width: auto; height: auto; background: none; top: 0; left: 0;
  color: var(--highlight); font-weight: 700;
}
.m6x_steps { counter-reset: m6xstep; }
.m6x_steps li { padding-left: 2.3rem; margin-bottom: .9rem; }
.m6x_steps li::before {
  counter-increment: m6xstep; content: counter(m6xstep);
  position: absolute; left: 0; top: .1em; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 22%, var(--bg-card));
  border: 1px solid color-mix(in srgb, var(--accent) 60%, var(--border));
  color: var(--highlight); font-size: var(--fs-xs); font-weight: 700; font-family: var(--ff-display);
}
.m6x_steps li b { display: block; color: var(--text); }

.m6x_tablewrap { overflow-x: auto; margin: 1.15rem 0; border: 1px solid var(--border); border-radius: var(--r-md); }
.m6x_table { font-size: var(--fs-sm); min-width: 520px; }
.m6x_table caption { caption-side: top; text-align: left; padding: .8rem 1rem; color: var(--muted); font-size: var(--fs-xs); }
.m6x_table th, .m6x_table td { padding: .7rem .9rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.m6x_table thead th { background: var(--bg-card); font-family: var(--ff-display); font-weight: 600; font-size: var(--fs-xs); letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.m6x_table tbody tr:last-child td { border-bottom: 0; }
.m6x_table tbody tr:nth-child(even) { background: color-mix(in srgb, var(--bg-card) 45%, transparent); }
.m6x_table td b { color: var(--highlight); }

.m6x_chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1rem 0; }
.m6x_chip {
  display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .8rem;
  border: 1px solid var(--border); border-radius: var(--r-pill); background: var(--bg-card);
  font-size: var(--fs-xs); color: var(--muted); transition: border-color var(--t), color var(--t);
}
.m6x_chip:hover { border-color: color-mix(in srgb, var(--highlight) 60%, var(--border)); color: var(--text); }
.m6x_chip svg { width: 15px; height: 15px; flex: 0 0 auto; }
.m6x_chip b { color: var(--text); font-weight: 500; }

.m6x_kv { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin: 1.15rem 0; }
.m6x_kv-row { display: flex; flex-wrap: wrap; gap: .2rem 1rem; padding: .7rem 1rem; border-bottom: 1px solid var(--border); font-size: var(--fs-sm); }
.m6x_kv-row:last-child { border-bottom: 0; }
.m6x_kv-row:nth-child(odd) { background: color-mix(in srgb, var(--bg-card) 45%, transparent); }
.m6x_kv-k { flex: 0 0 190px; color: var(--muted); font-size: var(--fs-xs); letter-spacing: .04em; text-transform: uppercase; padding-top: .12rem; }
.m6x_kv-v { flex: 1 1 240px; }

.m6x_pull {
  font-family: var(--ff-display); font-size: var(--fs-h3); font-weight: 600; line-height: 1.45;
  color: var(--text); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.1rem 0; margin: 1.4rem 0;
}
.m6x_pull span { color: var(--highlight); }

.m6x_codebox {
  display: flex; flex-direction: column; gap: .55rem; align-items: center; text-align: center;
  border: 1px dashed color-mix(in srgb, var(--highlight) 55%, var(--border));
  border-radius: var(--r-md); background: var(--bg-card); padding: 1.1rem; margin: 1.15rem 0;
}
.m6x_code {
  font-family: var(--ff-display); font-size: 1.45rem; font-weight: 800; letter-spacing: .1em;
  color: var(--highlight);
}
.m6x_code-note { font-size: var(--fs-xs); color: var(--muted); }

.m6x_tag {
  display: inline-block; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: .12rem .5rem; border-radius: var(--r-sm);
  border: 1px solid var(--border); color: var(--muted);
}
.m6x_tag--live { color: var(--highlight); border-color: color-mix(in srgb, var(--highlight) 55%, var(--border)); }
.m6x_tag--no { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 55%, var(--border)); }

/* pokies grid */
.m6x_pokies { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin: 1.1rem 0; }
.m6x_pokie {
  border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
  background: var(--bg-card); transition: border-color var(--t), transform var(--t);
}
.m6x_pokie:hover { border-color: color-mix(in srgb, var(--highlight) 55%, var(--border)); transform: translateY(-3px); }
.m6x_pokie img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.m6x_pokie--text .m6x_pokie-art {
  aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: .8rem;
  font-family: var(--ff-display); font-weight: 700; font-size: var(--fs-sm); text-align: center; line-height: 1.25;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 24%, var(--bg-card)), var(--bg-card));
  color: var(--text);
}
.m6x_pokie-n { display: block; padding: .5rem .6rem .1rem; font-size: var(--fs-sm); font-weight: 500; }
.m6x_pokie-p { display: block; padding: 0 .6rem .55rem; font-size: var(--fs-xs); color: var(--muted); }

/* screenshots */
.m6x_shot { margin: 1.3rem 0; }
.m6x_shot img { width: 100%; height: auto; border: 1px solid var(--border); border-radius: var(--r-md); }
.m6x_cap { display: block; margin-top: .5rem; font-size: var(--fs-xs); color: var(--muted); }

/* ============================================================ 13. FAQ accordion */
.m6x_faq { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-top: 1rem; }
.m6x_faq-item { border-bottom: 1px solid var(--border); }
.m6x_faq-item:last-child { border-bottom: 0; }
.m6x_faq-btn {
  width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 1rem; text-align: left; font-family: var(--ff-display); font-size: var(--fs-base);
  font-weight: 600; color: var(--text); transition: color var(--t), background var(--t);
}
.m6x_faq-btn:hover { color: var(--highlight); background: color-mix(in srgb, var(--bg-card) 60%, transparent); }
.m6x_faq-i { flex: 0 0 auto; width: 18px; height: 18px; position: relative; }
.m6x_faq-i::before, .m6x_faq-i::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--accent); border-radius: 2px;
  transform: translate(-50%, -50%); transition: var(--t);
}
.m6x_faq-i::before { width: 14px; height: 2px; }
.m6x_faq-i::after { width: 2px; height: 14px; }
.m6x_faq-item.open .m6x_faq-i::after { transform: translate(-50%, -50%) scaleY(0); }
.m6x_faq-a { display: none; padding: 0 1rem 1rem; font-size: var(--fs-sm); color: var(--muted); }
.m6x_faq-item.open .m6x_faq-a { display: block; }
.m6x_faq-a p + p { margin-top: .7rem; }

/* ============================================================ 14. CTA band */
.m6x_cta-band {
  border-block: 1px solid var(--border);
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--accent) 22%, var(--bg-base)) 0%, var(--bg-base) 62%),
    var(--bg-base);
  padding: 2.1rem 0;
}
.m6x_cta-in { text-align: center; max-width: 640px; margin: 0 auto; }
.m6x_cta-in p { color: var(--muted); font-size: var(--fs-sm); margin: .6rem 0 1.1rem; }

/* ============================================================ 15. footer */
.m6x_ftr { border-top: 1px solid var(--border); background: color-mix(in srgb, var(--bg-card) 70%, var(--bg-base)); padding: 2rem 0 5.4rem; font-size: var(--fs-sm); }
.m6x_ftr-cols { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.m6x_ftr-h { font-family: var(--ff-display); font-size: var(--fs-sm); font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.m6x_ftr-col li { margin-bottom: .42rem; }
.m6x_ftr-col a { color: var(--text); font-size: var(--fs-sm); }
.m6x_ftr-col a:hover { color: var(--highlight); }
.m6x_ftr-col p { color: var(--muted); }
.m6x_badges { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.5rem 0 1.1rem; }
.m6x_badge {
  display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .75rem;
  border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--bg-base);
  font-size: var(--fs-xs); color: var(--muted); transition: border-color var(--t), color var(--t);
}
.m6x_badge:hover { border-color: var(--accent); color: var(--text); }
.m6x_badge svg { width: 14px; height: 14px; }
.m6x_badge--age { font-family: var(--ff-display); font-weight: 800; color: var(--accent); border-color: color-mix(in srgb, var(--accent) 55%, var(--border)); }
.m6x_ftr-legal { border-top: 1px solid var(--border); padding-top: 1.1rem; color: var(--muted); font-size: var(--fs-xs); }
.m6x_ftr-legal p + p { margin-top: .55rem; }
.m6x_updated { color: var(--highlight); font-weight: 500; }

/* ============================================================ 16. sticky mobile CTA */
.m6x_sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  padding: .55rem .9rem calc(.55rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg-card) 94%, transparent);
  backdrop-filter: blur(8px); border-top: 1px solid var(--border);
}

/* ============================================================ 17. animations */
@keyframes m6x-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================ 18. responsive */
@media (min-width: 480px) {
  :root { --fs-h1: 2.35rem; --fs-h2: 1.62rem; }
  .m6x_hero-cta { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .m6x_trust { grid-template-columns: repeat(4, 1fr); }
  .m6x_pokies { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  :root { --fs-h1: 2.9rem; --fs-h2: 1.85rem; --fs-h3: 1.32rem; }
  .m6x_container { padding: 0 1.6rem; }
  .m6x_hero { padding: 3.6rem 0 2.8rem; }
  .m6x_sec { padding: 3rem 0; }
  .m6x_offercard { padding: 2.1rem 2rem 1.8rem; }
  .m6x_nav { display: flex; align-items: center; gap: .15rem; margin-left: 1.2rem; }
  .m6x_nav a { padding: .5rem .6rem; font-size: var(--fs-xs); color: var(--muted); border-radius: var(--r-sm); }
  .m6x_nav a:hover, .m6x_nav a.is-on { color: var(--highlight); background: color-mix(in srgb, var(--bg-card) 70%, transparent); }
  .m6x_burger, .m6x_mnav, .m6x_sticky { display: none !important; }
  .m6x_ftr { padding-bottom: 2rem; }
  .m6x_ftr-cols { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
  .m6x_grid--2 { grid-template-columns: repeat(2, 1fr); }
  .m6x_grid--3 { grid-template-columns: repeat(3, 1fr); }
  .m6x_grid--4 { grid-template-columns: repeat(2, 1fr); }
  .m6x_pokies { grid-template-columns: repeat(4, 1fr); }
  .m6x_logo { height: 30px; }
  .m6x_prose { font-size: var(--fs-lg); }
}

@media (min-width: 1024px) {
  :root { --fs-h1: 3.3rem; }
  .m6x_hero-in { max-width: 820px; }
  .m6x_grid--4 { grid-template-columns: repeat(4, 1fr); }
  .m6x_pokies { grid-template-columns: repeat(5, 1fr); }
  .m6x_nav a { font-size: var(--fs-sm); padding: .5rem .8rem; }
  .m6x_offer-fig { font-size: 4.6rem; }
  .m6x_ftr-cols { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
