:root{
  --purple:#3c2d64; --purple-deep:#2d2257; --purple-ink:#241a52; --purple-soft:#efedf5;
  --orange:#ff8302; --orange-red:#ff3f1b; --magenta:#e70a8b;
  --blue:#009fe3; --blue-dark:#0079b8; --green:#27a35c; --green-dark:#1c8048;
  --bg:#ffffff; --bg-soft:#f5f5fa; --bg-alt:#f0eef7;
  --text:#2c2c3a; --muted:#6a6a7c; --border:#e7e6f0;
  --radius:14px; --radius-lg:22px; --shadow:0 10px 30px rgba(44,28,80,.10); --shadow-sm:0 4px 14px rgba(44,28,80,.08);
  --maxw:1200px; --header-h:64px;
  --font:'Poppins',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font);color:var(--text);background:var(--bg);line-height:1.65;font-size:16px;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:var(--blue);text-decoration:none}
a:hover{text-decoration:underline}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 18px}
.skip-link{position:absolute;left:-999px;top:0;background:var(--orange);color:#fff;padding:10px 16px;z-index:200;border-radius:0 0 8px 0}
.skip-link:focus{left:0}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5em;font-weight:700;font-size:.95rem;
  padding:.72em 1.5em;border-radius:999px;border:2px solid transparent;cursor:pointer;transition:.18s;text-align:center;line-height:1.1}
