@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --bg-base:#f5f6fb;
  --bg-card:#ffffff;
  --accent:#4d3df7;
  --highlight:#12b981;
  --text:#131427;
  --muted:#5c6180;
  --border:#e1e3ef;
  --font-display:'Space Grotesk',Helvetica,Arial,sans-serif;
  --font-body:'IBM Plex Sans',system-ui,sans-serif;
  --radius:14px;
  --tr:.18s ease;
}

html{scroll-behavior:smooth}
body{background:var(--bg-base);color:var(--text);font-family:var(--font-body);font-size:1rem;line-height:1.66;-webkit-font-smoothing:antialiased}
body::-webkit-scrollbar{width:10px}
body::-webkit-scrollbar-track{background:var(--bg-base)}
body::-webkit-scrollbar-thumb{background:var(--border);border-radius:6px}
body::-webkit-scrollbar-thumb:hover{background:var(--accent)}

h1,h2,h3,h4{font-family:var(--font-display);line-height:1.14;letter-spacing:-.015em}
h2{font-size:1.72rem;font-weight:700;margin:2.4rem 0 .7rem}
h3{font-size:1.28rem;font-weight:600;margin:1.6rem 0 .4rem}
h4{font-size:1.06rem;font-weight:600;margin:1.15rem 0 .3rem}
p{margin:.85rem 0}
strong{color:var(--accent);font-weight:600}
a{color:var(--accent);text-decoration:none;transition:color var(--tr)}
a:hover{color:var(--highlight)}
a:focus-visible,button:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
ul,ol{margin:.85rem 0 .85rem 1.2rem}
li{margin:.4rem 0}
em{color:var(--muted);font-style:italic}
small{color:var(--muted);font-size:.85rem}

.rv8_container{width:100%;max-width:920px;margin:0 auto;padding:0 1.1rem}

