@import url("https://fonts.googleapis.com/css2?family=Alegreya:wght@500;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap");

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

/* ---------- 3. :root ---------- */
:root {
  --bg-base: #1e0a1c;
  --bg-card: #2e1230;
  --accent: #f26a28;
  --highlight: #f5c13d;
  --text: #f6edf4;
  --muted: #b79bb2;
  --border: #45254a;

  --ff-display: "Alegreya", Georgia, serif;
  --ff-body: "DM Sans", system-ui, -apple-system, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --gap: 18px;
  --pad-sec: 44px;
  --tr: 180ms ease;
  --maxw: 1180px;
}

/* ---------- 4. html/body + scrollbar ---------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.68;
  overflow-x: hidden;
}
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--bg-base); }
body::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--r-pill); }
body::-webkit-scrollbar-thumb:hover { background: var(--accent); }
::selection { background: var(--accent); color: #fff; }

/* ---------- 5. type scale ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 800; line-height: 1.16; letter-spacing: -0.01em; }
h1 { font-size: 2.05rem; margin-bottom: 16px; }
h2 { font-size: 1.55rem; margin-bottom: 14px; margin-top: 8px; }
h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: 10px; }
h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
p { margin-bottom: 15px; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: #fff; }
em { color: var(--highlight); font-style: normal; font-weight: 500; }
small { font-size: 0.83rem; color: var(--muted); }

/* ---------- 6. container ---------- */
.g3s_wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

/* ---------- 7. buttons ---------- */
.g3s_btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 12px 22px;
  font-family: var(--ff-body); font-weight: 700; font-size: 0.97rem;
  border-radius: var(--r-pill); text-align: center;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr);
}
.g3s_btn:hover { transform: translateY(-2px); }
.g3s_btn:active { transform: translateY(0); }
.g3s_btn--accent { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(242, 106, 40, .32); }
.g3s_btn--accent:hover { box-shadow: 0 12px 30px rgba(242, 106, 40, .45); }
.g3s_btn--gold { background: var(--highlight); color: #2a1005; box-shadow: 0 8px 22px rgba(245, 193, 61, .28); }
.g3s_btn--gold:hover { box-shadow: 0 12px 30px rgba(245, 193, 61, .4); }
.g3s_btn--outline { border: 2px solid var(--accent); color: var(--text); }
.g3s_btn--outline:hover { background: var(--accent); color: #fff; }
.g3s_btn--ghost { color: var(--muted); border: 1px solid var(--border); }
.g3s_btn--ghost:hover { color: var(--text); border-color: var(--accent); }
.g3s_btn--sm { min-height: 40px; padding: 9px 16px; font-size: 0.88rem; }
.g3s_btn--lg { min-height: 54px; padding: 15px 32px; font-size: 1.05rem; }
.g3s_btn--full { display: flex; width: 100%; }

/* ---------- 8. nav ---------- */
.g3s_nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(30, 10, 28, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.g3s_nav-in { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 62px; }
.g3s_logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.g3s_logo img { width: 128px; height: 46px; object-fit: contain; }
.g3s_links { display: none; }
.g3s_nav-cta { display: none; }
.g3s_burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 11px; border-radius: var(--r-sm); border: 1px solid var(--border);
}
.g3s_burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }
.g3s_burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.g3s_burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.g3s_burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.g3s_mnav {
  display: none; padding: 10px 0 18px; border-top: 1px solid var(--border);
}
.g3s_mnav.open { display: block; }
.g3s_mnav a {
  display: block; padding: 12px 4px; min-height: 44px;
  color: var(--muted); font-weight: 500; border-bottom: 1px solid rgba(69, 37, 74, .5);
}
.g3s_mnav a:hover, .g3s_mnav a[aria-current="page"] { color: var(--highlight); }
.g3s_mnav .g3s_btn { margin-top: 14px; }

/* ---------- 9. offer ticker ---------- */
.g3s_tick {
  background: linear-gradient(90deg, var(--accent), #c8471a);
  color: #fff; font-size: 0.86rem; font-weight: 500;
  padding: 8px 0; text-align: center;
}
.g3s_tick b { font-weight: 700; }

/* ---------- 10. hero — LAYOUT A (split grid 1fr 400px) ---------- */
.g3s_hero { padding: 34px 0 40px; position: relative; }
.g3s_hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background:
    radial-gradient(720px 300px at 12% 0%, rgba(242, 106, 40, .2), transparent 62%),
    radial-gradient(560px 300px at 92% 34%, rgba(122, 40, 122, .34), transparent 60%);
}
.g3s_hero-grid { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: start; }
.g3s_kicker {
  display: inline-block; margin-bottom: 14px; padding: 5px 13px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--highlight); border: 1px solid var(--border); border-radius: var(--r-pill);
}
.g3s_lead { font-size: 1.06rem; color: var(--muted); margin-bottom: 20px; }
.g3s_lead strong { color: var(--text); }
.g3s_hero-btns { display: flex; flex-direction: column; gap: 11px; }