.btn:hover{text-decoration:none;transform:translateY(-2px)}
.btn-blue{background:var(--blue);color:#fff}
.btn-blue:hover{background:var(--blue-dark);color:#fff}
.btn-orange{background:var(--orange);color:#fff}
.btn-orange:hover{background:#e87503;color:#fff}
.btn-white{background:#fff;color:var(--purple);border-color:#fff}
.btn-white:hover{background:transparent;color:#fff}
.btn-outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.7)}
.btn-outline:hover{background:#fff;color:var(--purple)}
.btn-ghost{background:transparent;color:var(--blue);border-color:var(--blue)}
.btn-ghost:hover{background:var(--blue);color:#fff}
.btn-lg{font-size:1.05rem;padding:.85em 1.9em}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:120;background:var(--purple);color:#fff}
.header-bar{display:flex;align-items:center;gap:12px;height:var(--header-h)}
.header-left{display:flex;align-items:center;gap:6px}
.brand{display:flex;align-items:center;gap:10px;margin-right:auto}
.brand img{height:42px;width:auto}
.brand .brand-text{display:none;font-weight:800;font-size:1.05rem;letter-spacing:.2px}
.brand .brand-text b{color:var(--orange)}
.header-actions{display:flex;align-items:center;gap:8px}
.hdr-link{display:none;align-items:center;gap:6px;color:#fff;font-weight:600;font-size:.92rem;padding:6px 10px;border-radius:999px}
.hdr-link:hover{text-decoration:none;background:rgba(255,255,255,.12)}
.hdr-link svg{width:18px;height:18px}
.btn-sm{padding:.5em 1.05em;font-size:.85rem}
.menu-btn{display:inline-flex;align-items:center;gap:8px;height:40px;background:transparent;border:0;cursor:pointer;padding:8px;border-radius:10px}
.menu-btn:hover{background:rgba(255,255,255,.12)}
.menu-btn .bars{display:flex;flex-direction:column;justify-content:center;gap:5px;width:24px}
.menu-btn .bars i{display:block;height:3px;width:100%;background:var(--orange);border-radius:3px}
.menu-label{display:none;font-weight:600}
.menu-desktop,.results-link{display:none}
.menu-mobile,.signup-mobile{display:inline-flex}
/* game nav strip */
.game-nav{background:var(--purple-deep);border-top:1px solid rgba(255,255,255,.08)}
.game-nav-inner{display:flex;gap:0;overflow-x:auto;justify-content:flex-start;scrollbar-width:none}
.game-nav-inner::-webkit-scrollbar{display:none}
.game-nav a{flex:0 0 auto;display:flex;align-items:center;gap:8px;color:#fff;font-weight:800;font-size:.82rem;
  letter-spacing:.5px;text-transform:uppercase;padding:11px 18px;border-right:1px solid rgba(255,255,255,.08);opacity:.92}
.game-nav a:hover{opacity:1;background:rgba(255,255,255,.07);text-decoration:none}
.game-nav a .dot{width:9px;height:9px;border-radius:50%}

/* ---------- Drawer ---------- */
.overlay{position:fixed;inset:0;background:rgba(28,20,52,.55);opacity:0;visibility:hidden;transition:.25s;z-index:130}
.overlay.open{opacity:1;visibility:visible}
.drawer{position:fixed;top:0;left:0;height:100%;width:300px;max-width:86vw;background:#fff;z-index:140;
  transform:translateX(-100%);transition:transform .28s ease;display:flex;flex-direction:column;box-shadow:6px 0 30px rgba(0,0,0,.2)}
.drawer.open{transform:translateX(0)}
.drawer-head{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;background:var(--purple);color:#fff}
.drawer-head img{height:38px}
.drawer-close{background:transparent;border:0;color:#fff;font-size:1.7rem;cursor:pointer;line-height:1;width:38px;height:38px}
.drawer nav{padding:8px 0;overflow-y:auto}
.drawer nav a{display:block;padding:13px 22px;color:var(--purple-ink);font-weight:600;border-bottom:1px solid var(--border)}
.drawer nav a:hover{background:var(--purple-soft);text-decoration:none}
.drawer-cta{padding:18px 22px;margin-top:auto;display:grid;gap:10px}

/* ---------- Hero ---------- */
.hero{position:relative;color:#fff;background:var(--purple);overflow:hidden}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;z-index:0}
.hero-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(105deg,rgba(44,28,80,.92) 0%,rgba(44,28,80,.62) 45%,rgba(44,28,80,.15) 100%)}
.hero-inner{position:relative;z-index:1;padding:46px 0 52px;max-width:640px}
.hero .eyebrow{font-style:italic;font-weight:600;font-size:1.15rem;color:#fff;opacity:.95;margin-bottom:6px;text-shadow:0 1px 10px rgba(18,10,38,.55)}
.hero .hero-title{font-size:2.15rem;font-weight:800;line-height:1.12;margin-bottom:14px;text-shadow:0 2px 20px rgba(18,10,38,.6),0 1px 3px rgba(18,10,38,.5)}
.hero .hero-sub{font-size:1.05rem;opacity:.96;margin-bottom:24px;max-width:520px;text-shadow:0 1px 12px rgba(18,10,38,.55)}
.hero-btns{display:flex;flex-wrap:wrap;gap:12px}
.hero-badge{display:inline-block;background:var(--orange);color:#fff;font-weight:700;font-size:.78rem;text-transform:uppercase;
  letter-spacing:.6px;padding:5px 12px;border-radius:999px;margin-bottom:14px}

/* ---------- Sections ---------- */
section{position:relative}
.band{padding:46px 0}
.band-soft{background:var(--bg-soft)}
.band-alt{background:var(--bg-alt)}
.section-title{text-align:center;color:var(--purple-ink);font-weight:800;font-size:1.5rem;margin-bottom:6px}
.section-lead{text-align:center;color:var(--muted);max-width:620px;margin:0 auto 30px}
.faux-h{font-weight:800;color:var(--purple-ink)}

/* play-all cards */
.cards{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.gcard{position:relative;border-radius:var(--radius-lg);overflow:hidden;color:#fff;padding:20px 18px 18px;min-height:230px;
  display:flex;flex-direction:column;justify-content:flex-end;box-shadow:var(--shadow-sm);transition:.2s}
.gcard:hover{transform:translateY(-4px);text-decoration:none;color:#fff;box-shadow:var(--shadow)}
.gcard .gcard-img{position:absolute;top:14px;left:0;right:0;display:flex;justify-content:center}
.gcard .gcard-img img{height:96px;width:auto;filter:drop-shadow(0 6px 12px rgba(0,0,0,.25))}
.gcard h3,.gcard .gc-t{font-size:1rem;font-weight:700;margin-top:90px}
.gcard p,.gcard .gc-d{font-size:.85rem;opacity:.95;margin-bottom:12px}
.gcard .pill{align-self:flex-start;background:rgba(255,255,255,.95);color:var(--purple);font-weight:700;font-size:.8rem;padding:7px 16px;border-radius:999px}
.gc-kiwi{background:linear-gradient(160deg,#19b3e6,#0a73c4)}
.gc-bullseye{background:linear-gradient(160deg,#e5176b,#a3104f)}
.gc-keno{background:linear-gradient(160deg,#2bb56a,#157a45)}
.gc-strike{background:linear-gradient(160deg,#ec3fa0,#b3186f)}

/* promo banner (keno style) */
.promo{display:block;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);transition:.2s}
.promo:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.promo img{width:100%;display:block}

/* instant games row */
.games-row{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.game-tile{border-radius:var(--radius);overflow:hidden;background:#fff;box-shadow:var(--shadow-sm);transition:.2s;display:block}
.game-tile:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.game-tile img{width:100%;aspect-ratio:1/1;object-fit:cover}
.game-tile .gt-foot{display:flex;gap:8px;padding:10px}
.game-tile .gt-foot .btn{flex:1;padding:.5em .6em;font-size:.82rem}

/* slot grid */
.slot-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.slot{border-radius:var(--radius);overflow:hidden;background:#fff;box-shadow:var(--shadow-sm);transition:.2s;position:relative;display:block}
.slot:hover{transform:translateY(-4px);box-shadow:var(--shadow);text-decoration:none}
.slot img{width:100%;aspect-ratio:1/1;object-fit:cover}
.slot .slot-info{display:block;padding:9px 10px 11px}
.slot .slot-name{display:block;font-weight:700;font-size:.82rem;color:var(--purple-ink);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.slot .slot-prov{display:block;font-size:.72rem;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.slot .slot-play{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;opacity:0;
  background:rgba(36,26,82,.55);transition:.2s}
.slot:hover .slot-play{opacity:1}
.slot .slot-play span{background:var(--orange);color:#fff;font-weight:700;padding:9px 20px;border-radius:999px;font-size:.85rem}

/* feature/tools icons */
.tools{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.tool{text-align:center}
.tool img{height:88px;width:auto;margin:0 auto 12px}
.tool h3,.tool .t-t{color:var(--purple-ink);font-weight:700;font-size:1rem;margin-bottom:6px}
.tool p{font-size:.86rem;color:var(--muted)}

/* story cards */
.stories{display:grid;grid-template-columns:1fr;gap:18px}
.story{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);background:#fff}
.story img{width:100%;height:170px;object-fit:cover}
.story .story-body{padding:16px 18px}
.story .story-body.y{background:var(--orange)}
.story .story-body.p{background:var(--magenta);color:#fff}
.story .story-body .st-t{font-weight:700;color:var(--purple-ink);margin-bottom:6px}
.story .story-body.p .st-t{color:#fff}
.story .story-body p{font-size:.85rem;color:rgba(36,26,82,.85)}
.story .story-body.p p{color:rgba(255,255,255,.9)}
.story .story-body a{font-weight:700;color:var(--purple-ink)}
.story .story-body.p a{color:#fff}

/* trust strip */
.trust{display:flex;flex-wrap:wrap;gap:10px 26px;justify-content:center;align-items:center;color:var(--muted);font-size:.82rem}
.trust span{display:inline-flex;align-items:center;gap:7px;font-weight:600}
.trust .age{background:var(--purple);color:#fff;width:30px;height:30px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-size:.72rem;font-weight:800}

/* ---------- SEO ARTICLE ---------- */
.article{padding:44px 0 50px;background:#fff}
.article .container{max-width:880px}
.article h1{font-size:1.95rem;font-weight:800;color:var(--purple-ink);line-height:1.15;margin-bottom:18px}
.article h2{font-size:1.4rem;font-weight:800;color:var(--purple-ink);margin:34px 0 12px;padding-top:8px}
.article h3{font-size:1.1rem;font-weight:700;color:var(--purple);margin:22px 0 8px}
.article p{margin:0 0 15px}
.article .lead{font-size:1.12rem;color:#43435a;font-weight:500}
.article ul,.article ol{margin:0 0 18px;padding-left:0;list-style:none}
.article ul li,.article ol li{position:relative;padding-left:30px;margin-bottom:9px}
.article ul li::before{content:"";position:absolute;left:6px;top:11px;width:8px;height:8px;border-radius:50%;background:var(--orange)}
.article ol{counter-reset:step}
.article ol li{counter-increment:step}
.article ol li::before{content:counter(step);position:absolute;left:0;top:1px;width:22px;height:22px;background:var(--blue);
  color:#fff;border-radius:50%;font-size:.78rem;font-weight:700;display:flex;align-items:center;justify-content:center}
.article a{color:var(--blue);font-weight:600;text-decoration:underline}
.article strong{color:var(--purple-ink)}
.table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:0 0 22px;border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-sm)}
.article table{width:100%;border-collapse:collapse;min-width:520px;font-size:.92rem}
.article table th{background:var(--purple);color:#fff;text-align:left;padding:12px 14px;font-weight:600;white-space:nowrap}
.article table td{padding:11px 14px;border-bottom:1px solid var(--border)}
.article table tr:nth-child(even) td{background:var(--bg-soft)}
.article table tr:hover td{background:var(--purple-soft)}

/* FAQ accordion */
.faq{margin:8px 0 24px}
.faq details{border-bottom:1px solid var(--border)}
.faq summary{list-style:none;cursor:pointer;padding:16px 40px 16px 4px;position:relative;font-weight:700;color:var(--purple-ink);font-size:1rem}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"";position:absolute;right:8px;top:20px;width:11px;height:11px;border-right:2.5px solid var(--blue);
  border-bottom:2.5px solid var(--blue);transform:rotate(45deg);transition:.2s}
.faq details[open] summary::after{transform:rotate(-135deg);top:24px}
.faq .faq-a{padding:0 4px 18px}
.faq .faq-a p{margin-bottom:10px}

/* in-article CTA box */
.cta-box{background:linear-gradient(135deg,var(--purple),var(--purple-deep));color:#fff;border-radius:var(--radius-lg);
  padding:28px 26px;text-align:center;margin:30px 0}
.cta-box .cb-t{font-size:1.25rem;font-weight:800;margin-bottom:8px}
.cta-box p{color:rgba(255,255,255,.9);margin-bottom:16px}

/* breadcrumb */
.crumbs{background:var(--bg-soft);font-size:.82rem;color:var(--muted);padding:10px 0;border-bottom:1px solid var(--border)}
.crumbs a{color:var(--muted)}
.crumbs a:hover{color:var(--blue)}
.crumbs .sep{margin:0 7px;opacity:.6}

/* ---------- Footer ---------- */
.site-footer{background:#fff;border-top:1px solid var(--border);padding:40px 0 24px;font-size:.9rem}
.footer-grid{display:grid;grid-template-columns:1fr;gap:30px}
.footer-col h4{color:var(--blue);font-size:.95rem;font-weight:700;margin-bottom:12px}
.footer-col .phone{font-size:1.4rem;font-weight:800;color:var(--purple-ink);margin-bottom:6px}
.footer-col .email{color:var(--blue);font-weight:600}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:8px}
.footer-col ul li a{color:var(--blue);font-weight:500}
.social{display:flex;flex-wrap:wrap;gap:14px;margin:10px 0 16px}
.social a{display:inline-flex;align-items:center;gap:6px;color:var(--blue);font-weight:600;font-size:.85rem}
.social a svg{width:18px;height:18px}
.stores{display:flex;gap:12px;flex-wrap:wrap}
.store-badge{display:inline-flex;align-items:center;gap:8px;background:#000;color:#fff;border-radius:9px;padding:8px 14px;font-weight:600;min-width:135px}
.store-badge:hover{text-decoration:none;color:#fff;opacity:.88}
.store-badge svg{width:22px;height:22px;flex:0 0 auto}
.store-badge small{display:block;font-size:.62rem;opacity:.85;font-weight:400;line-height:1}
.store-badge b{font-size:.95rem;line-height:1.1}
.footer-brandcol{display:flex;flex-direction:column;gap:16px;align-items:flex-start}
.footer-brandcol img{height:74px;width:auto}
.footer-bottom{border-top:1px solid var(--border);margin-top:28px;padding-top:18px;display:flex;flex-direction:column;gap:14px;
  align-items:flex-start;color:var(--muted);font-size:.82rem}
.footer-legal{line-height:1.6}
.footer-legal a{color:var(--muted);text-decoration:underline}
.rg-badges{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.rg-badges .age18{background:var(--purple);color:#fff;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.8rem}
.rg-badges img{height:40px;width:auto}

/* ---------- 404 ---------- */
.err-page{min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:60px 18px;
  background:linear-gradient(135deg,var(--purple),var(--purple-deep));color:#fff}
.err-page .code{font-size:5rem;font-weight:800;color:var(--orange);line-height:1}
.err-page h1{font-size:1.8rem;margin:8px 0 12px}
.err-page p{opacity:.92;max-width:440px;margin:0 auto 22px}

/* ---------- Responsive ---------- */
@media(min-width:768px){
  body{font-size:17px}
  .cards{grid-template-columns:repeat(4,1fr)}
  .games-row{grid-template-columns:repeat(3,1fr)}
  .slot-grid{grid-template-columns:repeat(4,1fr)}
  .tools{grid-template-columns:repeat(4,1fr)}
  .stories{grid-template-columns:1fr 1fr}
  .hero .hero-title{font-size:2.6rem}
  .section-title{font-size:1.85rem}
  .band{padding:56px 0}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr}
  .footer-bottom{flex-direction:row;justify-content:space-between;align-items:center}
}
@media(max-width:767px){.game-nav{display:none}}
@media(min-width:1024px){
  :root{--header-h:70px}
  .header-bar{display:grid;grid-template-columns:1fr auto 1fr;gap:12px}
  .header-left{justify-self:start}
  .brand{margin-right:0;justify-self:center}
  .header-actions{justify-self:end}
  .brand .brand-text{display:block}
  .hdr-link{display:inline-flex}
  .menu-label{display:inline}
  .menu-desktop,.results-link{display:inline-flex}
  .menu-mobile,.signup-mobile{display:none}
  .hero .hero-title{font-size:3rem}
  .slot-grid{grid-template-columns:repeat(6,1fr)}
  .article h1{font-size:2.3rem}
  .article h2{font-size:1.6rem}
}
@media(prefers-reduced-motion:reduce){*{transition:none!important;scroll-behavior:auto}}