/* buttons */
.rv8_btn{display:inline-block;font-family:var(--font-body);font-weight:600;text-align:center;border:0;border-radius:999px;cursor:pointer;padding:.92rem 1.7rem;font-size:1rem;line-height:1.15;letter-spacing:.005em;transition:transform var(--tr),box-shadow var(--tr),background var(--tr);min-height:44px}
.rv8_btn-primary{background:var(--accent);color:#fff;box-shadow:0 6px 20px rgba(77,61,247,.28)}
.rv8_btn-primary:hover{color:#fff;transform:translateY(-2px);box-shadow:0 11px 28px rgba(77,61,247,.4)}
.rv8_btn-highlight{background:var(--highlight);color:#03271b;box-shadow:0 6px 20px rgba(18,185,129,.3)}
.rv8_btn-highlight:hover{color:#03271b;transform:translateY(-2px);box-shadow:0 11px 28px rgba(18,185,129,.42)}
.rv8_btn-outline{background:transparent;color:var(--accent);box-shadow:inset 0 0 0 1.5px var(--border)}
.rv8_btn-outline:hover{color:var(--accent);box-shadow:inset 0 0 0 1.5px var(--accent)}
.rv8_btn-ghost{background:transparent;color:var(--muted);padding:.6rem .4rem}
.rv8_btn-ghost:hover{color:var(--accent)}
.rv8_btn-sm{padding:.55rem 1.05rem;font-size:.9rem}
.rv8_btn-lg{padding:1.08rem 2.1rem;font-size:1.06rem}
.rv8_btn-full{display:block;width:100%}

/* nav */
.rv8_nav{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.93);backdrop-filter:blur(10px);border-bottom:1px solid var(--border)}
.rv8_navrow{display:flex;align-items:center;gap:1rem;height:64px}
.rv8_logo{display:flex;align-items:center}
.rv8_logo img{display:block}
.rv8_navlinks{display:none;gap:1.1rem;margin-left:auto}
.rv8_navlinks a{color:var(--muted);font-weight:500;font-size:.9rem}
.rv8_navlinks a:hover,.rv8_navlinks a.rv8_active{color:var(--accent)}
.rv8_navcta{display:none}
.rv8_burger{margin-left:auto;background:none;border:1px solid var(--border);border-radius:11px;width:44px;height:44px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;cursor:pointer}
.rv8_burger span{width:19px;height:2px;background:var(--accent);display:block;border-radius:2px}
.rv8_mobilenav{display:none;flex-direction:column;border-top:1px solid var(--border);background:var(--bg-card);padding:.4rem 1.1rem 1rem}
.rv8_mobilenav.open{display:flex}
.rv8_mobilenav a{padding:.7rem 0;color:var(--text);font-weight:500;border-bottom:1px solid var(--border)}
.rv8_mobilenav a:last-child{border-bottom:0}

/* ticker */
.rv8_ticker{background:var(--text);overflow:hidden;white-space:nowrap}
.rv8_ticker p{margin:0;display:inline-block;padding:.46rem 0;font-size:.83rem;color:#c9ccdf;animation:rv8-tick 30s linear infinite}
.rv8_ticker strong{color:#8fe8c8}
@keyframes rv8-tick{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* hero — LAYOUT C: sidebar-first */
.rv8_hero{position:relative;overflow:hidden;padding:2.3rem 0 2rem;border-bottom:1px solid var(--border);background:radial-gradient(ellipse 80% 65% at 5% 0%,rgba(77,61,247,.13),transparent 60%),radial-gradient(ellipse 70% 60% at 100% 10%,rgba(18,185,129,.12),transparent 58%)}
.rv8_herogrid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.rv8_eyebrow{font-size:.72rem;letter-spacing:.19em;text-transform:uppercase;color:var(--accent);margin-bottom:.75rem;font-weight:700}
.rv8_hero h1{font-size:clamp(1.95rem,7.2vw,3.15rem);font-weight:700;text-wrap:balance;margin-bottom:.45rem}
.rv8_rule{width:68px;height:4px;background:linear-gradient(90deg,var(--accent),var(--highlight));margin:.95rem 0 1rem;border-radius:3px}
.rv8_lede{font-size:1.08rem;color:var(--muted);max-width:60ch}

/* hero sidebar card */
.rv8_side{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.35rem 1.25rem;box-shadow:0 12px 34px rgba(19,20,39,.07)}
.rv8_side h2{font-size:1.08rem;margin:0 0 .55rem}
.rv8_side .rv8_big{font-family:var(--font-display);font-weight:700;font-size:clamp(1.7rem,6.4vw,2.35rem);color:var(--accent);display:block;line-height:1.06;margin:.15rem 0 .45rem;letter-spacing:-.02em}
.rv8_sidelist{list-style:none;margin:.7rem 0 1rem;padding:0;font-size:.92rem}
.rv8_sidelist li{display:flex;justify-content:space-between;gap:.8rem;padding:.42rem 0;border-bottom:1px dashed var(--border);color:var(--muted)}
.rv8_sidelist li:last-child{border-bottom:0}
.rv8_sidelist b{color:var(--text);font-weight:600;text-align:right}
.rv8_side small{display:block;margin-top:.6rem;line-height:1.45}

/* content */
.rv8_content{padding:1rem 1.1rem 3rem}
.rv8_content>p{max-width:70ch}

/* trust chips */
.rv8_trust{display:flex;flex-wrap:wrap;gap:.5rem;margin:1.2rem 0 .3rem;list-style:none;padding:0}
.rv8_trust li{font-size:.82rem;color:var(--muted);background:var(--bg-card);border:1px solid var(--border);border-radius:999px;padding:.36rem .85rem}
.rv8_trust li strong{color:var(--accent)}

/* CTA band */
.rv8_ctaband{margin:1.8rem 0;text-align:center;padding:1.7rem 1.15rem;background:linear-gradient(130deg,rgba(77,61,247,.09),rgba(18,185,129,.09));border:1px solid var(--border);border-radius:var(--radius)}
.rv8_ctaband p{margin:.1rem 0 1rem;color:var(--muted)}

/* offer card */
.rv8_offer{margin:1.5rem 0;padding:1.6rem 1.25rem;background:var(--bg-card);border:1px solid var(--border);border-top:4px solid var(--accent);border-radius:var(--radius);text-align:center;box-shadow:0 12px 34px rgba(19,20,39,.06)}
.rv8_offer .rv8_big{font-family:var(--font-display);font-weight:700;font-size:clamp(1.75rem,6.8vw,2.6rem);color:var(--accent);display:block;line-height:1.06;margin:.2rem 0 .45rem;letter-spacing:-.02em}
.rv8_offer p{color:var(--muted);margin:.4rem 0 1rem}
.rv8_offer .rv8_code{display:inline-block;font-weight:700;letter-spacing:.15em;border:1.5px dashed var(--accent);border-radius:10px;padding:.5rem 1.05rem;margin:.25rem 0 .9rem;color:var(--text);background:rgba(77,61,247,.05)}

/* tables */
.rv8_tablewrap{overflow-x:auto;margin:1.2rem 0;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-card)}
.rv8_table{width:100%;border-collapse:collapse;font-size:.93rem;min-width:540px}
.rv8_table caption{text-align:left;color:var(--muted);font-size:.83rem;padding:.62rem .95rem;border-bottom:1px solid var(--border)}
.rv8_table th{background:rgba(77,61,247,.05);color:var(--accent);font-weight:600;text-align:left;padding:.72rem .95rem;border-bottom:1px solid var(--border)}
.rv8_table td{padding:.7rem .95rem;border-bottom:1px solid var(--border);color:var(--text)}
.rv8_table tbody tr:last-child td{border-bottom:0}
.rv8_table tbody tr:hover{background:rgba(77,61,247,.03)}

/* steps */
.rv8_steps{counter-reset:step;list-style:none;margin:1.2rem 0}
.rv8_steps li{counter-increment:step;position:relative;padding:.88rem 1rem .88rem 3.25rem;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);margin:.5rem 0}
.rv8_steps li::before{content:counter(step);position:absolute;left:.9rem;top:50%;transform:translateY(-50%);width:30px;height:30px;border-radius:50%;background:var(--accent);color:#fff;font-weight:700;display:flex;align-items:center;justify-content:center;font-size:.9rem}

/* pokies grid with covers */
.rv8_slots{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;margin:1.3rem 0;list-style:none;padding:0}
.rv8_slot{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.rv8_slot img{display:block;width:100%;height:auto;aspect-ratio:3/2;object-fit:cover}
.rv8_slot span{display:block;padding:.6rem .75rem .7rem}
.rv8_slot b{display:block;font-family:var(--font-display);font-size:.98rem;font-weight:600;color:var(--text)}
.rv8_slot i{display:block;color:var(--muted);font-size:.8rem;font-style:normal}

/* plain card grid */
.rv8_grid{display:grid;grid-template-columns:1fr;gap:.7rem;margin:1.3rem 0;list-style:none;padding:0}
.rv8_gcard{background:var(--bg-card);border:1px solid var(--border);border-left:3px solid var(--highlight);border-radius:var(--radius);padding:.85rem 1rem}
.rv8_gcard b{display:block;font-family:var(--font-display);font-size:1.1rem;font-weight:600;color:var(--text)}
.rv8_gcard span{display:block;color:var(--muted);font-size:.85rem}

/* know card */
.rv8_know{margin:2rem 0;padding:1.4rem 1.3rem;background:var(--bg-card);border:1px solid var(--border);border-left:4px solid var(--accent);border-radius:var(--radius)}
.rv8_know h2{margin-top:0;font-size:1.4rem}
.rv8_know ul{margin-left:1.05rem}

/* split cards */
.rv8_cards{display:grid;grid-template-columns:1fr;gap:.85rem;margin:1.3rem 0}
.rv8_card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.1rem 1.2rem}
.rv8_card h3{margin-top:0}
.rv8_card p:last-child{margin-bottom:0}

/* FAQ */
.rv8_faq{margin:2.2rem 0}
.rv8_faq-item{border:1px solid var(--border);border-radius:var(--radius);margin:.5rem 0;background:var(--bg-card);overflow:hidden}
.rv8_faq-btn{width:100%;display:flex;justify-content:space-between;align-items:center;gap:1rem;background:none;border:0;color:var(--text);font-family:var(--font-body);font-weight:600;font-size:1rem;text-align:left;padding:1rem 1.1rem;cursor:pointer;min-height:44px}
.rv8_faq-ico{flex:0 0 14px;width:14px;height:14px;position:relative}
.rv8_faq-ico::before,.rv8_faq-ico::after{content:"";position:absolute;inset:0;margin:auto;background:var(--accent);transition:transform var(--tr)}
.rv8_faq-ico::before{width:14px;height:2px}
.rv8_faq-ico::after{width:2px;height:14px}
.rv8_faq-item.open .rv8_faq-ico::after{transform:rotate(90deg)}
.rv8_faq-panel{display:none;padding:0 1.1rem 1.05rem;color:var(--muted)}
.rv8_faq-item.open .rv8_faq-panel{display:block}

/* responsible gambling strip */
.rv8_rg{margin:2.2rem 0 0;padding:1.3rem;border:1px dashed var(--border);border-radius:var(--radius);color:var(--muted);font-size:.93rem;background:var(--bg-card)}
.rv8_rg h2{font-size:1.16rem;color:var(--text);margin:0 0 .35rem}

/* breadcrumb */
.rv8_crumb{font-size:.82rem;color:var(--muted);padding:.9rem 0 0}
.rv8_crumb a{color:var(--muted)}
.rv8_crumb a:hover{color:var(--accent)}

/* footer */
.rv8_footer{border-top:1px solid var(--border);background:var(--bg-card);padding:2rem 0 5.5rem;color:var(--muted);font-size:.88rem}
.rv8_footlinks{display:flex;flex-wrap:wrap;gap:.95rem;margin-bottom:1rem}
.rv8_footlinks a{color:var(--muted)}
.rv8_footlinks a:hover{color:var(--accent)}
.rv8_aff{font-size:.85rem;opacity:.9;max-width:70ch}

/* sticky mobile CTA */
.rv8_sticky{position:fixed;left:.8rem;right:.8rem;bottom:.8rem;z-index:60;text-align:center;padding:1rem;border-radius:999px;background:var(--accent);color:#fff;font-weight:600;box-shadow:0 10px 28px rgba(77,61,247,.45)}
.rv8_sticky:hover{color:#fff}

/* animations */
@keyframes rv8-rise{from{opacity:0;transform:translateY(13px)}to{opacity:1;transform:none}}
.rv8_animate{animation:rv8-rise .45s ease both}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
}

@media (min-width:480px){
  .rv8_grid{grid-template-columns:1fr 1fr}
}

@media (min-width:768px){
  .rv8_navlinks{display:flex}
  .rv8_navcta{display:inline-block}
  .rv8_burger,.rv8_mobilenav{display:none}
  .rv8_mobilenav.open{display:none}
  .rv8_sticky{display:none}
  .rv8_footer{padding-bottom:2rem}
  .rv8_hero{padding-top:3.1rem}
  .rv8_cards{grid-template-columns:1fr 1fr}
  .rv8_slots{grid-template-columns:repeat(3,1fr)}
}

@media (min-width:1024px){
  .rv8_container{max-width:1010px}
  .rv8_herogrid{grid-template-columns:360px 1fr;gap:2.4rem;align-items:start}
  .rv8_hero h1{font-size:clamp(2.5rem,4.6vw,3.5rem)}
  .rv8_side{position:sticky;top:82px}
  .rv8_grid{grid-template-columns:repeat(3,1fr)}
  .rv8_slots{grid-template-columns:repeat(5,1fr)}
}
