:root{
  --primary:#EC622B;
  --primary-dark:#c54f1c;
  --secondary:#4CA534;
  --secondary-dark:#3d8429;
  --bg:#FFFFFF;
  --bg-soft:#f4f6fa;
  --bg-stripe:#eef1f6;
  --header:#0C1D34;
  --header-dark:#081424;
  --text:#1a2a44;
  --muted:#6b7a93;
  --border:#dee3ec;
  --radius:14px;
  --radius-sm:10px;
  --shadow:0 6px 20px rgba(12,29,52,.08);
  --shadow-strong:0 14px 38px rgba(12,29,52,.18);
  --shadow-cta:0 8px 22px rgba(236,98,43,.32);
  --shadow-cta-green:0 8px 22px rgba(76,165,52,.32);
  --maxw:1340px;
}

*{box-sizing:border-box}
*::before,*::after{box-sizing:border-box}
html,body{overflow-x:hidden;width:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter","Segoe UI","Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  line-height:1.55;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
input{font:inherit}

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:12px 22px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  letter-spacing:.4px;
  text-transform:uppercase;
  border:2px solid transparent;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
  cursor:pointer;
  user-select:none;
  text-align:center;
}
.btn--primary{
  color:#fff;
  background:linear-gradient(180deg,#f1743f,var(--primary));
  box-shadow:var(--shadow-cta);
  border-color:rgba(0,0,0,.05);
}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(236,98,43,.45);background:linear-gradient(180deg,#f47e4a,var(--primary-dark))}
.btn--primary:active{transform:translateY(0);box-shadow:0 4px 12px rgba(236,98,43,.35)}

.btn--ghost{
  color:#fff;
  background:linear-gradient(180deg,#5cbb40,var(--secondary));
  box-shadow:var(--shadow-cta-green);
  border-color:rgba(0,0,0,.05);
}
.btn--ghost:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(76,165,52,.45);background:linear-gradient(180deg,#65c648,var(--secondary-dark))}
.btn--ghost:active{transform:translateY(0)}

.btn--xl{min-height:56px;padding:16px 36px;font-size:16px;border-radius:14px}
.btn--lg{min-height:52px;padding:14px 30px;font-size:15px}
.btn--sm{min-height:38px;padding:8px 14px;font-size:12px;border-radius:8px}

/* ---------- Header ---------- */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--header);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.04);
}
.header__inner{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:80px;
  padding-top:14px;
  padding-bottom:14px;
}
.header__logo{flex-shrink:0;display:inline-flex;align-items:center}
.header__logo img{height:42px;width:auto;max-width:160px;object-fit:contain}

.nav{
  flex:1;
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
  overflow-x:auto;
  scrollbar-width:none;
  margin-left:18px;
}
.nav::-webkit-scrollbar{display:none}
.nav__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  color:rgba(255,255,255,.85);
  border-radius:8px;
  white-space:nowrap;
  transition:background .15s, color .15s;
}
.nav__link:hover{background:rgba(255,255,255,.07);color:#fff}
.nav__link--app{
  background:rgba(76,165,52,.18);
  color:#fff;
  border:1px solid rgba(76,165,52,.4);
}
.nav__link--app:hover{background:rgba(76,165,52,.28)}
.nav__appicons{display:inline-flex;gap:4px;align-items:center;color:#fff}

.header__cta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.header__lang{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-weight:700;
  font-size:13px;
  color:rgba(255,255,255,.85);
  padding:6px 8px;
}
.btn--login{min-height:42px;padding:10px 18px;font-size:13px}
.btn--register{min-height:42px;padding:10px 18px;font-size:13px}

.header__burger{
  display:none;
  width:42px;
  height:42px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
}
.header__burger span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
}

/* ---------- Subnav ---------- */
.subnav{
  background:var(--bg-soft);
  border-bottom:1px solid var(--border);
  position:relative;
}
.subnav__inner{
  display:flex;
  align-items:center;
  gap:6px;
  min-height:64px;
  overflow-x:auto;
  scrollbar-width:none;
  padding-top:10px;
  padding-bottom:10px;
}
.subnav__inner::-webkit-scrollbar{display:none}
.subnav__tab{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  padding:6px 14px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.4px;
  color:#1a2a44;
  white-space:nowrap;
  border-radius:8px;
  transition:background .15s, color .15s;
  position:relative;
  flex-shrink:0;
}
.subnav__tab:hover{background:#fff;color:var(--secondary)}
.subnav__tab--active{color:var(--secondary)}
.subnav__tab--active::before{
  content:"";
  position:absolute;
  top:-10px;
  left:14px;
  right:14px;
  height:3px;
  background:var(--secondary);
  border-radius:0 0 3px 3px;
}
.subnav__icon{
  font-size:18px;
  color:var(--secondary);
}

.subnav__search{
  display:flex;
  align-items:center;
  gap:6px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 14px 6px 12px;
  margin-left:auto;
  min-width:200px;
  flex-shrink:0;
}
.subnav__search input{
  flex:1;
  border:0;
  outline:none;
  background:transparent;
  font-size:13px;
  min-width:0;
}
.subnav__searchIcon{font-size:14px;color:var(--muted)}

.subnav__providers{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 16px;
  font-size:13px;
  font-weight:600;
  color:var(--text);
  flex-shrink:0;
  white-space:nowrap;
}
.subnav__providers:hover{border-color:var(--secondary);color:var(--secondary)}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:linear-gradient(160deg,#0C1D34 0%,#13294a 60%,#1a3258 100%);
  color:#fff;
  overflow:hidden;
  padding-bottom:56px;
}
.hero__media{
  display:block;
  width:100%;
  max-height:340px;
  overflow:hidden;
  background:#0C1D34;
}
.hero__media img{
  width:100%;
  height:auto;
  max-height:340px;
  object-fit:cover;
  display:block;
}
.hero__inner{text-align:center;padding-top:36px}
.hero__title{
  font-size:clamp(28px,4vw,46px);
  font-weight:800;
  margin:0 0 18px;
  letter-spacing:-.5px;
}
.hero__brand{color:var(--primary)}
.hero__bonus{
  margin:0 auto 26px;
  max-width:760px;
}
.hero__bonusBig{
  font-size:clamp(48px,9vw,108px);
  line-height:1;
  font-weight:900;
  background:linear-gradient(180deg,#fff 0%,#f1c8b1 60%,var(--primary) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  letter-spacing:-2px;
  text-shadow:0 4px 20px rgba(236,98,43,.2);
}
.hero__bonusBig span{
  font-size:.45em;
  font-weight:700;
  background:none;
  color:#fff;
  -webkit-text-fill-color:#fff;
  margin:0 8px;
}
.hero__bonusPlus{
  font-size:clamp(18px,2.4vw,28px);
  font-weight:800;
  letter-spacing:1px;
  color:#fff;
  margin-top:8px;
}
.hero__bonusPlus strong{color:var(--secondary)}
.hero__ctaRow{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-bottom:18px;
}
.hero__terms{
  font-size:12px;
  color:rgba(255,255,255,.55);
  margin:8px 0 0;
}

/* ---------- Sections ---------- */
section{padding:64px 0}
.games{background:var(--bg)}
.games--alt{background:var(--bg-soft)}
.live{background:var(--bg)}
.promos{background:var(--bg-soft)}
.providers{background:var(--bg)}
.about{background:var(--bg-soft)}
.faq{background:var(--bg)}

.games__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
  flex-wrap:wrap;
}
.games__title{
  margin:0;
  font-size:clamp(24px,3vw,34px);
  font-weight:800;
  letter-spacing:-.5px;
  color:var(--text);
}
.games__title span{color:var(--primary)}
.games__more{
  color:var(--secondary);
  font-weight:700;
  font-size:14px;
  white-space:nowrap;
}
.games__more:hover{color:var(--secondary-dark);text-decoration:underline}

.games__filters{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:22px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:8px 16px;
  background:#fff;
  border:1.5px solid var(--border);
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  color:var(--text);
  transition:all .15s;
}
.chip:hover{border-color:var(--secondary);color:var(--secondary)}
.chip--active{
  background:var(--secondary);
  color:#fff;
  border-color:var(--secondary);
}
.chip--active:hover{color:#fff;background:var(--secondary-dark);border-color:var(--secondary-dark)}

/* Jackpot */
.jackpot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:18px;
  background:linear-gradient(135deg,#0C1D34 0%,#1a3258 100%);
  color:#fff;
  border-radius:var(--radius);
  padding:24px 28px;
  margin-bottom:28px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.jackpot::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 80% 50%, rgba(236,98,43,.3) 0%, transparent 60%);
  pointer-events:none;
}
.jackpot__label{
  font-size:13px;
  letter-spacing:1.5px;
  font-weight:700;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  position:relative;
}
.jackpot__amount{
  font-size:clamp(28px,4vw,44px);
  font-weight:900;
  color:var(--primary);
  text-shadow:0 4px 18px rgba(236,98,43,.5);
  position:relative;
  font-variant-numeric:tabular-nums;
}
.jackpot .btn{position:relative}

/* Grid */
.grid{
  display:grid;
  gap:16px;
}
.grid--6{grid-template-columns:repeat(6,minmax(0,1fr))}
.grid--4{grid-template-columns:repeat(4,minmax(0,1fr))}
.grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid > *{min-width:0}

/* Game card */
.card{
  position:relative;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  overflow:hidden;
  transition:transform .2s, box-shadow .2s, border-color .2s;
  min-width:0;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:var(--secondary);
}
.card__media{
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:#0C1D34;
  border-bottom:1px solid var(--border);
}
.card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s;
}
.card:hover .card__media img{transform:scale(1.05)}
.card__body{padding:12px;display:flex;flex-direction:column;gap:6px}
.card__name{font-weight:700;font-size:14px;line-height:1.3;color:var(--text);overflow-wrap:anywhere}
.card__provider{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:.5px;font-weight:600}
.card__btns{display:flex;gap:6px;margin-top:6px;flex-wrap:wrap}
.card__btns .btn{flex:1;min-width:0;font-size:11px;padding:7px 8px;min-height:32px;letter-spacing:.3px}

.card__badge{
  position:absolute;
  top:8px;
  left:8px;
  z-index:2;
  padding:4px 9px;
  border-radius:6px;
  font-size:10px;
  font-weight:900;
  letter-spacing:1px;
  color:#fff;
}
.card__badge--hot{background:var(--primary)}
.card__badge--new{background:var(--secondary)}

.games__loadmore{margin-top:28px;text-align:center}

/* Live cards */
.live__lead{
  text-align:center;
  max-width:680px;
  margin:0 auto 24px;
  color:var(--muted);
  font-size:15px;
}
.grid--live{gap:18px}
.liveCard{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .2s, box-shadow .2s, border-color .2s;
  min-width:0;
}
.liveCard:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:var(--primary);
}
.liveCard__media{
  width:100%;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#0C1D34;
}
.liveCard__media img{width:100%;height:100%;object-fit:cover}
.liveCard__body{padding:16px;display:flex;flex-direction:column;gap:12px}
.liveCard__top{display:flex;justify-content:space-between;align-items:center;gap:10px}
.liveCard__name{font-weight:800;font-size:16px;color:var(--text)}
.liveCard__flag{
  font-size:11px;
  background:var(--bg-soft);
  padding:4px 8px;
  border-radius:6px;
  font-weight:600;
  color:var(--muted);
}
.liveCard__meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:13px;
  color:var(--muted);
}
.liveCard__meta strong{color:var(--text)}

