:root{
  --bg:#ffffff;
  --bg-2:#f7f9f8;
  --surface:#ffffff;
  --surface-2:#f2f5f4;
  --surface-3:#e8ede9;
  --line:rgba(15,60,42,.08);
  --line-2:rgba(15,60,42,.14);
  --txt:#0f1a15;
  --txt-2:#1f3128;
  --muted:#6a7a72;
  --muted-2:#8f9d95;
  --primary:#1fb583;
  --primary-2:#159068;
  --primary-3:#0e6d4f;
  --primary-soft:#e1f7ee;
  --primary-ink:#ffffff;
  --green:#1fb583;
  --gold:#e69a1b;
  --orange:#e77323;
  --red:#e13049;
  --shadow-sm:0 1px 2px rgba(15,60,42,.05),0 1px 4px rgba(15,60,42,.04);
  --shadow-md:0 4px 12px rgba(15,60,42,.08),0 2px 4px rgba(15,60,42,.04);
  --shadow-lg:0 10px 30px rgba(15,60,42,.10),0 4px 10px rgba(15,60,42,.05);
  --radius:10px;
  --radius-sm:8px;
  --sidebar-w:236px;
  --topbar-h:64px;
  --font:"Segoe UI",system-ui,-apple-system,Roboto,"Helvetica Neue",Arial,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden;overscroll-behavior-x:none}
body{background:var(--bg-2);color:var(--txt);font-family:var(--font);font-size:14px;line-height:1.45;-webkit-font-smoothing:antialiased;
  overflow-x:hidden;overscroll-behavior-x:none;position:relative;width:100%}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul{list-style:none}
.ic{width:20px;height:20px;fill:currentColor;flex:none}

.btn{display:inline-flex;align-items:center;gap:7px;height:38px;padding:0 16px;border-radius:var(--radius-sm);
  font-weight:600;font-size:13px;white-space:nowrap;transition:filter .15s,background .15s,transform .05s,box-shadow .15s}
.btn:active{transform:translateY(1px)}

