:root{
  /* Casinok palette (sampled from casinok.com) */
  --bg:#0f1922;
  --panel:#17222c;
  --raise:#212f3c;
  --line:rgba(255,255,255,.08);
  --text:#f2f7fb;
  --muted:#93a4b5;
  --green:#00ce7a;
  --green2:#3dffb0;
  --blue:#385cfe;
  --gold:#ffc83d;
  --radius:20px;
  --font:'Montserrat',system-ui,-apple-system,'Segoe UI',sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{background:var(--bg);color:var(--text);font-family:var(--font);font-size:16px;line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{font:inherit;color:inherit;cursor:pointer;border:0;background:none}

.wrap{width:min(1180px,100% - 40px);margin-inline:auto}
.wrap--narrow{width:min(820px,100% - 40px)}
.center{text-align:center;margin-top:44px}
.g{background:linear-gradient(90deg,var(--green),var(--green2));-webkit-background-clip:text;background-clip:text;color:transparent}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;font-weight:800;border-radius:12px;transition:transform .2s,box-shadow .2s,background .2s;white-space:nowrap}
.btn--sm{padding:10px 20px;font-size:14px}
.btn--lg{padding:18px 34px;font-size:17px;border-radius:14px}
.btn--green{background:var(--green);color:#03231a;box-shadow:0 10px 28px -8px rgba(0,206,122,.7)}
.btn--green:hover{transform:translateY(-2px);background:#12e08b;box-shadow:0 16px 36px -8px rgba(0,206,122,.9)}
.btn--ghost{border:1.5px solid rgba(255,255,255,.16);background:rgba(255,255,255,.04)}
.btn--ghost:hover{background:rgba(255,255,255,.1)}
.btn--dark{background:rgba(9,16,22,.75);color:#fff;border:1px solid rgba(255,255,255,.14)}
.btn--dark:hover{background:var(--green);color:#03231a;border-color:var(--green)}
.hero__cta .btn--green,.final .btn--green{animation:pulse 2.6s infinite}
@keyframes pulse{0%,100%{box-shadow:0 10px 28px -8px rgba(0,206,122,.7),0 0 0 0 rgba(0,206,122,.5)}50%{box-shadow:0 10px 28px -8px rgba(0,206,122,.7),0 0 0 14px rgba(0,206,122,0)}}

/* ---------- header ---------- */
.header{position:sticky;top:0;z-index:50;background:rgba(23,34,44,.88);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border-bottom:1px solid var(--line)}
.header__in{display:flex;align-items:center;justify-content:space-between;gap:20px;height:64px}
.logo{display:flex;align-items:center;gap:0;font-size:24px}
.logo__text{font-weight:900;font-size:1em;letter-spacing:.01em;line-height:1}
.logo__img{height:.85em;width:auto;margin-left:.06em}
.nav{display:flex;gap:28px;font-size:14px;font-weight:600;color:var(--muted)}
.nav a:hover{color:var(--text)}

/* ---------- hero ---------- */
.hero{position:relative;padding:56px 0 0;overflow:hidden;background:radial-gradient(1100px 560px at 82% 0,rgba(56,92,254,.26),transparent 62%),radial-gradient(800px 500px at 0 100%,rgba(0,206,122,.14),transparent 60%),var(--bg)}
.hero__glow{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none}
.hero__glow--1{width:380px;height:380px;background:rgba(0,206,122,.16);left:-140px;top:140px}
.hero__glow--2{width:480px;height:480px;background:rgba(56,92,254,.2);right:-140px;bottom:-160px}
.hero__grid{position:relative;display:grid;grid-template-columns:1.05fr .95fr;gap:36px;align-items:end}
.hero__copy{padding-bottom:64px;align-self:center}

.tag{display:inline-flex;align-items:center;gap:10px;padding:8px 16px;border-radius:999px;background:var(--green);color:#000;font-size:12.5px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}

h1{font-weight:900;font-size:clamp(38px,5.6vw,72px);line-height:1.04;margin:20px 0 18px;letter-spacing:-.02em}
.hero__plus{font-size:.6em;font-weight:800;letter-spacing:-.01em}
.lead{font-size:17px;color:var(--muted);max-width:560px}
.lead b{color:var(--text)}

.code{margin:26px 0 24px;max-width:520px;padding:16px 18px 16px;border-radius:var(--radius);background:linear-gradient(var(--panel),var(--panel)) padding-box,linear-gradient(120deg,var(--green),var(--blue)) border-box;border:1.5px solid transparent}
.code__label{font-size:11.5px;text-transform:uppercase;letter-spacing:.14em;color:var(--muted);margin-bottom:6px;font-weight:600}
.code__row{display:flex;align-items:center;justify-content:space-between;gap:14px}
.code__value{font-weight:900;font-size:clamp(24px,4vw,34px);letter-spacing:.08em;color:var(--green)}
.code__copy{display:inline-flex;align-items:center;gap:8px;padding:11px 18px;border-radius:12px;background:var(--raise);font-weight:700;font-size:14px;transition:background .2s}
.code__copy:hover{background:#2b3d4d}
.code__copy.is-done{background:var(--green);color:#03231a}
.code__note{display:flex;gap:10px;align-items:flex-start;margin-top:14px;padding-top:14px;border-top:1px dashed rgba(255,255,255,.14);font-size:13.5px;line-height:1.5;color:var(--muted)}
.code__note svg{flex:none;margin-top:1px;color:var(--gold)}
.code__note b{color:var(--gold)}
.code__note u{text-decoration-color:var(--gold)}
.code--inline{display:inline-flex;align-items:center;gap:18px;margin:26px 0 24px;max-width:none}

.hero__cta{display:flex;flex-wrap:wrap;gap:14px}
.fine{margin-top:16px;font-size:12px;color:#6f8294;line-height:1.5}

/* ---------- character stage ---------- */
.stage{position:relative}
.stage__ring{position:absolute;border-radius:50%;background:radial-gradient(circle at 50% 45%,var(--r1,rgba(0,206,122,.6)) 0,var(--r2,rgba(56,92,254,.4)) 52%,transparent 71%);filter:blur(2px)}
.stage__char{position:absolute;left:50%;bottom:0;transform:translateX(-50%);height:100%;width:auto;max-width:none;filter:drop-shadow(0 14px 28px rgba(0,0,0,.45))}
.float{position:absolute;animation:bob 6s ease-in-out infinite}
@keyframes bob{0%,100%{transform:translateY(0) rotate(var(--rot,0deg))}50%{transform:translateY(-14px) rotate(calc(var(--rot,0deg) + 6deg))}}
.deco{filter:drop-shadow(0 8px 14px rgba(0,0,0,.45))}

.stage--hero{height:600px;width:min(500px,100%);justify-self:center}
.stage--hero .stage__ring{width:92%;aspect-ratio:1;left:4%;top:8%}
.stage--hero .stage__char{height:100%}

.pill{z-index:3;display:flex;flex-direction:column;align-items:center;padding:12px 20px;border-radius:16px;background:rgba(23,34,44,.88);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border:1px solid rgba(0,206,122,.45);box-shadow:0 14px 30px -10px rgba(0,0,0,.6);line-height:1.15}
.pill b{font-size:32px;font-weight:900;color:var(--green)}
.pill span{font-size:12.5px;font-weight:700;color:var(--text)}
.pill--a{left:-6%;top:26%;--rot:-4deg}
.pill--b{right:-3%;top:55%;--rot:4deg;animation-delay:-2.5s;border-color:rgba(56,92,254,.7)}
.pill--b b{color:#7a94ff}
.badge-ex{position:absolute;z-index:3;top:2%;left:50%;transform:translateX(-50%);padding:7px 22px;border-radius:999px;background:linear-gradient(90deg,var(--green),var(--blue));font-size:12px;font-weight:900;letter-spacing:.2em;box-shadow:0 10px 24px -6px rgba(0,206,122,.6)}

.d-gift1{width:92px;height:92px;left:-4%;bottom:24%;--rot:-8deg}
.d-gift2{width:74px;height:74px;right:0;bottom:14%;--rot:8deg;animation-delay:-3s}
.d-coin1{width:50px;height:50px;left:8%;top:9%;animation-delay:-1s}
.d-coin2{width:38px;height:38px;right:9%;top:35%;animation-delay:-4s}
.d-coin3{width:32px;height:32px;left:2%;top:50%;animation-delay:-2s}
.d-chip1{width:60px;height:60px;right:3%;top:9%;--rot:-12deg;animation-delay:-3.5s}
.d-chip2{width:52px;height:52px;left:14%;bottom:6%;--rot:10deg;animation-delay:-1.5s}
.d-spark1{width:26px;height:26px;left:24%;top:4%;animation-delay:-2s}
.d-spark2{width:20px;height:20px;right:19%;top:62%;animation-delay:-4.5s}

/* ---------- stats ---------- */
.stats{background:var(--panel);border-block:1px solid var(--line);position:relative}
.stats__grid{display:grid;grid-template-columns:repeat(5,1fr)}
.stat{padding:26px 12px;text-align:center;border-right:1px solid var(--line)}
.stat:last-child{border-right:0}
.stat b{display:block;font-size:clamp(24px,3vw,34px);font-weight:900;color:var(--green)}
.stat span{font-size:12.5px;color:var(--muted);font-weight:500}

/* ---------- sections ---------- */
.sec{padding:92px 0}
.sec--alt{background:var(--panel)}
.sec__head{text-align:center;max-width:720px;margin:0 auto 50px}
.sec__head p{color:var(--muted);margin-top:14px;font-size:16.5px}
.eyebrow{display:inline-block;margin-bottom:12px;font-size:12.5px;font-weight:800;letter-spacing:.18em;text-transform:uppercase;color:var(--green)}
h2{font-weight:900;font-size:clamp(28px,4vw,44px);line-height:1.15;letter-spacing:-.01em}

/* ---------- other bonuses ---------- */
.bcards{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.bcard{position:relative;display:grid;grid-template-columns:1fr 42%;min-height:360px;border-radius:26px;overflow:hidden;border:1px solid var(--bc,rgba(0,206,122,.35));background:radial-gradient(500px 300px at 100% 100%,var(--bg1),transparent 70%),linear-gradient(135deg,var(--bg2),var(--panel) 75%);transition:transform .3s,box-shadow .3s}
.bcard:hover{transform:translateY(-6px);box-shadow:0 26px 50px -24px var(--bc)}
.bcard__body{position:relative;z-index:2;display:flex;flex-direction:column;align-items:flex-start;padding:30px 0 30px 30px}
.bcard__tag{padding:5px 12px;border-radius:999px;background:rgba(255,255,255,.08);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--tc,var(--green2))}
.bcard h3{margin:16px 0 0;font-size:22px;font-weight:800}
.bcard__big{font-weight:900;font-size:clamp(46px,5vw,64px);line-height:1.05;margin:2px 0 8px;color:var(--tc,var(--green2));text-shadow:0 6px 30px var(--bc)}
.bcard p{font-size:14.5px;color:var(--muted);margin-bottom:22px;max-width:300px}
.bcard .btn{margin-top:auto}
.bcard--green{--bc:rgba(0,206,122,.45);--bg1:rgba(0,206,122,.28);--bg2:#0e3a33;--tc:#3dffb0;--r1:rgba(0,206,122,.6);--r2:rgba(0,206,122,.15)}
.bcard--blue{--bc:rgba(56,92,254,.6);--bg1:rgba(56,92,254,.4);--bg2:#1b2b74;--tc:#8ea4ff;--r1:rgba(90,120,255,.65);--r2:rgba(56,92,254,.15)}
.bcard--teal{--bc:rgba(0,190,220,.5);--bg1:rgba(0,190,220,.28);--bg2:#0c3a48;--tc:#5ee6ff;--r1:rgba(0,200,230,.55);--r2:rgba(0,206,122,.15)}
.bcard--purple{--bc:rgba(150,90,255,.55);--bg1:rgba(150,90,255,.34);--bg2:#2b1d63;--tc:#c4a3ff;--r1:rgba(160,110,255,.6);--r2:rgba(56,92,254,.15)}

.stage--card{align-self:end;height:100%;min-height:340px}
.stage--card .stage__ring{width:120%;aspect-ratio:1;left:-10%;bottom:-8%}
.stage--card .stage__char{height:96%;left:56%}
.c-coin1{width:38px;height:38px;right:10%;top:8%;animation-delay:-1s}
.c-coin2{width:28px;height:28px;right:6%;bottom:26%;animation-delay:-3s}
.c-gift{width:62px;height:62px;left:-14%;bottom:10%;--rot:-8deg;animation-delay:-2s;z-index:3}
.c-chip{width:46px;height:46px;right:4%;bottom:30%;--rot:10deg;animation-delay:-2.5s}
.c-spark{width:22px;height:22px;left:6%;top:14%;animation-delay:-4s}
.bnote{margin-top:26px;text-align:center;font-size:12.5px;color:#6f8294}

/* ---------- why cards ---------- */
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.card{padding:30px 26px;border-radius:var(--radius);background:var(--bg);border:1px solid var(--line);transition:transform .25s,border-color .25s}
.card:hover{transform:translateY(-6px);border-color:rgba(0,206,122,.55)}
.card__ico{display:grid;place-items:center;width:62px;height:62px;border-radius:16px;margin-bottom:20px;background:rgba(0,206,122,.12);border:1px solid rgba(0,206,122,.35);font-weight:900;font-size:18px;color:var(--green)}
.card h3{font-size:18px;margin-bottom:8px}
.card p{color:var(--muted);font-size:14.5px}

/* steps */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.step{position:relative;padding:34px 24px 26px;border-radius:var(--radius);background:var(--panel);border:1px solid var(--line)}
.step:not(:last-child)::after{content:"";position:absolute;top:56px;right:-20px;width:20px;height:2px;background:linear-gradient(90deg,var(--green),transparent)}
.step__n{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;margin-bottom:18px;background:var(--green);color:#03231a;font-weight:900}
.step h3{font-size:17px;margin-bottom:8px}
.step p{color:var(--muted);font-size:14.5px}
.step p b{color:var(--text)}
.step--warn{border-color:rgba(255,200,61,.6);background:linear-gradient(180deg,rgba(255,200,61,.1),var(--panel))}
.step--warn .step__n{background:var(--gold)}

.alert{display:flex;gap:16px;align-items:flex-start;margin-top:32px;padding:20px 24px;border-radius:var(--radius);background:rgba(255,200,61,.09);border:1px solid rgba(255,200,61,.5)}
.alert svg{flex:none;color:var(--gold);margin-top:2px}
.alert p{font-size:14.5px}

/* calculator */
.calc{display:grid;grid-template-columns:1fr 1fr;border-radius:28px;overflow:hidden;background:var(--bg);border:1px solid var(--line)}
.calcsec{padding:56px 0 8px}
.calc__left h2{font-size:clamp(26px,3vw,34px);margin:4px 0 24px}
.calc__left{padding:40px;background:radial-gradient(500px 300px at 0 0,rgba(56,92,254,.28),transparent 70%)}
.calc__right{padding:40px;background:rgba(0,0,0,.22);display:grid;gap:12px;align-content:center}
.calc__cur{display:inline-flex;padding:4px;border-radius:999px;background:rgba(255,255,255,.06);margin-bottom:30px}
.calc__cur button{padding:8px 18px;border-radius:999px;font-size:13.5px;font-weight:700;color:var(--muted)}
.calc__cur .is-on{background:var(--green);color:#03231a}
.calc__label{display:block;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);font-weight:600}
.calc__dep{font-weight:900;font-size:clamp(44px,6vw,66px);margin:6px 0 20px}
.calc__dep::before{content:attr(data-cur)}
input[type=range]{-webkit-appearance:none;appearance:none;width:100%;height:8px;border-radius:99px;outline:0;background:linear-gradient(90deg,var(--green) var(--p,8%),rgba(255,255,255,.12) var(--p,8%))}
input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:28px;height:28px;border-radius:50%;background:#fff;border:6px solid var(--green);box-shadow:0 4px 14px rgba(0,0,0,.5);cursor:pointer}
input[type=range]::-moz-range-thumb{width:16px;height:16px;border-radius:50%;background:#fff;border:6px solid var(--green);cursor:pointer}
.calc__scale{display:flex;justify-content:space-between;margin-top:10px;font-size:13px;color:var(--muted)}
.res{display:flex;justify-content:space-between;align-items:baseline;gap:16px;padding:16px 20px;border-radius:14px;background:rgba(255,255,255,.04)}
.res span{color:var(--muted);font-size:14.5px}
.res b{font-size:19px;font-weight:800}
.res--total{background:rgba(0,206,122,.14);border:1px solid rgba(0,206,122,.5)}
.res--total b{font-size:26px;color:var(--green)}
.calc__note{font-size:12.5px;color:var(--muted);margin-top:4px}

/* terms */
.terms{display:grid;gap:12px}
.terms li{display:flex;gap:16px;align-items:flex-start;padding:18px 22px;border-radius:16px;background:var(--panel);border:1px solid var(--line);font-size:14.5px;color:var(--muted)}
.terms li b{color:var(--text)}
.terms i{flex:none;display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:rgba(0,206,122,.15);color:var(--green);font-style:normal;font-weight:800;font-size:14px}
.terms .is-key{border-color:rgba(255,200,61,.5);background:rgba(255,200,61,.07)}
.terms .is-key i{background:rgba(255,200,61,.2);color:var(--gold)}

/* faq */
.faq{display:grid;gap:12px}
.faq details{border-radius:16px;background:var(--bg);border:1px solid var(--line);transition:border-color .2s}
.faq details[open]{border-color:rgba(0,206,122,.55)}
.faq summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px;padding:20px 24px;font-weight:700;font-size:16.5px}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";flex:none;font-size:26px;line-height:1;color:var(--green);transition:transform .25s}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq p{padding:0 24px 22px;color:var(--muted);font-size:15px}
.faq p b{color:var(--text)}

/* final */
.final{position:relative;padding:92px 0;text-align:center;background:radial-gradient(700px 380px at 50% 100%,rgba(0,206,122,.22),transparent 70%),radial-gradient(700px 380px at 50% 0,rgba(56,92,254,.26),transparent 70%),var(--bg);border-top:1px solid var(--line)}
.final h2{margin:22px 0 14px}
.final p{color:var(--muted);font-size:16.5px}
.final__in{display:flex;flex-direction:column;align-items:center}

/* footer */
.footer{padding:44px 0 110px;border-top:1px solid var(--line);background:var(--panel);font-size:12.5px;color:var(--muted)}
.footer__top{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;margin-bottom:22px}
.footer p{max-width:900px;margin-bottom:12px}
.badges{display:flex;gap:10px;align-items:center}
.age{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;border:2px solid var(--green);color:var(--green);font-weight:800;font-size:13px}
.badge{padding:8px 14px;border-radius:999px;border:1px solid var(--line);font-size:12px}
.footer__copy{opacity:.7}

/* sticky mobile CTA */
.sticky{display:none}
.toast{position:fixed;left:50%;bottom:32px;transform:translate(-50%,30px);opacity:0;pointer-events:none;padding:12px 22px;border-radius:999px;background:var(--green);color:#03231a;font-weight:800;font-size:14px;box-shadow:0 12px 30px rgba(0,0,0,.4);transition:.3s;z-index:100}
.toast.show{opacity:1;transform:translate(-50%,0)}

/* reveal */
.rv{opacity:0;transform:translateY(26px);transition:opacity .7s,transform .7s}
.rv.in{opacity:1;transform:none}

/* ---------- responsive ---------- */
@media (max-width:1020px){
  .hero{padding-top:40px}
  .hero__grid{grid-template-columns:1fr;gap:8px}
  .hero__copy{text-align:center;display:flex;flex-direction:column;align-items:center;padding-bottom:0}
  .stage--hero{height:560px}
  .pill--a{left:2%}
  .pill--b{right:2%}
  .bcards{grid-template-columns:1fr}
  .cards,.steps{grid-template-columns:repeat(2,1fr)}
  .step:not(:last-child)::after{display:none}
  .nav{display:none}
}
@media (max-width:720px){
  body{font-size:15px}
  .sec{padding:60px 0}
  .sec__head{margin-bottom:34px}
  .stats__grid{grid-template-columns:repeat(2,1fr)}
  .stat{border-bottom:1px solid var(--line)}
  .stat:nth-child(2n){border-right:0}
  .stat:last-child{grid-column:1/-1;border-bottom:0}
  .cards,.steps,.calc{grid-template-columns:1fr}
  .calc__left,.calc__right{padding:26px 20px}
  h1{margin-top:16px}
  .lead{font-size:15.5px}
  .code{text-align:left;width:100%}
  .code__note{font-size:12.5px}
  .hero__cta{flex-direction:column;width:100%}
  .hero__cta .btn{width:100%}
  .final .btn{width:100%}
  .code--inline{flex-direction:column;gap:12px}

  /* --- mobile: no character images, decor only --- */
  .hero{padding-bottom:6px}
  .fine{margin:12px 0 14px}
  .stage__char{display:none}
  .badge-ex{display:none}
  .stage--hero{height:176px;width:100%}
  .stage--hero .stage__ring{width:190px;left:calc(50% - 95px);top:-6px}
  .pill{padding:8px 16px}
  .pill b{font-size:26px}
  .pill span{font-size:11px}
  .pill--a{left:2%;top:34px;--rot:-4deg}
  .pill--b{right:2%;top:34px;--rot:4deg}
  .d-gift1{width:100px;height:100px;left:calc(50% - 50px);top:34px;bottom:auto}
  .d-gift2,.d-chip2,.d-coin3,.d-spark2{display:none}
  .d-coin1{width:38px;height:38px;left:26%;top:2px}
  .d-coin2{width:30px;height:30px;right:24%;top:112px;left:auto}
  .d-chip1{width:44px;height:44px;right:26%;top:0;left:auto}
  .d-spark1{left:44%;top:0}

  .calcsec{padding:30px 0 4px}
  .bcard{grid-template-columns:1fr;min-height:0;border-radius:22px}
  .bcard__body{padding:22px 20px}
  .bcard h3{font-size:19px}
  .bcard p{font-size:13.5px;margin-bottom:18px}
  .bcard .btn{padding:11px 18px;font-size:13px}
  .stage--card{position:absolute;right:12px;top:14px;width:124px;height:124px;min-height:0}
  .stage--card .stage__ring{width:100%;left:0;top:0;bottom:auto}
  .c-gift{width:64px;height:64px;left:30px;top:34px;bottom:auto}
  .c-coin1{width:30px;height:30px;right:2px;top:2px;left:auto}
  .c-coin2{width:24px;height:24px;left:4px;bottom:6px;right:auto;top:auto}
  .c-chip{width:34px;height:34px;right:0;bottom:2px;left:auto;top:auto}
  .c-spark{width:20px;height:20px;left:10px;top:8px}

  .sticky{display:flex;position:fixed;left:0;right:0;bottom:0;z-index:60;align-items:center;justify-content:space-between;gap:12px;padding:12px 16px calc(12px + env(safe-area-inset-bottom));background:rgba(23,34,44,.96);backdrop-filter:blur(12px);border-top:1px solid rgba(0,206,122,.5)}
  .sticky__txt{display:flex;flex-direction:column;line-height:1.25}
  .sticky__txt b{font-size:13.5px}
  .sticky__txt span{font-size:12px;color:var(--green)}
  .toast{bottom:88px}
}
@media (max-width:400px){

  .bcard__big{font-size:42px}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
  .rv{opacity:1;transform:none}
  html{scroll-behavior:auto}
}
.rv.in.card:hover{transform:translateY(-6px)}

/* ================= declutter pass ================= */
.sec{padding:96px 0}
.sec__head{margin-bottom:44px}
.hero{padding-top:64px}
.hero__copy .lead{font-size:18px;font-weight:500;color:#c5d1dc;max-width:520px;line-height:1.55}
.code{max-width:480px;padding:18px 20px}
.code__col{display:flex;flex-direction:column}
.code__label{margin-bottom:2px}
.code__note{margin-top:14px;padding-top:12px;font-size:13px;align-items:center}
.code--inline{padding:14px 18px}
.hero__cta{gap:12px}
.fine{margin-top:14px;font-size:12.5px;font-weight:600;letter-spacing:.06em;color:#7a8ea1}

/* bonus cards */
.bcard{min-height:280px}
.bcard__body{justify-content:center;padding:34px 0 34px 34px}
.bcard h3{margin:0;font-size:15px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--tc,var(--green2))}
.bcard__big{font-size:clamp(50px,5.4vw,72px);margin:6px 0 4px}
.bcard p{font-size:16px;font-weight:600;color:#c5d1dc;margin:0 0 22px}
.bcard .btn{margin-top:0}

/* steps */
.steps{gap:16px}
.step{padding:30px 22px 26px;text-align:center}
.step:not(:last-child)::after{top:52px}
.step__n{margin:0 auto 16px}
.step h3{font-size:18px;margin-bottom:4px}
.step p{font-size:14.5px}

/* collapsed terms */
.tc{border-radius:20px;background:var(--panel);border:1px solid var(--line);transition:border-color .2s}
.tc[open]{border-color:rgba(0,206,122,.5)}
.tc summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px;padding:22px 28px;font-weight:800;font-size:18px}
.tc summary::-webkit-details-marker{display:none}
.tc summary::after{content:"+";font-size:28px;line-height:1;color:var(--green);transition:transform .25s}
.tc[open] summary::after{transform:rotate(45deg)}
.tc .terms{padding:0 20px 20px}
.tc .terms li{background:var(--bg)}

.final h2{margin:0 0 4px}
.final .code--inline{margin:8px 0 8px}

/* footer */
.footer{padding:30px 0 100px}
.footer__in{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.footer__in p{margin:0;flex:1;text-align:center;min-width:220px}

@media (max-width:720px){
  .sec{padding:56px 0}
  .sec__head{margin-bottom:28px}
  .hero__copy .lead{font-size:16px}
  .code{padding:16px}
  .code__note{font-size:12.5px}
  .bcard{min-height:0}
  .bcard__body{padding:24px 20px}
  .bcard h3{font-size:13px}
  .bcard__big{font-size:46px;margin:2px 0 2px}
  .bcard p{font-size:14.5px;margin-bottom:18px}
  .steps{grid-template-columns:1fr 1fr;gap:12px}
  .step{padding:22px 14px 20px}
  .step h3{font-size:16px}
  .step p{font-size:13px}
  .tc summary{padding:18px 20px;font-size:16px}
  .tc .terms{padding:0 12px 12px}
  .terms li{padding:14px 16px}
  .footer__in{justify-content:center;text-align:center}
}

/* wagering line inside the code box */
.code__txt{display:flex;flex-direction:column;gap:3px}
.code__note em{font-style:normal;font-size:11.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#6f8294}

/* perks under the CTA */
.perks{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.perks li{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border-radius:999px;background:rgba(0,206,122,.1);border:1px solid rgba(0,206,122,.35);font-size:12.5px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:var(--green2);white-space:nowrap}
.perks svg{width:18px;height:18px;flex:none}

/* deposit methods */
.pay{display:flex;align-items:center;flex-wrap:wrap;gap:12px 14px;margin-top:18px}
.pay__label{font-size:11.5px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#6f8294}
.pay__list{display:flex;flex-wrap:wrap;gap:8px}
.pay__item{display:inline-flex;align-items:center;gap:7px;height:38px;padding:0 12px;border-radius:10px;background:var(--panel);border:1px solid var(--line);font-size:12px;font-weight:700;color:var(--text)}
.pay__item svg{flex:none}
.pay__visa{font-family:var(--font);font-style:italic;font-weight:900;font-size:16px;letter-spacing:.02em;color:#b9c6ff}

@media (max-width:720px){
  .perks{justify-content:center;gap:8px;margin-top:18px}
  .perks li{padding:8px 11px;font-size:11px;gap:6px}
  .perks svg{width:16px;height:16px}
  .pay{flex-direction:column;gap:10px;width:100%}
  .pay__list{justify-content:center}
  .code__note em{font-size:11px}
}

@media (max-width:720px){
  .perks{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;width:100%}
  .perks li{flex-direction:column;justify-content:center;gap:6px;padding:12px 6px;border-radius:14px;font-size:10.5px;line-height:1.2;text-align:center;white-space:normal}
  .perks svg{width:22px;height:22px}
  .pay{margin-bottom:22px}
  .pay__list{display:grid;grid-template-columns:1fr 1fr;width:100%;max-width:320px;gap:8px}
  .pay__item{justify-content:center}
}

.code{text-align:left;width:100%}
.code--inline{width:auto}
.code__col{align-items:flex-start}
@media (max-width:1020px){.hero__cta,.perks,.pay{justify-content:center}}

/* desktop hero: character stretches with the copy and stays at the top */
@media (min-width:1021px){
  .hero__grid{align-items:stretch}
  .hero__copy{padding-bottom:56px}
  .stage--hero{height:auto;min-height:620px}
  .stage--hero .stage__char{top:52px;bottom:auto;height:min(660px,calc(100% - 52px))}
}

/* footer disclaimer */
.footer{padding:56px 0 110px;background:#0a1219;border-top:1px solid var(--line)}
.disclaimer{display:flex;align-items:center;gap:18px;padding:18px 24px;border-radius:14px;background:linear-gradient(90deg,rgba(0,206,122,.09),rgba(56,92,254,.06));border:1px solid rgba(0,206,122,.22)}
.disclaimer__ico{flex:none;width:38px;height:38px;color:var(--green)}
.disclaimer p{margin:0;max-width:none;font-size:14px;line-height:1.55;color:#8fa3b3}
.footer .footer__copy{margin:34px 0 0;text-align:center;font-size:14px;font-weight:600;color:#6f8294;opacity:1}
@media (max-width:720px){
  .footer{padding:36px 0 100px}
  .disclaimer{flex-direction:column;align-items:flex-start;gap:12px;padding:18px}
  .disclaimer p{font-size:13px}
  .footer .footer__copy{margin-top:26px;font-size:13px}
}
.footer .footer__copy{max-width:none;margin-bottom:0}

/* ================= $250 hero rebuild ================= */
h1{font-size:clamp(52px,7.5vw,96px);line-height:0.98}
.hero__copy .lead{font-size:20px;font-weight:700;color:var(--text);margin-top:2px}

.stat-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.stat-chips li{display:flex;flex-direction:column;align-items:flex-start;gap:1px;padding:10px 18px;border-radius:14px;background:var(--panel);border:1px solid var(--line);min-width:92px}
.stat-chips b{font-size:20px;font-weight:900;color:var(--green2)}
.stat-chips span{font-size:11px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--muted)}

.live-alert{display:flex;align-items:center;gap:12px;margin-top:18px;padding:14px 20px;border-radius:14px;background:linear-gradient(90deg,rgba(255,200,61,.22),rgba(255,200,61,.1));border:1.5px solid var(--gold);box-shadow:0 0 0 4px rgba(255,200,61,.08)}
.live-alert svg{flex:none;color:var(--gold)}
.live-alert span{font-size:14.5px;font-weight:700;color:#ffe9a8}
.live-alert b{color:var(--gold)}

.code{margin-top:16px}

@media (max-width:1020px){
  .stat-chips,.hero__cta,.perks,.pay{justify-content:center}
  .live-alert{max-width:480px}
}
@media (max-width:720px){
  h1{font-size:clamp(46px,15vw,64px)}
  .stat-chips{gap:8px}
  .stat-chips li{padding:9px 14px;min-width:0;flex:1 1 30%}
  .live-alert{flex-direction:row;text-align:left;padding:12px 16px}
  .live-alert span{font-size:13px}
}

/* ================= featured 300% welcome card ================= */
.feature{position:relative;display:grid;grid-template-columns:1fr 38%;min-height:260px;margin-bottom:22px;border-radius:26px;overflow:hidden;border:1px solid rgba(255,200,61,.55);background:radial-gradient(600px 320px at 100% 100%,rgba(255,200,61,.32),transparent 70%),linear-gradient(135deg,#3a2a08,var(--panel) 75%);transition:transform .3s,box-shadow .3s}
.feature:hover{transform:translateY(-6px);box-shadow:0 30px 60px -26px rgba(255,200,61,.5)}
.feature__body{position:relative;z-index:2;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:6px;padding:36px 0 36px 36px}
.feature__tag{padding:6px 14px;border-radius:999px;background:rgba(255,200,61,.16);border:1px solid rgba(255,200,61,.5);font-size:12px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--gold)}
.feature h3{margin:10px 0 0;font-size:clamp(44px,5.2vw,64px);font-weight:900;line-height:1;color:var(--gold);text-shadow:0 6px 30px rgba(255,200,61,.4)}
.feature__small{font-size:.36em;font-weight:800;vertical-align:middle;color:#ffe9a8}
.feature p{font-size:16px;font-weight:600;color:#e7d9b8;margin:6px 0 22px}

.stage--feature{align-self:end;height:100%;min-height:260px}
.stage--feature .stage__ring{width:130%;aspect-ratio:1;left:-15%;bottom:-10%;--r1:rgba(255,200,61,.6);--r2:rgba(255,200,61,.12)}
.stage--feature .stage__char{height:98%;left:56%}

@media (max-width:720px){
  .feature{grid-template-columns:1fr;min-height:0;border-radius:22px}
  .feature__body{padding:24px 20px}
  .feature h3{font-size:46px}
  .stage--feature{position:absolute;right:12px;top:14px;width:124px;height:124px;min-height:0}
  .stage--feature .stage__ring{width:100%;left:0;top:0;bottom:auto}
}

/* ================= compact hero (final pass) ================= */
.hero{padding-top:36px}
.hero__grid{gap:22px}
.tag{padding:6px 14px;font-size:11px;gap:8px}
h1{font-size:clamp(32px,7vw,56px);line-height:1.04;margin:12px 0 8px}
.hero__copy .lead{font-size:clamp(14px,1.6vw,17px);margin-top:0}
.stat-chips{margin-top:12px;gap:8px}
.stat-chips li{padding:7px 13px;min-width:0}
.stat-chips b{font-size:16px}
.stat-chips span{font-size:9.5px}
.live-alert{margin-top:10px;padding:10px 14px;gap:9px}
.live-alert svg{width:18px;height:18px}
.live-alert span{font-size:12.5px}
.code{margin-top:10px;padding:12px 15px;max-width:400px}
.code__label{font-size:10px;margin-bottom:1px}
.code__value{font-size:clamp(18px,2.6vw,24px)}
.code__copy{padding:8px 13px;font-size:12.5px}
.hero__cta{margin-top:4px;gap:10px}
.hero__cta .btn--lg{padding:12px 22px;font-size:14.5px;border-radius:12px}
.perks{margin-top:12px;gap:7px}
.perks li{padding:6px 11px;font-size:10.5px;gap:6px}
.perks svg{width:15px;height:15px}
.pay{margin-top:8px;gap:6px 9px}
.pay__label{font-size:10px}
.pay__item{height:30px;padding:0 9px;font-size:10.5px;gap:5px}
.calcsec{padding:32px 0 8px}

@media (min-width:1021px){
  .hero__copy{padding-bottom:28px}
  .stage--hero{min-height:420px}
  .stage--hero .stage__char{height:min(430px,calc(100% - 30px));top:30px}
  .pill{padding:9px 15px}
  .pill b{font-size:24px}
  .pill span{font-size:11px}
}
@media (max-width:1020px) and (min-width:721px){
  .stage--hero{height:380px}
}
@media (max-width:720px){
  .hero{padding-top:20px;padding-bottom:2px}
  .stage--hero{height:118px}
  .stage--hero .stage__ring{width:140px;left:calc(50% - 70px);top:-4px}
  .pill{padding:6px 12px}
  .pill b{font-size:17px}
  .pill span{font-size:9px}
  .pill--a{top:18px}
  .pill--b{top:18px}
  .d-gift1{width:66px;height:66px;top:18px}
  .d-coin1{top:0}
  .d-coin2{top:66px}
  .d-chip1{top:0}
}

/* ================= focus-on-the-bonus redesign ================= */
h1{margin:10px 0 6px}
.hero__copy .lead{margin-bottom:2px}

/* promo code + CTA merged into one action card */
.code{display:flex;flex-direction:column;gap:14px;margin-top:18px;padding:16px 16px 18px;max-width:420px}
.code__cta{width:100%;padding-top:15px;padding-bottom:15px;font-size:16px}
.code__cta svg{transition:transform .2s}
.code__cta:hover svg{transform:translateX(3px)}
.hero__cta .btn--green,.final .btn--green,.code__cta{animation:pulse 2.6s infinite}

/* fine print directly under the CTA button */
.code__fine{margin-top:2px;text-align:center;font-size:11.5px;font-weight:600;letter-spacing:.02em;color:#7a8ea1}

/* Live Support callout — bold, high-contrast, impossible to miss */
.live-alert{display:flex;align-items:center;gap:11px;margin-top:14px;max-width:460px;padding:13px 16px;border-radius:14px;background:linear-gradient(90deg,rgba(255,200,61,.24),rgba(255,200,61,.1));border:1.5px solid var(--gold);box-shadow:0 0 0 4px rgba(255,200,61,.08)}
.live-alert svg{flex:none;color:var(--gold)}
.live-alert b{font-size:14.5px;font-weight:800;color:#ffe9a8;line-height:1.3}

/* trust + payment: one quiet line each, no boxes */
.trust-line{display:flex;flex-wrap:wrap;gap:5px 14px;margin-top:14px;font-size:11.5px;font-weight:700;color:var(--green2)}
.trust-line span{display:inline-flex;align-items:center;gap:5px}
.trust-line span::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--green)}

.pay-line{display:flex;flex-wrap:wrap;align-items:center;gap:9px;margin-top:8px;font-size:11px;font-weight:600;color:#6f8294}
.pay-line__label{text-transform:uppercase;letter-spacing:.08em;font-size:10px;color:#54687a;margin-right:2px}
.pay-line .pay__visa{font-size:13px}
.pay-line svg{opacity:.9}

@media (max-width:1020px){
  .code{margin-inline:auto}
  .live-alert{margin-inline:auto;text-align:left}
  .trust-line,.pay-line{justify-content:center}
}
@media (max-width:720px){
  .code{max-width:100%}
  .live-alert{max-width:100%}
  .live-alert b{font-size:13.5px}
}

/* character: fewer, softer decorations */
.d-gift1{width:64px;height:64px;opacity:.9}
.d-coin1{width:36px;height:36px}
.d-spark1{width:22px;height:22px}

/* ---- compact calculator ---- */
.hero{padding-bottom:76px}
.calcsec{padding:0 0 40px;position:relative;z-index:2}
.calc-mini{max-width:720px;margin:-68px auto 0;padding:20px 24px;border-radius:18px;background:var(--panel);border:1px solid var(--line);box-shadow:0 24px 50px -20px rgba(0,0,0,.55)}
.calc-mini__top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px}
.calc-mini__label{font-weight:800;font-size:14.5px;color:var(--text)}
.calc-mini .calc__cur{margin:0;padding:3px}
.calc-mini .calc__cur button{padding:5px 11px;font-size:11.5px}
.calc-mini__slider{margin-bottom:14px}
.calc-mini__slider .calc__scale{margin-top:6px;font-size:10.5px}
.calc-mini__result{font-size:14.5px;line-height:1.7;color:var(--muted)}
.calc-mini__result b{color:var(--text);font-weight:800}
.calc-mini__result #rBonus{color:var(--green2)}
.calc-mini__total{color:var(--green)!important;font-size:1.2em}
.calc-amt{font-size:inherit;font-weight:800;margin:0}
.calc-amt::before{content:attr(data-cur)}

@media (max-width:720px){
  .hero{padding-bottom:54px}
  .calc-mini{padding:18px;margin-top:-48px}
  .calc-mini__result{font-size:13.5px;line-height:1.8}
  .calcsec{padding-bottom:30px}
}

/* ================= mobile rebuild: no character art, no floating decor ================= */
/* Every character illustration and floating coin/gift/spark/chip lives inside .stage —
   removing the whole box is the one rule that guarantees none of it can show or break. */
@media (max-width:720px){
  .stage{display:none}

  .bcard{grid-template-columns:1fr;min-height:0;border-radius:20px}
  .bcard__body{padding:22px 20px}
  .feature{grid-template-columns:1fr;min-height:0;border-radius:20px}
  .feature__body{padding:22px 20px}
}