/* Promos */
.promos__grid{margin-bottom:28px}
.promo{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .2s, box-shadow .2s;
  min-width:0;
}
.promo:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.promo__media{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#0C1D34;
}
.promo__media img{width:100%;height:100%;object-fit:cover}
.promo__body{padding:22px;display:flex;flex-direction:column;gap:12px;flex:1}
.promo__tag{
  display:inline-block;
  background:var(--secondary);
  color:#fff;
  padding:4px 10px;
  border-radius:6px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  width:fit-content;
}
.promo__title{font-size:18px;font-weight:800;margin:0;line-height:1.3;color:var(--text)}
.promo p{margin:0;color:var(--muted);font-size:14px;flex:1}
.promo .btn{margin-top:10px;align-self:flex-start}

.vip{
  background:linear-gradient(135deg,#0C1D34 0%,#1a3258 100%);
  color:#fff;
  border-radius:var(--radius);
  padding:32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.vip::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 90% 0%, rgba(236,98,43,.25) 0%, transparent 50%);
  pointer-events:none;
}
.vip__text{flex:1;min-width:280px;position:relative}
.vip__text h3{margin:0 0 8px;font-size:22px;font-weight:800}
.vip__text p{margin:0;color:rgba(255,255,255,.78);font-size:14px}
.vip .btn{position:relative;flex-shrink:0}