.btn--primary{background:linear-gradient(135deg,var(--primary),var(--primary-2));color:#fff;box-shadow:0 4px 14px rgba(31,181,131,.28)}
.btn--primary:hover{filter:brightness(1.06);box-shadow:0 6px 18px rgba(31,181,131,.35)}
.btn--ghost{background:#fff;color:var(--txt);border:1px solid var(--line-2)}
.btn--ghost:hover{background:var(--surface-2);border-color:var(--primary)}

.iconbtn{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:var(--radius-sm);color:var(--txt)}
.iconbtn:hover{background:var(--surface-2)}

.layout{min-height:100vh}
.topbar{position:fixed;top:0;left:0;right:0;height:var(--topbar-h);z-index:40;display:flex;align-items:center;gap:14px;
  padding:0 18px;background:#fff;border-bottom:1px solid var(--line);box-shadow:var(--shadow-sm)}
.topbar__burger{display:inline-flex}
.brand{display:inline-flex;align-items:center;gap:8px;font-weight:900;font-size:18px;letter-spacing:.02em;color:var(--txt)}
.brand__mark{width:34px;height:34px;border-radius:8px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));color:#fff;font-weight:900;font-size:15px;box-shadow:0 2px 8px rgba(31,181,131,.25)}
.brand__name{background:linear-gradient(90deg,var(--primary-2),var(--primary-3));-webkit-background-clip:text;background-clip:text;color:transparent}

.topbar__actions{display:flex;gap:9px;margin-left:14px}
.langsw{display:flex;align-items:center;gap:4px;margin-left:auto}
.langsw__item{display:inline-flex;align-items:center;justify-content:center;width:34px;height:30px;
  border:1px solid var(--line);background:#fff;border-radius:6px;transition:all .12s;overflow:hidden}
.langsw__flag{width:22px;height:15px;object-fit:cover;border-radius:2px;display:block}
.langsw__item:hover{border-color:var(--primary);transform:translateY(-1px)}
.langsw__item.is-active{border-color:var(--primary);box-shadow:0 0 0 2px rgba(31,181,131,.28)}
@media(max-width:720px){.langsw{display:none}}
.topnav{display:flex;align-items:center;gap:4px;margin-left:8px}
.topnav__item{display:inline-flex;align-items:center;gap:7px;height:38px;padding:0 12px;border-radius:var(--radius-sm);
  color:var(--muted);font-size:13px;font-weight:600;transition:background .12s,color .12s;white-space:nowrap}
.topnav__item:hover{background:var(--surface-2);color:var(--txt)}
.topnav__item.is-active{color:var(--primary-3);background:var(--primary-soft)}
.topnav__item.is-active .topnav__ic{color:var(--primary)}
.topnav__ic{width:17px;height:17px;fill:currentColor;flex:none}
@media(max-width:900px){.topnav{display:none}}

.sidebar{position:fixed;top:var(--topbar-h);left:0;bottom:0;width:var(--sidebar-w);z-index:30;
  background:#fff;border-right:1px solid var(--line);overflow-y:auto;
  transform:translateX(-100%);transition:transform .25s ease}
.sidebar.is-open{transform:translateX(0)}
.sidebar__inner{padding:14px 12px;display:flex;flex-direction:column;gap:5px}
.sidebar::-webkit-scrollbar{width:8px}
.sidebar::-webkit-scrollbar-thumb{background:var(--surface-3);border-radius:8px}
.vault{display:flex;align-items:center;gap:10px;padding:12px;margin-bottom:8px;border-radius:var(--radius);font-weight:700;
  color:#fff;background:linear-gradient(135deg,var(--primary),var(--primary-3));box-shadow:0 4px 14px rgba(31,181,131,.28)}
.vault__ic{width:20px;height:20px;fill:none;stroke:#fff;stroke-width:1.6}
.nav{display:flex;flex-direction:column;gap:2px}
.nav__item{display:flex;align-items:center;gap:12px;height:44px;padding:0 12px;border-radius:var(--radius);
  color:var(--muted);font-weight:500;transition:background .12s,color .12s}
.nav__item:hover{background:var(--surface-2);color:var(--txt)}
.nav__item.is-active{color:var(--primary-3);background:var(--primary-soft)}
.nav__item.is-active .nav__ic{color:var(--primary)}
.nav__ic{width:20px;height:20px;fill:currentColor;flex:none}
.nav__label{flex:1}

.sidelang{margin-top:12px;padding-top:12px;border-top:1px solid var(--line);display:grid;grid-template-columns:repeat(3,1fr);gap:6px}
.sidelang__item{display:flex;flex-direction:column;align-items:center;gap:2px;padding:8px 4px;border-radius:var(--radius-sm);
  background:var(--surface-2);color:var(--muted);border:1px solid transparent;transition:all .12s}
.sidelang__item:hover{background:#fff;border-color:var(--primary);color:var(--primary-2)}
.sidelang__item.is-active{background:var(--primary);color:#fff;border-color:var(--primary)}

.sidelang__flagimg{width:22px;height:16px;object-fit:cover;border-radius:2px;display:block;margin-bottom:2px}
.sidelang__name{font-size:11px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}
.sidelang__item.is-active .sidelang__name{color:#fff}
.support{margin-top:6px;padding:10px 12px;font-size:12px;color:var(--muted);border-top:1px solid var(--line)}
.support:hover{color:var(--primary)}

.scrim{display:none;position:fixed;inset:0;background:rgba(15,26,21,.4);z-index:25}
body.menu-open .scrim{display:block}
.main{margin:0 auto;padding:calc(var(--topbar-h) + 20px) 24px 60px;max-width:1360px}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.hero{position:relative;border-radius:16px;overflow:hidden;margin:0 auto 18px;max-width:1140px;box-shadow:var(--shadow-md);border:1px solid var(--line);aspect-ratio:900/260;background:#0a1512}
.hero__track{display:flex;transition:transform .5s ease;height:100%;overscroll-behavior-x:contain;touch-action:pan-y}
.hero__slide{position:relative;flex:0 0 100%;height:100%;overflow:hidden}
.hero__media{position:absolute;inset:0;z-index:1}
.hero__media img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.hero__slide::after, .hero__slide::before{display:none}
.hero__nav{position:absolute;top:50%;transform:translateY(-50%);z-index:4;width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;background:#fff;color:var(--txt);box-shadow:var(--shadow-md);border:1px solid var(--line)}
.hero__nav:hover{background:var(--primary);color:#fff;border-color:var(--primary)}
.hero__nav--prev{left:12px}.hero__nav--next{right:12px}
.hero__dots{position:absolute;bottom:14px;left:0;right:0;z-index:4;display:flex;gap:6px;justify-content:center}
.hero__dot{width:7px;height:7px;border-radius:50%;background:rgba(15,60,42,.25);transition:all .2s}
.hero__dot.is-active{background:var(--primary);width:22px;border-radius:4px}

.cstrip{display:flex;align-items:center;gap:18px;padding:12px 16px;margin-bottom:18px;border-radius:var(--radius);
  background:#fff;border:1px solid var(--line);overflow:hidden;box-shadow:var(--shadow-sm)}
.cstrip__label{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--muted);white-space:nowrap;flex:none}
.cstrip__ic{width:18px;height:18px;fill:none;stroke:var(--primary);stroke-width:1.6}
.cstrip__coins{display:flex;align-items:center;justify-content:space-between;flex:1;gap:8px;flex-wrap:wrap}
.cstrip__coin{height:32px;display:flex;align-items:center;justify-content:center;opacity:.95}
.cstrip__coin img{height:32px;max-height:32px;width:auto;object-fit:contain}

.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:22px}
.stat{display:flex;flex-direction:column;gap:3px;padding:14px 16px;border-radius:var(--radius);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm)}
.stat__value{font-size:18px;font-weight:700;color:var(--primary-2)}
.stat__label{font-size:12px;color:var(--muted)}

@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(31,181,131,.5)}70%{box-shadow:0 0 0 8px rgba(31,181,131,0)}100%{box-shadow:0 0 0 0 rgba(31,181,131,0)}}


.games{margin-bottom:30px}
.games__head{display:flex;align-items:center;margin-bottom:14px}
.games__title{display:flex;align-items:center;gap:9px;font-size:19px;font-weight:700}
.games__ic{width:22px;height:22px;fill:var(--primary)}
.games__tools{margin-left:auto;display:flex;align-items:center;gap:8px}
.row__nav{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:var(--radius-sm);
  background:#fff;border:1px solid var(--line);color:var(--txt);box-shadow:var(--shadow-sm)}
.row__nav:hover{background:var(--primary);color:#fff;border-color:var(--primary)}
.games__all{height:34px;display:inline-flex;align-items:center;padding:0 14px;font-size:12px;font-weight:600;
  color:var(--primary-2);border-radius:var(--radius-sm)}
.games__all:hover{background:var(--primary-soft)}
.row{display:flex;gap:14px;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:4px;scrollbar-width:none;
  overscroll-behavior-x:contain;touch-action:pan-x pan-y}
.row::-webkit-scrollbar{display:none}

.gcard{scroll-snap-align:start;flex:0 0 calc((100% - 7*14px)/8);min-width:0}
.gcard__media{position:relative;border-radius:12px;overflow:hidden;aspect-ratio:1/1;background:var(--surface-2);border:1px solid var(--line);box-shadow:var(--shadow-sm);transition:box-shadow .2s,transform .2s}

.gcard:hover .gcard__media{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.gcard__img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.gcard:hover .gcard__img{transform:scale(1.06)}
.gcard__tag{position:absolute;top:8px;left:8px;z-index:2;font-size:10px;font-weight:700;text-transform:uppercase;
  letter-spacing:.02em;padding:3px 8px;border-radius:30px;background:linear-gradient(135deg,var(--red),var(--orange));color:#fff}
.gcard__tag--new{background:linear-gradient(135deg,var(--primary),var(--primary-2));color:#fff}
.gcard__hover{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background:rgba(15,60,42,.45);opacity:0;transition:opacity .2s}
.gcard__media:hover .gcard__hover{opacity:1}
.gcard__play{width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));box-shadow:0 8px 22px rgba(31,181,131,.5)}
.gcard__playic{width:22px;height:22px;fill:#fff;margin-left:2px}
.gcard__meta{padding:9px 2px 0;display:flex;flex-direction:column;gap:2px}
.gcard__name{font-size:13px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--txt)}
.gcard__prov{font-size:11px;color:var(--muted-2)}

/* provider strip — horizontal carousel with dark tiles for logo readability */
.providers{margin-bottom:30px;border:1px solid var(--line);border-radius:var(--radius);padding:14px 16px;background:#fff;box-shadow:var(--shadow-sm)}
.providers__head{display:flex;align-items:center;margin-bottom:12px;gap:12px}
.providers__title{font-size:14px;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;flex:1}
.providers__tools{display:flex;align-items:center;gap:8px}
.providers__grid{display:flex;flex-wrap:nowrap;gap:10px;overflow-x:auto;scroll-snap-type:x mandatory;
  scrollbar-width:none;padding:4px 2px;overscroll-behavior-x:contain;touch-action:pan-x pan-y}
.providers__grid::-webkit-scrollbar{display:none}
.provider{flex:0 0 138px;height:70px;padding:10px 16px;background:linear-gradient(160deg,#1a2e26 0%,#122320 100%);
  border:1px solid rgba(71,220,161,.18);border-radius:10px;scroll-snap-align:start;
  display:flex;align-items:center;justify-content:center;transition:border-color .15s,transform .15s,box-shadow .15s}
.provider:hover{border-color:var(--primary);transform:translateY(-2px);box-shadow:0 6px 16px rgba(31,181,131,.22)}
.provider img{max-height:44px;max-width:110px;width:auto;height:auto;object-fit:contain;filter:brightness(1.02)}
@media(max-width:560px){.provider{flex-basis:118px;height:60px}.provider img{max-height:38px;max-width:92px}}

/* promotions grid */
.promo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:16px;margin-bottom:30px}
.promo{position:relative;border-radius:14px;overflow:hidden;background:#fff;border:1px solid var(--line);
  box-shadow:var(--shadow-sm);transition:transform .2s,box-shadow .2s,border-color .2s}
.promo:hover{transform:translateY(-3px);border-color:var(--primary);box-shadow:var(--shadow-lg)}
.promo__media{position:relative;aspect-ratio:16/9;overflow:hidden;background:linear-gradient(135deg,#e6f4ec,#d4edde)}
.promo__img{width:100%;height:100%;object-fit:cover}
.promo__body{padding:16px 18px}
.promo__kick{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--primary-2);margin-bottom:6px}
.promo__title{font-size:17px;font-weight:700;line-height:1.25;margin-bottom:8px;color:var(--txt)}
.promo__desc{font-size:13px;color:var(--muted);margin-bottom:14px;line-height:1.55}
.promo__foot{display:flex;align-items:center;gap:10px}
.promo__foot .btn{height:36px;font-size:12.5px}
.promo__terms{font-size:11px;color:var(--muted-2)}

/* rewards / VIP */
.pgtitle{font-size:clamp(22px,2.8vw,32px);font-weight:800;letter-spacing:-.01em;margin-bottom:8px;color:var(--txt)}
.pgsub{font-size:15px;color:var(--muted);max-width:720px;margin-bottom:24px;line-height:1.55}

.rewards-hero{position:relative;padding:34px 30px;margin-bottom:26px;border-radius:16px;overflow:hidden;
  background:linear-gradient(120deg,#f4fbf7 0%,#e1f7ee 50%,#d4edde 100%);border:1px solid var(--line);box-shadow:var(--shadow-md)}
.rewards-hero__glow{position:absolute;right:-40px;top:-40px;width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle,rgba(31,181,131,.28),transparent 70%);filter:blur(20px)}
.rewards-hero__body{position:relative;max-width:640px}
.rewards-hero__kick{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:700;text-transform:uppercase;
  letter-spacing:.05em;color:#8a5a05;background:rgba(230,154,27,.16);padding:5px 12px;border-radius:30px;margin-bottom:12px}

.vip-tiers{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;margin-bottom:30px}
.tier{padding:20px 18px;border-radius:14px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;gap:8px;position:relative;overflow:hidden;transition:transform .2s,box-shadow .2s}
.tier:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.tier__mark{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--tier-c,var(--primary)),var(--tier-c2,var(--primary-2)));
  display:flex;align-items:center;justify-content:center;font-weight:900;color:#fff;font-size:16px;margin-bottom:6px;box-shadow:0 4px 12px rgba(15,60,42,.15)}
.tier__name{font-size:16px;font-weight:800;color:var(--txt)}
.tier__level{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}
.tier__perk{font-size:13px;color:var(--muted);margin-top:6px;padding-top:10px;border-top:1px solid var(--line)}
.tier--1{--tier-c:#c48e5b;--tier-c2:#8a5a2b}
.tier--2{--tier-c:#c0c0c0;--tier-c2:#8b8b8b}
.tier--3{--tier-c:#f0b90b;--tier-c2:#c48910}
.tier--4{--tier-c:#c9d5df;--tier-c2:#7d94a5}
.tier--5{--tier-c:#4d92ee;--tier-c2:#1e5eb6}
.tier--6{--tier-c:#9748d8;--tier-c2:#5b1899}

.perks{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:12px;margin-bottom:30px}
.perk{padding:20px;border-radius:12px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  display:flex;gap:14px;align-items:flex-start;transition:box-shadow .2s,transform .2s}
.perk:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.perk__ic{width:42px;height:42px;flex:none;border-radius:10px;display:flex;align-items:center;justify-content:center;
  background:var(--primary-soft);color:var(--primary-2)}
.perk__ic svg{width:22px;height:22px;fill:currentColor}
.perk__title{font-size:15px;font-weight:700;margin-bottom:4px;color:var(--txt)}
.perk__desc{font-size:13px;color:var(--muted);line-height:1.55}

.foot{margin-top:60px;background:linear-gradient(180deg,#fff 0%,var(--surface-2) 100%);
  border-top:1px solid var(--line);padding:42px 24px 0;margin-left:-24px;margin-right:-24px;position:relative}
.foot::before{content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:min(1000px,90%);height:2px;background:linear-gradient(90deg,transparent,var(--primary),transparent);opacity:.6}
.foot__top{display:grid;grid-template-columns:minmax(260px,1.5fr) 3fr;gap:48px;
  margin-bottom:32px;max-width:1360px;margin-left:auto;margin-right:auto;padding:0 4px}
.foot__brand{max-width:340px}
.foot__brand .brand{margin-bottom:8px}

.foot__tag{color:var(--muted);font-size:13px;line-height:1.6;margin:12px 0 18px}
.foot__socials{display:flex;gap:10px;margin:6px 0 16px}
.foot__soc{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;
  border-radius:50%;background:#fff;border:1px solid var(--line);transition:transform .15s,border-color .15s,box-shadow .15s}
.foot__soc img{width:22px;height:22px;object-fit:contain}
.foot__soc:hover{transform:translateY(-2px);border-color:var(--primary);box-shadow:0 4px 10px rgba(31,181,131,.18)}
.foot__coins{display:flex;gap:10px;flex-wrap:wrap;padding-top:14px;border-top:1px dashed var(--line)}
.foot__coin{height:28px;object-fit:contain;opacity:.85;transition:opacity .15s,transform .15s}
.foot__coin:hover{opacity:1;transform:translateY(-1px)}
.foot__license{height:32px;width:auto;object-fit:contain;opacity:.85;flex:none}
.foot__cols{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.foot__col .ftitle{display:inline-flex;align-items:center;gap:6px;font-size:12px;margin-bottom:16px;color:var(--primary-3);
  text-transform:uppercase;letter-spacing:.08em;font-weight:800;position:relative;padding-bottom:8px}
.foot__col .ftitle::after{content:"";position:absolute;left:0;bottom:0;width:24px;height:2px;background:var(--primary);border-radius:2px}
.foot__col li{margin-bottom:9px}
.foot__col a{display:inline-flex;align-items:center;gap:6px;color:var(--muted);font-size:13px;transition:color .15s,transform .15s;line-height:1.5}
.foot__col a::before{content:"›";color:var(--primary);opacity:.5;transition:opacity .15s,transform .15s;font-weight:700}
.foot__col a:hover{color:var(--primary-3)}
.foot__col a:hover::before{opacity:1;transform:translateX(2px)}
.foot__bottom{display:flex;align-items:center;flex-wrap:wrap;gap:16px;padding:22px 4px 26px;border-top:1px solid var(--line);
  max-width:1360px;margin:0 auto}
.foot__age{flex:none;font-weight:800;font-size:12px;
  border:2px solid var(--primary);border-radius:50%;width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;color:var(--primary);background:#fff}
.foot__legal{flex:1;font-size:11.5px;color:var(--muted);line-height:1.65;min-width:220px}
.foot__legal a{color:var(--primary-2);text-decoration:underline}

@media(max-width:1100px){.gcard{flex-basis:calc((100% - 5*14px)/6)}}
@media(max-width:1024px){
  body{overflow-x:hidden}
  
  .sidebar{width:260px;top:0;padding-top:var(--topbar-h)}
  .main{padding-left:16px;padding-right:16px;overflow-x:clip}
  .stats{grid-template-columns:repeat(2,1fr)}
  .gcard{flex-basis:calc((100% - 3*10px)/3.5)}
  .foot{margin-left:-16px;margin-right:-16px}
  .foot__cols{gap:32px;margin-left:auto}
  .foot__col{flex:0 1 140px;min-width:120px}
  .foot__brand{flex:1 1 260px}
}
@media(max-width:720px){
  :root{--topbar-h:56px}
  .main{padding:calc(var(--topbar-h) + 14px) 12px 40px}
  .topbar{gap:6px;padding:0 10px;border-bottom-width:1px}
  .brand{gap:6px}
  .brand__name{font-size:14px;display:inline;letter-spacing:0}
  .brand__mark{width:26px;height:26px;font-size:12px}
  .topbar__actions{margin-left:auto;gap:6px}
  .topbar__actions .btn{height:32px;padding:0 10px;font-size:12px;gap:5px}
  .langsw{display:none}
  .cstrip{padding:10px 12px;gap:10px}
  .cstrip__label{display:none}
  .cstrip__coins{gap:12px;overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;justify-content:flex-start;
    scrollbar-width:none;overscroll-behavior-x:contain;touch-action:pan-x pan-y;padding:2px 4px}
  .cstrip__coins::-webkit-scrollbar{display:none}
  .cstrip__coin{flex:none}
  .cstrip__coin img{height:28px;max-height:28px}
  .stats{gap:8px;margin-bottom:18px}
  .stat{padding:11px 12px}
  .stat__value{font-size:16px}
  .stat__label{font-size:11px}
  .hero{margin-bottom:14px;border-radius:12px}
  .hero__nav{width:34px;height:34px}
  .hero__nav--prev{left:8px}.hero__nav--next{right:8px}
  .games{margin-bottom:22px}
  .games__head{margin-bottom:10px}
  .games__title{font-size:16px;gap:8px}
  .games__ic{width:20px;height:20px}
  .games__all{height:30px;padding:0 10px;font-size:11.5px}
  .row__nav{width:30px;height:30px}
  .row{gap:10px}
  .gcard{flex-basis:calc((100% - 2*10px)/2.6)}
  .gcard__name{font-size:12px}
  .gcard__prov{font-size:10.5px}
  .providers{padding:12px}
  .providers__head{margin-bottom:10px}
  .providers__title{font-size:12.5px}
  .providers__grid{gap:8px}
  .provider{flex-basis:118px;height:60px}
  .provider img{max-height:38px;max-width:92px}
  .promo-grid{grid-template-columns:1fr;gap:14px;margin-bottom:22px}
  .promo__title{font-size:16px}
  .promo__desc{font-size:12.5px}
  .promo__body{padding:14px 16px}
  .pgtitle{font-size:22px}
  .pgsub{font-size:13.5px;margin-bottom:18px}
  .rewards-hero{padding:22px 18px;margin-bottom:20px}
  .vip-tiers{grid-template-columns:repeat(2,1fr);gap:10px}
  .tier{padding:16px 14px}
  .tier__mark{width:38px;height:38px;font-size:14px}
  .tier__name{font-size:15px}
  .perks{grid-template-columns:1fr;gap:10px}
  .perk{padding:16px}
  .foot{margin-top:36px;padding:26px 14px 0;margin-left:-12px;margin-right:-12px}
  .foot__top{grid-template-columns:1fr;gap:22px;margin-bottom:20px;padding:0;text-align:center}
  .foot__brand{max-width:100%;display:flex;flex-direction:column;align-items:center}
  .foot__brand .brand{justify-content:center}
  .foot__brand .foot__tag{margin:10px auto 14px;max-width:340px}
  .foot__coins{justify-content:center;padding-top:12px;width:100%}
  .foot__cols{grid-template-columns:repeat(3,1fr);gap:14px 10px;text-align:left}
  .foot__col .ftitle{font-size:11px;margin-bottom:10px;padding-bottom:6px;letter-spacing:.05em}
  .foot__col .ftitle::after{width:20px;height:2px}
  .foot__col li{margin-bottom:6px}
  .foot__col a{font-size:12px;gap:4px}
  .foot__col a::before{font-size:12px}
  .foot__bottom{padding:16px 4px 24px;gap:12px;flex-wrap:wrap;justify-content:center;text-align:center}
  .foot__legal{font-size:11px;line-height:1.6;min-width:0;text-align:center}
  .foot__age{width:34px;height:34px;font-size:11px}
}
@media(max-width:420px){
  .topbar{gap:5px;padding:0 8px}
  .brand__name{font-size:13px}
  .brand__mark{width:24px;height:24px;font-size:11.5px}
  .topbar__burger{width:36px;height:36px}
  .topbar__actions .btn{padding:0 9px;font-size:11.5px;height:30px;gap:4px}
  .gcard{flex-basis:calc((100% - 10px)/2.3)}
  .provider{flex-basis:106px;height:56px}
  .provider img{max-height:34px;max-width:80px}
  .cstrip__coin img{height:22px;max-height:22px}
  .foot__cols{grid-template-columns:repeat(3,1fr);gap:12px 8px}
  .foot__col .ftitle{font-size:10.5px;margin-bottom:8px}
  .foot__col a{font-size:11.5px;gap:3px}
}
@media(max-width:360px){
  .topbar{gap:4px;padding:0 6px}
  .brand{gap:4px}
  .brand__name{font-size:12px}
  .brand__mark{width:22px;height:22px;font-size:10.5px}
  .topbar__burger{width:32px;height:32px}
  .topbar__actions .btn{padding:0 8px;font-size:10.5px;height:28px}
}
@media(max-width:320px){
  .brand__name{display:none}
}