/* offer banner — brand colours, real figures, no flat gradient */
.g3s_offer {
  position: relative; overflow: hidden;
  background: linear-gradient(158deg, #7a1f3d 0%, #b3341f 52%, #e0611f 100%);
  border: 1px solid rgba(245, 193, 61, .34);
  border-radius: var(--r-lg);
  padding: 24px 20px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}
.g3s_offer::before {
  content: ""; position: absolute; top: -58px; right: -58px; width: 190px; height: 190px;
  border-radius: 50%; background: radial-gradient(circle, rgba(245, 193, 61, .38), transparent 68%);
}
.g3s_offer-tag {
  font-size: 0.74rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: var(--highlight); margin-bottom: 8px;
}
.g3s_offer-fig {
  font-family: var(--ff-display); font-size: 2.35rem; font-weight: 800; line-height: 1.06;
  color: #fff; margin-bottom: 4px;
}
.g3s_offer-fig span { color: var(--highlight); }
.g3s_offer-sub { font-size: 0.95rem; color: rgba(255, 255, 255, .9); margin-bottom: 16px; }
.g3s_offer-rows { margin-bottom: 18px; border-top: 1px solid rgba(255, 255, 255, .2); }
.g3s_offer-rows li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.g3s_offer-rows b { color: var(--highlight); font-weight: 700; white-space: nowrap; }
.g3s_offer-fine { margin-top: 12px; font-size: 0.78rem; color: rgba(255, 255, 255, .74); }

/* ---------- 11. trust bar ---------- */
.g3s_trust {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  padding: 18px 0 6px;
}
.g3s_trust-i {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 13px 12px; text-align: center;
}
.g3s_trust-i b { display: block; font-family: var(--ff-display); font-size: 1.16rem; color: var(--highlight); }
.g3s_trust-i span { font-size: 0.78rem; color: var(--muted); }

/* ---------- 12. content sections ---------- */
.g3s_sec { padding: var(--pad-sec) 0; border-top: 1px solid var(--border); }
.g3s_sec:first-of-type { border-top: 0; }
.g3s_sec > p, .g3s_sec > ul, .g3s_sec > ol { max-width: 78ch; }
.g3s_crumbs { padding: 14px 0 0; font-size: 0.82rem; color: var(--muted); }
.g3s_crumbs a:hover { color: var(--highlight); }
.g3s_crumbs span { margin: 0 6px; opacity: .55; }

.g3s_grid { display: grid; grid-template-columns: 1fr; gap: var(--gap); margin: 20px 0; }
.g3s_card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 20px 18px; transition: border-color var(--tr), transform var(--tr);
}
.g3s_card:hover { border-color: var(--accent); transform: translateY(-3px); }
.g3s_card h3 { color: var(--highlight); }
.g3s_card p:last-child { margin-bottom: 0; }
.g3s_card-lnk { display: inline-block; margin-top: 10px; font-weight: 700; color: var(--accent); }
.g3s_card-lnk:hover { color: var(--highlight); }

/* bulleted + numbered content lists */
.g3s_list { margin: 0 0 16px; max-width: 78ch; }
.g3s_list li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.g3s_list li::before {
  content: ""; position: absolute; left: 6px; top: 11px; width: 7px; height: 7px;
  border-radius: 2px; background: var(--accent); transform: rotate(45deg);
}
.g3s_steps { counter-reset: g3s; margin: 20px 0; }
.g3s_step {
  counter-increment: g3s; position: relative; padding: 0 0 20px 52px; margin-bottom: 0;
  border-left: 2px solid var(--border); margin-left: 17px;
}
.g3s_step:last-child { border-left-color: transparent; padding-bottom: 0; }
.g3s_step::before {
  content: counter(g3s); position: absolute; left: -18px; top: -3px;
  width: 35px; height: 35px; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 0.94rem;
  border-radius: 50%; border: 3px solid var(--bg-base);
}
.g3s_step h3 { margin-bottom: 5px; }