/* Providers */
.providers__strip{
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  gap:12px;
  padding:24px;
  background:var(--bg-soft);
  border-radius:var(--radius);
  margin-bottom:32px;
  border:1px solid var(--border);
}
.providers__logo{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius:var(--radius-sm);
  padding:18px 14px;
  border:1px solid var(--border);
  transition:transform .15s, box-shadow .2s, border-color .2s;
  min-width:0;
  min-height:80px;
}
.providers__logo:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:var(--secondary);
}
.providers__logo img{
  max-height:42px;
  max-width:100%;
  width:auto;
  object-fit:contain;
  filter:grayscale(.2);
  opacity:.95;
  transition:filter .2s, opacity .2s;
}
.providers__logo:hover img{filter:grayscale(0);opacity:1}

/* SEO block */
.seo{
  max-width:880px;
  margin:0 auto;
  font-size:15px;
  line-height:1.75;
  color:var(--text);
}
.seo h2{
  font-size:clamp(22px,2.6vw,30px);
  font-weight:800;
  margin:0 0 16px;
  color:var(--text);
}
.seo h3{
  font-size:20px;
  font-weight:800;
  margin:32px 0 10px;
  color:var(--text);
  border-left:4px solid var(--secondary);
  padding-left:12px;
}
.seo p{margin:0 0 14px}
.seo ul{
  margin:0 0 18px;
  padding-left:22px;
}
.seo ul li{margin:6px 0}
.seo strong{color:var(--text);font-weight:700}

/* About */
.about__lead{
  max-width:820px;
  margin:0 auto 36px;
  text-align:center;
  font-size:16px;
  color:var(--muted);
  line-height:1.7;
}
.about__grid{margin-bottom:36px}
.trust{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  transition:transform .2s, box-shadow .2s;
}
.trust:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.trust__icon{
  width:64px;
  height:64px;
  border-radius:50%;
  overflow:hidden;
  background:var(--bg-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--secondary);
  margin-bottom:6px;
}
.trust__icon img{width:100%;height:100%;object-fit:cover}
.trust h3{margin:0;font-size:16px;font-weight:800;color:var(--text)}
.trust p{margin:0;font-size:13px;color:var(--muted)}

.stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  margin-bottom:32px;
  text-align:center;
}
.stat{display:flex;flex-direction:column;gap:4px}
.stat__num{font-size:clamp(20px,2.5vw,28px);font-weight:900;color:var(--primary)}
.stat__lbl{font-size:12px;text-transform:uppercase;letter-spacing:.6px;color:var(--muted);font-weight:600}

.about__cta{text-align:center}

/* FAQ */
.faq__list{
  max-width:920px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq__item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  overflow:hidden;
  transition:border-color .15s, box-shadow .2s;
}
.faq__item[open]{border-color:var(--secondary);box-shadow:var(--shadow)}
.faq__item summary{
  list-style:none;
  cursor:pointer;
  padding:18px 56px 18px 22px;
  font-weight:700;
  font-size:15px;
  color:var(--text);
  position:relative;
  user-select:none;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item summary::after{
  content:"+";
  position:absolute;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--bg-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:700;
  color:var(--secondary);
  transition:transform .2s, background .2s;
}
.faq__item[open] summary::after{
  content:"−";
  background:var(--secondary);
  color:#fff;
}
.faq__answer{
  padding:0 22px 22px;
  border-top:1px solid var(--border);
  padding-top:16px;
  font-size:14px;
  line-height:1.7;
  color:var(--text);
}
.faq__answer h4{
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--secondary);
  margin:18px 0 8px;
}
.faq__answer p{margin:0 0 12px}
.faq__answer ul,
.faq__answer ol{margin:0 0 14px;padding-left:22px}
.faq__answer li{margin:5px 0}