/* callouts */
.g3s_note {
  background: var(--bg-card); border-left: 3px solid var(--highlight); border-radius: var(--r-sm);
  padding: 16px 18px; margin: 20px 0; font-size: 0.95rem;
}
.g3s_note--warn { border-left-color: var(--accent); }
.g3s_note b { color: var(--highlight); }

/* tables */
.g3s_tbl-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--border); border-radius: var(--r-md); }
.g3s_tbl { min-width: 560px; font-size: 0.92rem; }
.g3s_tbl caption { text-align: left; padding: 13px 15px 0; font-size: 0.83rem; color: var(--muted); }
.g3s_tbl th, .g3s_tbl td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--border); }
.g3s_tbl thead th {
  background: rgba(242, 106, 40, .12); color: var(--highlight);
  font-size: 0.79rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700;
}
.g3s_tbl tbody tr:last-child td { border-bottom: 0; }
.g3s_tbl tbody tr:hover { background: rgba(69, 37, 74, .34); }
.g3s_tbl td b { color: var(--highlight); }

/* screenshots */
.g3s_shot { margin: 22px 0; }
.g3s_shot img { width: 100%; border: 1px solid var(--border); border-radius: var(--r-md); }
.g3s_cap { margin-top: 9px; font-size: 0.82rem; color: var(--muted); }

/* pokies tiles */
.g3s_pokies { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0; }
.g3s_pokie {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: transform var(--tr), border-color var(--tr);
}
.g3s_pokie:hover { transform: translateY(-4px); border-color: var(--highlight); }
.g3s_pokie img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.g3s_pokie b { display: block; padding: 10px 11px; font-size: 0.86rem; font-weight: 700; }
.g3s_pokie small { display: block; padding: 0 11px 11px; }
/* text tile — used when the lobby leads with a pokie we hold no cover for */
.g3s_pokie--txt {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  min-height: 118px; padding: 16px 12px; text-align: center;
  background: linear-gradient(150deg, #3a1638, #22112c);
}
.g3s_pokie--txt b { padding: 0 0 4px; font-family: var(--ff-display); font-size: 1rem; color: var(--highlight); }

/* payment chips */
.g3s_chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.g3s_chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 9px 16px; font-size: 0.88rem; font-weight: 500;
}
.g3s_chip svg { width: 17px; height: 17px; flex-shrink: 0; }
.g3s_chip--off { opacity: .5; text-decoration: line-through; }

/* provider strip */
.g3s_provs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
.g3s_prov {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 56px; padding: 10px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md);
  font-family: var(--ff-display); font-size: 0.95rem; font-weight: 700; text-align: center;
  transition: color var(--tr), border-color var(--tr);
}
.g3s_prov:hover { color: var(--highlight); border-color: var(--highlight); }

/* ---------- 13. FAQ accordion ---------- */
.g3s_faq { margin: 22px 0 0; }
.g3s_faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 10px; }
.g3s_faq-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; min-height: 52px; padding: 14px 16px; text-align: left;
  font-family: var(--ff-display); font-size: 1.02rem; font-weight: 700;
}
.g3s_faq-btn::after {
  content: "+"; flex-shrink: 0; font-size: 1.4rem; line-height: 1; color: var(--accent);
  transition: transform var(--tr);
}
.g3s_faq-item.open .g3s_faq-btn::after { transform: rotate(45deg); }
.g3s_faq-item.open { border-color: var(--accent); }
.g3s_faq-a { display: none; padding: 0 16px 16px; font-size: 0.95rem; color: var(--muted); }
.g3s_faq-item.open .g3s_faq-a { display: block; }
.g3s_faq-a p { margin-bottom: 10px; }