/* Footer */
.footer{
  background:var(--header);
  color:#cfd8e6;
  padding:48px 0 0;
  margin-top:0;
}
.footer__inner{display:flex;flex-direction:column;gap:32px}
.footer__brand{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.footer__logo img{height:42px;width:auto;max-width:160px;object-fit:contain}
.footer__tagline{margin:0;color:rgba(255,255,255,.7);font-size:14px;flex:1;min-width:240px}

.footer__cols{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:32px;
}
.footer__col h4{
  margin:0 0 14px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.8px;
  color:#fff;
}
.footer__col a{
  display:block;
  padding:5px 0;
  font-size:13px;
  color:rgba(255,255,255,.62);
  transition:color .15s;
}
.footer__col a:hover{color:var(--primary)}

.footer__pay{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.footer__pay span{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  padding:8px 14px;
  border-radius:6px;
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,.78);
  letter-spacing:.4px;
}

.footer__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  flex-wrap:wrap;
}
.footer__bar p{margin:0;font-size:13px;color:rgba(255,255,255,.62)}
.badge18{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  font-weight:900;
  font-size:13px;
}
.footer__copy{
  padding:18px 0 32px;
  border-top:1px solid rgba(255,255,255,.07);
}
.footer__copy p{margin:0;font-size:12px;color:rgba(255,255,255,.45);text-align:center}

/* Catfish */
.catfish{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:90;
  background:linear-gradient(90deg,#0C1D34,#1a3258);
  color:#fff;
  border-top:2px solid var(--primary);
  box-shadow:0 -10px 30px rgba(0,0,0,.25);
  padding:10px 14px calc(10px + env(safe-area-inset-bottom,0));
  transform:translateY(0);
  transition:transform .3s ease;
}
.catfish.is-hidden{transform:translateY(120%)}
.catfish__inner{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  max-width:calc(100% - 0px);
}
.catfish__txt{
  flex:1;
  min-width:0;
  font-size:14px;
  font-weight:600;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.catfish__txt strong{color:var(--primary);font-weight:900}
.catfish__close{
  width:34px;height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  font-size:22px;
  line-height:1;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.catfish__close:hover{background:rgba(255,255,255,.22)}

/* Exit popup */
.exit{
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.exit.is-open{display:flex}
.exit__overlay{
  position:absolute;
  inset:0;
  background:rgba(8,20,36,.72);
  backdrop-filter:blur(4px);
}
.exit__box{
  position:relative;
  background:#fff;
  border-radius:var(--radius);
  width:100%;
  max-width:440px;
  padding:0 0 26px;
  text-align:center;
  box-shadow:var(--shadow-strong);
  overflow:hidden;
  border-top:5px solid var(--primary);
}
.exit__close{
  position:absolute;
  top:10px;right:10px;
  width:32px;height:32px;
  border-radius:50%;
  background:rgba(0,0,0,.08);
  font-size:22px;
  line-height:1;
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.exit__close:hover{background:rgba(0,0,0,.16)}
.exit__media{display:block;width:100%;aspect-ratio:16/9;overflow:hidden;background:#0C1D34}
.exit__media img{width:100%;height:100%;object-fit:cover}
.exit__box h3{margin:18px 22px 8px;font-size:22px;font-weight:800;color:var(--text)}
.exit__bonus{
  margin:0 22px 18px;
  font-size:18px;
  color:var(--text);
  line-height:1.4;
}
.exit__bonus strong{
  display:block;
  font-size:32px;
  color:var(--primary);
  font-weight:900;
}
.exit__box .btn{margin:0 22px}

/* ---------- Responsive ---------- */
@media (max-width:1180px){
  .nav__link--app span:not(.nav__appicons){display:none}
  .nav__link{font-size:12px;padding:9px 11px}
}

@media (max-width:1024px){
  .grid--6{grid-template-columns:repeat(4,minmax(0,1fr))}
  .grid--3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid--4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .providers__strip{grid-template-columns:repeat(4,minmax(0,1fr))}
  .footer__cols{grid-template-columns:repeat(2,minmax(0,1fr))}
  .header__lang{display:none}
}

@media (max-width:880px){
  .header__burger{display:flex}
  .nav{
    position:absolute;
    top:100%;
    left:0;right:0;
    background:var(--header-dark);
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:0 16px;
    margin-left:0;
    border-top:1px solid rgba(255,255,255,.06);
    box-shadow:0 8px 22px rgba(0,0,0,.3);
    overflow:hidden;
    max-height:0;
    transition:max-height .3s ease, padding .3s ease;
  }
  .nav.is-open{
    max-height:500px;
    padding-top:12px;
    padding-bottom:12px;
  }
  .nav__link{
    width:100%;
    justify-content:flex-start;
    font-size:14px;
    padding:14px 12px;
    border-radius:8px;
  }
  .nav__link--app span:not(.nav__appicons){display:inline}
}

@media (max-width:720px){
  .header__inner{min-height:64px;padding-top:10px;padding-bottom:10px}
  .header__logo img{height:34px}
  .btn--login{display:none}
  .btn--register{font-size:12px;padding:9px 14px;min-height:38px}
  .subnav__inner{gap:0;min-height:56px}
  .subnav__tab{padding:6px 10px;font-size:10px}
  .subnav__icon{font-size:16px}
  .subnav__search{margin-left:6px;min-width:160px}
  .subnav__providers{display:none}
  section{padding:48px 0}
  .grid--6{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
  .grid--3,
  .grid--4{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
  .providers__strip{grid-template-columns:repeat(3,minmax(0,1fr));padding:16px;gap:10px}
  .providers__logo{padding:14px 10px;min-height:64px}
  .providers__logo img{max-height:32px}
  .stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer__cols{gap:24px}
  .vip{padding:24px;flex-direction:column;align-items:flex-start;text-align:left}
  .vip .btn{width:100%}
  .games__head{gap:8px}
  .games__more{font-size:13px}
  .hero__media{max-height:200px}
  .hero__media img{max-height:200px}
  .hero__inner{padding-top:24px}
  .hero{padding-bottom:48px}
}

@media (max-width:520px){
  .container{padding:0 16px}
  .grid--6{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .grid--3,
  .grid--4,
  .grid--live{grid-template-columns:1fr;gap:14px}
  .providers__strip{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer__cols{grid-template-columns:1fr;gap:24px}
  .stats{grid-template-columns:1fr 1fr;gap:12px;padding:18px}
  .hero__bonusBig{letter-spacing:-1px}
  .hero__bonusBig span{display:inline}
  .hero__ctaRow .btn{width:100%}
  .jackpot{padding:18px;flex-direction:column;text-align:center;align-items:stretch}
  .jackpot .btn{width:100%}
  .card__btns{flex-direction:column}
  .card__btns .btn{width:100%;flex:initial}
  .footer__brand{flex-direction:column;align-items:flex-start;gap:14px}
  .footer__bar{flex-direction:row;justify-content:space-between}
  .faq__item summary{padding:16px 50px 16px 16px;font-size:14px}
  .faq__item summary::after{right:14px}
  .faq__answer{padding:0 16px 18px;padding-top:14px}
  .catfish__inner .btn{width:100%}
  .catfish__inner{flex-wrap:wrap}
  .catfish__txt{flex-basis:calc(100% - 50px)}
}

@media (max-width:380px){
  .grid--6{grid-template-columns:1fr 1fr}
  .header__inner{gap:8px}
  .header__logo img{height:30px}
  .btn--register{font-size:11px;padding:8px 12px}
  .subnav__tab{padding:6px 8px;font-size:9px}
}
/* ============= 20bet — Sportsbook Guide block ============= */
.bet20-sportsbook{
  background:#ffffff;
  border:1px solid #dee3ec;
  border-radius:1rem;
  padding:1.5rem 1.1rem;
  margin:1.5rem auto;
  max-width:75rem;
  display:flex;
  flex-direction:column;
  gap:1.25rem;
  color:#1a2a44;
  font-family:"Inter","Segoe UI","Helvetica Neue",Arial,sans-serif;
  box-shadow:0 6px 20px rgba(12,29,52,.06);
}

.bet20-sportsbook__head{
  display:flex;
  flex-direction:column;
  gap:.85rem;
  padding-bottom:1rem;
  border-bottom:2px solid #f4f6fa;
}

.bet20-sportsbook__title{
  font-size:1.35rem;
  font-weight:800;
  line-height:1.25;
  letter-spacing:-.01em;
  color:#0C1D34;
  margin:0;
  position:relative;
  padding-left:.95rem;
}

.bet20-sportsbook__title::before{
  content:"";
  position:absolute;
  left:0;
  top:.35rem;
  width:.3rem;
  height:1.4rem;
  border-radius:.15rem;
  background:linear-gradient(180deg,#EC622B,#4CA534);
}

.bet20-sportsbook__lead{
  background:linear-gradient(180deg,#f4f6fa,#ffffff);
  border:1px solid #dee3ec;
  border-left:4px solid #4CA534;
  border-radius:.625rem;
  padding:.95rem 1.05rem;
}

.bet20-sportsbook__lead p{
  margin:0;
  color:#2c3e5e;
  font-size:.95rem;
  line-height:1.65;
}

.bet20-sportsbook__article{
  display:flex;
  flex-direction:column;
  gap:.75rem;
  background:#fbfcfe;
  border:1px solid #dee3ec;
  border-radius:.75rem;
  padding:1.1rem 1rem;
  position:relative;
  overflow:hidden;
}

.bet20-sportsbook__article::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  height:.25rem;
  width:100%;
  background:linear-gradient(90deg,#EC622B,#4CA534);
  opacity:.85;
}

.bet20-sportsbook__article--odds::before{background:linear-gradient(90deg,#EC622B,#f1743f)}
.bet20-sportsbook__article--markets::before{background:linear-gradient(90deg,#4CA534,#5cbb40)}
.bet20-sportsbook__article--live::before{background:linear-gradient(90deg,#0C1D34,#1a3258)}
.bet20-sportsbook__article--virtual::before{background:linear-gradient(90deg,#EC622B,#0C1D34)}
.bet20-sportsbook__article--bankroll::before{background:linear-gradient(90deg,#4CA534,#0C1D34)}
.bet20-sportsbook__article--mistakes::before{background:linear-gradient(90deg,#EC622B,#4CA534)}

.bet20-sportsbook__h3{
  font-size:1.15rem;
  font-weight:800;
  line-height:1.3;
  color:#0C1D34;
  margin:.35rem 0 0;
  letter-spacing:-.005em;
}

.bet20-sportsbook__h4{
  font-size:1rem;
  font-weight:800;
  line-height:1.35;
  color:#1a2a44;
  margin:.6rem 0 0;
  position:relative;
  padding-left:1.15rem;
}

.bet20-sportsbook__h4::before{
  content:"";
  position:absolute;
  left:0;
  top:.5rem;
  width:.5rem;
  height:.5rem;
  border-radius:50%;
  background:#EC622B;
  box-shadow:0 0 0 3px rgba(236,98,43,.15);
}

.bet20-sportsbook__p{
  margin:0;
  color:#2c3e5e;
  font-size:.92rem;
  line-height:1.7;
}

.bet20-sportsbook__p strong{
  color:#0C1D34;
  font-weight:700;
}

.bet20-sportsbook__list{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:.65rem;
}

.bet20-sportsbook__list li{
  position:relative;
  padding-left:1.5rem;
  color:#2c3e5e;
  font-size:.9rem;
  line-height:1.65;
}

.bet20-sportsbook__list li::before{
  content:"›";
  position:absolute;
  left:0;
  top:0;
  font-size:1.2rem;
  font-weight:800;
  color:#4CA534;
  line-height:1.4;
}

.bet20-sportsbook__list li strong{
  color:#0C1D34;
  font-weight:700;
}

.bet20-sportsbook__aside{
  background:linear-gradient(135deg,rgba(76,165,52,.06),rgba(236,98,43,.04));
  border:1px solid rgba(76,165,52,.2);
  border-radius:.625rem;
  padding:1rem 1.1rem;
  margin-top:.5rem;
}

.bet20-sportsbook__aside--final{
  background:linear-gradient(135deg,rgba(12,29,52,.04),rgba(236,98,43,.06));
  border-color:rgba(236,98,43,.25);
  border-left:4px solid #EC622B;
}

.bet20-sportsbook__aside-text{
  margin:0;
  color:#2c3e5e;
  font-size:.88rem;
  line-height:1.65;
}

.bet20-sportsbook__table{
  width:100%;
  border-collapse:collapse;
  margin-top:.5rem;
  font-size:.85rem;
  background:#ffffff;
  border:1px solid #dee3ec;
  border-radius:.5rem;
  overflow:hidden;
  display:block;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

.bet20-sportsbook__table thead{
  background:linear-gradient(180deg,#0C1D34,#13294a);
}

.bet20-sportsbook__table th{
  padding:.7rem .65rem;
  text-align:left;
  color:#ffffff;
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  white-space:nowrap;
  border-bottom:2px solid #EC622B;
}

.bet20-sportsbook__table td{
  padding:.65rem .65rem;
  color:#2c3e5e;
  border-bottom:1px solid #eef1f6;
  vertical-align:top;
  font-size:.88rem;
  line-height:1.5;
}

.bet20-sportsbook__table tbody tr:nth-child(even) td{
  background:#fbfcfe;
}

.bet20-sportsbook__table tbody tr:last-child td{
  border-bottom:0;
}

.bet20-sportsbook__table tbody tr:hover td{
  background:rgba(76,165,52,.06);
  color:#0C1D34;
}

.bet20-sportsbook__table td:first-child{
  font-weight:700;
  color:#0C1D34;
  white-space:nowrap;
}

@media (min-width:48em){
  .bet20-sportsbook{
    padding:2rem 1.75rem;
    gap:1.5rem;
  }

  .bet20-sportsbook__title{
    font-size:1.65rem;
    padding-left:1.1rem;
  }

  .bet20-sportsbook__title::before{
    width:.35rem;
    height:1.6rem;
    top:.4rem;
  }

  .bet20-sportsbook__lead{
    padding:1.15rem 1.4rem;
  }

  .bet20-sportsbook__lead p{
    font-size:1rem;
  }

  .bet20-sportsbook__article{
    padding:1.4rem 1.5rem;
    gap:1rem;
  }

  .bet20-sportsbook__h3{
    font-size:1.3rem;
    margin-top:.5rem;
  }

  .bet20-sportsbook__h4{
    font-size:1.05rem;
  }

  .bet20-sportsbook__p{
    font-size:.95rem;
  }

  .bet20-sportsbook__list li{
    font-size:.93rem;
  }

  .bet20-sportsbook__aside{
    padding:1.15rem 1.3rem;
  }

  .bet20-sportsbook__aside-text{
    font-size:.93rem;
  }

  .bet20-sportsbook__table{
    display:table;
    overflow:visible;
    font-size:.9rem;
  }

  .bet20-sportsbook__table th{
    padding:.85rem .85rem;
    font-size:.8rem;
  }

  .bet20-sportsbook__table td{
    padding:.8rem .85rem;
    font-size:.92rem;
  }
}

@media (min-width:64em){
  .bet20-sportsbook{
    padding:2.4rem 2rem;
  }

  .bet20-sportsbook__title{
    font-size:1.85rem;
  }

  .bet20-sportsbook__article{
    padding:1.6rem 1.75rem;
  }

  .bet20-sportsbook__h3{
    font-size:1.4rem;
  }

  .bet20-sportsbook__p{
    font-size:.97rem;
    line-height:1.75;
  }
}

@media (prefers-reduced-motion:reduce){
  .bet20-sportsbook *{
    transition:none;
  }
}