/* ---------- 14. CTA band ---------- */
.g3s_cta {
  background: linear-gradient(140deg, #4a1050, #7a1f3d 58%, #b3341f);
  border: 1px solid rgba(245, 193, 61, .3);
  border-radius: var(--r-lg); padding: 28px 20px; margin: 34px 0; text-align: center;
}
.g3s_cta h2 { margin-bottom: 10px; }
.g3s_cta p { color: rgba(255, 255, 255, .88); max-width: 60ch; margin: 0 auto 18px; }

/* ---------- 15. footer ---------- */
.g3s_foot { border-top: 1px solid var(--border); padding: 34px 0 96px; font-size: 0.9rem; color: var(--muted); }
.g3s_foot-grid { display: grid; grid-template-columns: 1fr; gap: 26px; margin-bottom: 26px; }
.g3s_foot h4 { color: var(--text); font-family: var(--ff-body); font-size: 0.82rem; letter-spacing: .1em; text-transform: uppercase; }
.g3s_foot-links li { margin-bottom: 7px; }
.g3s_foot-links a:hover { color: var(--highlight); }
.g3s_badges { display: flex; flex-wrap: wrap; gap: 9px; margin: 16px 0; }
.g3s_badge {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 7px 12px; font-size: 0.79rem; font-weight: 500; color: var(--muted);
  transition: var(--tr);
}
.g3s_badge:hover { color: var(--text); border-color: var(--highlight); }
.g3s_badge svg { width: 15px; height: 15px; }
.g3s_badge--age { color: var(--highlight); border-color: var(--highlight); font-weight: 700; }
.g3s_foot-bottom { border-top: 1px solid var(--border); padding-top: 18px; font-size: 0.84rem; }
.g3s_foot-bottom p { margin-bottom: 9px; }
.g3s_stamp { color: var(--highlight); font-weight: 500; }

/* ---------- 16. sticky mobile CTA ---------- */
.g3s_sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(30, 10, 28, .97); border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.g3s_sticky-txt { flex: 1; min-width: 0; font-size: 0.82rem; line-height: 1.35; }
.g3s_sticky-txt b { display: block; color: var(--highlight); font-size: 0.9rem; }

/* ---------- 17. animations ---------- */
@keyframes g3s-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.g3s_hero-grid > * { animation: g3s-rise .5s ease both; }
.g3s_hero-grid > *:nth-child(2) { animation-delay: .1s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- 18. responsive ---------- */
@media (min-width: 480px) {
  .g3s_hero-btns { flex-direction: row; flex-wrap: wrap; }
  .g3s_pokies { grid-template-columns: repeat(3, 1fr); }
  .g3s_provs { grid-template-columns: repeat(3, 1fr); }
  .g3s_offer-fig { font-size: 2.7rem; }
}

@media (min-width: 768px) {
  :root { --pad-sec: 56px; }
  h1 { font-size: 2.7rem; }
  h2 { font-size: 1.9rem; }
  body { font-size: 17px; }
  .g3s_wrap { padding: 0 24px; }
  .g3s_trust { grid-template-columns: repeat(4, 1fr); }
  .g3s_grid--2 { grid-template-columns: repeat(2, 1fr); }
  .g3s_grid--3 { grid-template-columns: repeat(2, 1fr); }
  .g3s_pokies { grid-template-columns: repeat(4, 1fr); }
  .g3s_provs { grid-template-columns: repeat(4, 1fr); }
  .g3s_foot-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .g3s_cta { padding: 40px 34px; }
  .g3s_sticky { display: none; }
  .g3s_foot { padding-bottom: 34px; }
  .g3s_burger { display: none; }
  .g3s_mnav { display: none !important; }
  .g3s_links { display: flex; align-items: center; gap: 17px; font-size: 0.9rem; }
  .g3s_links a { color: var(--muted); font-weight: 500; transition: color var(--tr); }
  .g3s_links a:hover, .g3s_links a[aria-current="page"] { color: var(--highlight); }
  .g3s_nav-cta { display: inline-flex; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.1rem; }
  .g3s_hero { padding: 52px 0 60px; }
  .g3s_hero-grid { grid-template-columns: 1fr 400px; gap: 40px; align-items: center; }
  .g3s_grid--3 { grid-template-columns: repeat(3, 1fr); }
  .g3s_grid--4 { grid-template-columns: repeat(4, 1fr); }
  .g3s_pokies { grid-template-columns: repeat(5, 1fr); }
  .g3s_provs { grid-template-columns: repeat(6, 1fr); }
  .g3s_offer { padding: 30px 26px 26px; }
  .g3s_offer-fig { font-size: 2.9rem; }
}
