/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid rgba(74, 164, 255, .85); outline-offset: 2px; border-radius: 10px; }

/* ============ THEME TOKENS ============ */
:root{
  --bg:#0f1623;
  --panel:#141c2a;
  --panel2:#192335;
  --panel3:#0d1420;
  --stroke: rgba(255,255,255,.08);
  --stroke2: rgba(255,255,255,.06);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.62);
  --muted2: rgba(255,255,255,.45);
  --blue:#2f8bff;
  --blue2:#4aa4ff;
  --chip:#1a2436;
  --shadow: 0 24px 60px rgba(0,0,0,.55);
  --shadow2: 0 12px 30px rgba(0,0,0,.45);
  --r12: 12px;
  --r16: 16px;
  --r20: 20px;
  --r24: 24px;
  --g12: 12px;
  --g16: 16px;
  --g20: 20px;
  --g24: 24px;
}
[data-theme="light"]{
  --bg:#eef3ff;
  --panel:#ffffff;
  --panel2:#f6f8ff;
  --panel3:#f0f4ff;
  --stroke: rgba(15, 22, 35, .10);
  --stroke2: rgba(15, 22, 35, .08);
  --text: rgba(15, 22, 35, .92);
  --muted: rgba(15, 22, 35, .65);
  --muted2: rgba(15, 22, 35, .45);
  --shadow: 0 24px 60px rgba(0,0,0,.12);
  --shadow2: 0 12px 30px rgba(0,0,0,.10);
  background: var(--bg);
}

/* ============ LAYOUT ============ */
.app {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 100vh;
}
.contentCol{
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sidebar{
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 18px 14px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-right: 1px solid var(--stroke2);
  overflow: auto;
  scrollbar-gutter: stable;
}
.main{
  min-width: 0;
  padding: 18px 18px 120px; /* space for mobile bottom bar */
}

/* ============ SIDEBAR ============ */
.brandRow{
  display:flex; align-items:center; gap: 10px;
  padding: 6px 8px 14px;
}
.brandMark{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 34px;
  line-height: 1;
}
.brandMark span{ opacity:.95; }
.brandLogo{ height: 36px; width: auto; object-fit: contain; }
.brandLogoLight{ display: none; }
[data-theme="light"] .brandLogoDark{ display: none; }
[data-theme="light"] .brandLogoLight{ display: block; }
.pill{
  margin-left:auto;
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  color: var(--muted);
}

.searchBox{
  display:flex; align-items:center; gap: 10px;
  padding: 12px 12px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: var(--shadow2);
}
.searchBox input{
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 14px;
}
.sIcon{ width: 18px; height:18px; opacity:.8; flex: 0 0 auto; color: rgba(255,255,255,.88); }
[data-theme="light"] .sIcon{ color: rgba(15,22,35,.65); }

.sidebarBtn{
  margin-top: 12px;
  display:flex; align-items:center; gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  color: var(--text);
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.sidebarBtn:hover{ filter: brightness(1.05); }
.sidebarBtn .mini{ margin-left:auto; opacity:.75; }

.navGroup{ margin-top: 18px; }
.navTitle{
  margin: 18px 10px 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted2);
}
.navItem{
  display:flex; align-items:center; gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  color: var(--muted);
  cursor:pointer;
  user-select:none;
}
.navItem:hover{ background: rgba(255,255,255,.03); color: var(--text); }
.navItem.active{
  background: rgba(47, 139, 255, .20);
  color: #dfefff;
  border: 1px solid rgba(47, 139, 255, .25);
}
.navItem svg,.navItem img{ width: 18px; height:18px; opacity:.9; object-fit:contain; }
.navItem img{ filter: brightness(0) invert(1); opacity: .88; }
[data-theme="light"] .navItem img{ filter: none; opacity: .9; }
.navItem .badge{
  margin-left:auto;
  font-size: 11px;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.03);
}

/* ============ TOP BAR ============ */
.topbar{
  position: sticky;
  top: 0;
  z-index: 40;
  display:flex; align-items:center;
  gap: 14px;
  padding: 14px 10px 16px;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(15,22,35,.75), rgba(15,22,35,.10));
  border-bottom: 1px solid var(--stroke2);
}
[data-theme="light"] .topbar{
  background: linear-gradient(180deg, rgba(238,243,255,.78), rgba(238,243,255,.18));
}
.topbarLogo{
  display: none;
  align-items: center;
  flex-shrink: 0;
}
.topbarLogo img{
  height: 26px;
  width: auto;
  object-fit: contain;
}
.topbarLogoLight{ display: none; }
[data-theme="light"] .topbarLogoDark{ display: none; }
[data-theme="light"] .topbarLogoLight{ display: block; }
.topbarActions{ display: flex; align-items: center; gap: 10px; }
.topbarActions .btn{ min-width: 100px; }

.tabs{ display:flex; gap: 10px; align-items:center; }
.tab{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}
.tab.active{ background: rgba(255,255,255,.06); color: var(--text); }

.topSpacer{ flex: 1 1 auto; }

.miniSearch{
  display:flex; align-items:center; gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  min-width: 220px;
}
.miniSearch input{ border:0; outline:0; width:100%; background:transparent; color:var(--text); font-size: 13px; }
.lang{
  display:flex; align-items:center; gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  color: var(--muted);
  cursor:pointer;
}
.lang .flag{
  width: 18px; height: 18px; border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  font-size: 12px;
}
.toggle{
  width: 44px; height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--stroke);
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
}
.toggle::after{
  content:"";
  position:absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 999px;
  background: rgba(255,255,255,.85);
  transform: translateX(0);
  transition: transform .18s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}
[data-theme="light"] .toggle::after{ background: rgba(15,22,35,.85); }
.toggle.on::after{ transform: translateX(18px); }

.btn{
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  color: var(--text);
  font-weight: 750;
  cursor:pointer;
  text-align: center;
}
.btn:not(.primary){
  background: #fff;
  border-color: rgba(255,255,255,.4);
  color: #0f1623;
}
.btn:not(.primary):hover{
  background: #f0f4ff;
  border-color: rgba(255,255,255,.5);
}
.btn.primary{
  background: var(--blue);
  border-color: rgba(47,139,255,.35);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47,139,255,.22);
}
.btn.primary:hover{ filter: brightness(1.05); }
.btn.ghost:hover{ background: rgba(255,255,255,.05); }

/* ============ HERO ============ */
.hero{
  margin-top: 12px;
  border-radius: 26px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  min-height: 300px;
}
.heroInner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 300px;
  align-items: stretch;
}
.heroArt{
  position: absolute;
  inset: 0;
  min-height: 300px;
}
.heroInner .heroText{
  padding: 28px 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50%;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, rgba(15,22,35,.95) 0%, rgba(15,22,35,.6) 55%, transparent 100%);
}
.heroKicker{
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .02em;
}
.heroTitle{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 2.6vw, 44px);
  margin: 6px 0 8px;
}
.heroSubtitle{
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.35;
}
.heroActions{ display:flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.heroArt{
  overflow: hidden;
}
.heroArt img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Текст главного баннера в светлой теме остаётся белым (баннер с тёмным градиентом) */
[data-theme="light"] .heroText .heroKicker,
[data-theme="light"] .heroText .heroTitle,
[data-theme="light"] .heroText .heroSubtitle{
  color: #fff;
}
/* ============ SECTION HEADERS ============ */
.section{ margin-top: 22px; }
.sectionHead{
  display:flex; align-items:center; gap: 14px;
  margin: 22px 6px 12px;
}
.sectionHead .sectionIcon{ width: 24px; height: 24px; object-fit: contain; opacity: .9; }
.sectionHead .sectionIcon{ filter: brightness(0) invert(1); opacity: .88; }
[data-theme="light"] .sectionHead .sectionIcon{ filter: none; opacity: .9; }
.sectionHead h2{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.sectionHead .hint{
  color: var(--muted2);
  font-size: 13px;
}
.sectionHead .spacer{ flex: 1 1 auto; }
.chipBtn{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  color: var(--muted);
  cursor:pointer;
  font-weight: 700;
  font-size: 13px;
}
.roundArrows{ display:flex; gap: 10px; }
.arrow{
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  display:grid; place-items:center;
  color: var(--muted);
  cursor:pointer;
}
.arrow:hover{ background: rgba(255,255,255,.05); color: var(--text); }

/* ============ HORIZONTAL CAROUSEL ============ */
.hScroll{
  display:flex;
  gap: 14px;
  overflow:auto;
  padding: 6px 4px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.18) transparent;
}
.hScroll::-webkit-scrollbar{ height: 10px; }
.hScroll::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.14); border-radius: 999px; }
.hScroll::-webkit-scrollbar-track{ background: transparent; }
.card{
  scroll-snap-align: start;
  min-width: 190px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.card .thumb{
  height: 128px;
  background:
    radial-gradient(300px 160px at 30% 35%, rgba(255,255,255,.10), transparent 70%),
    linear-gradient(135deg, rgba(47,139,255,.16), rgba(255,255,255,.03));
  border-bottom: 1px solid var(--stroke2);
  position: relative;
}
.card .thumb img{
  width: 100%; height: 100%; object-fit: cover;
}
.card .meta{
  padding: 12px 12px 14px;
}
.card .title{
  font-weight: 800;
  font-size: 13px;
  margin: 0 0 6px;
  color: var(--text);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}
.card .sub{
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  display:flex;
  align-items:center;
  gap: 10px;
}
.pillBlue{
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(47,139,255,.2);
  border: 1px solid rgba(47,139,255,.25);
  color: #dfefff;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}
[data-theme="light"] .pillBlue{
  background: #2563eb;
  border-color: #1d4ed8;
  color: #fff;
}

/* ============ JACKPOTS CARDS (larger, more prominent) ============ */
.hScroll[data-scroll="jackpots"] .card{
  min-width: 260px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.hScroll[data-scroll="jackpots"] .card .thumb{
  height: 160px;
}
.hScroll[data-scroll="jackpots"] .card .thumb img{
  object-fit: cover;
}
.hScroll[data-scroll="jackpots"] .card .meta{
  padding: 14px 14px 16px;
}
.hScroll[data-scroll="jackpots"] .card .title{
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
  max-width: 100%;
  white-space: normal;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hScroll[data-scroll="jackpots"] .card .sub{
  font-size: 12px;
  flex-wrap: wrap;
  gap: 6px;
}
.hScroll[data-scroll="jackpots"] .card .pillBlue{
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 8px;
}

/* ============ PROVIDERS ROW ============ */
.providers{
  display:flex;
  gap: 12px;
  overflow:auto;
  padding: 6px 4px 10px;
}
.provider{
  min-width: 140px;
  height: 58px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  color: var(--muted2);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.provider img{ width: 32px; height: 32px; object-fit: contain; }
.tagTopo{
  position:absolute; top: 10px; left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  background: rgba(47,139,255,.25);
  border: 1px solid rgba(47,139,255,.28);
  color: #e8f2ff;
}

/* ============ PROMO STRIP ============ */
.promoStrip{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 160px;
  position: relative;
}
.promoStrip .promoTitle{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0;
}
.promoStrip .promoSub{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 56ch;
  line-height: 1.35;
}
.promoStrip > div:first-child{
  position: relative;
  z-index: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 55%;
  background: linear-gradient(90deg, rgba(15,22,35,.92) 0%, rgba(15,22,35,.75) 70%, transparent 100%);
}
.promoArt{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.promoArt img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Текст баннера Promoções в светлой теме остаётся белым (баннер с тёмным градиентом) */
[data-theme="light"] .promoStrip .promoTitle,
[data-theme="light"] .promoStrip .promoSub{
  color: #fff;
}

/* ============ SEO BLOCK (placeholder) ============ */
.seo{
  margin-top: 26px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  padding: 22px;
  color: var(--muted);
  line-height: 1.55;
}
.seo h1{ margin: 0 0 16px; font-size: 1.75rem; font-weight: 900; color: var(--text); line-height: 1.3; }
.seo h2{ margin: 28px 0 12px; font-size: 1.25rem; font-weight: 800; color: var(--text); line-height: 1.35; }
.seo h3{ margin: 0 0 10px; color: var(--text); }
.seo p{ margin: 0 0 14px; line-height: 1.55; }
.seo-table-wrap{ overflow-x: auto; margin: 16px 0 24px; border-radius: 12px; border: 1px solid var(--stroke); }
.seo-table{ width: 100%; border-collapse: collapse; font-size: 14px; }
.seo-table th,.seo-table td{ padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--stroke2); }
.seo-table th{ background: var(--panel2); font-weight: 700; color: var(--text); }
.seo-table tbody tr:last-child td{ border-bottom: 0; }
.seo-faq p{ margin-bottom: 18px; }
.seo-faq strong{ display: block; margin-bottom: 4px; }

/* ============ FOOTER ============ */
.siteFooter{
  margin-top: 40px;
  padding: 32px 24px 40px;
  background: #1a1a1e;
  border-top: 1px solid var(--stroke2);
}
[data-theme="light"] .siteFooter{
  background: rgba(238, 243, 255, 0.95);
  border-top-color: rgba(15, 22, 35, 0.1);
}
.footerInner{
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 48px;
}
.footerTitle{
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
}
[data-theme="light"] .footerTitle{ color: rgba(15,22,35,.55); }
.footerCol a{
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color .15s ease;
}
.footerCol a:hover{ color: rgba(255,255,255,.95); }
[data-theme="light"] .footerCol a{ color: rgba(15,22,35,.8); }
[data-theme="light"] .footerCol a:hover{ color: var(--text); }
.footerApp{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
}
.footerApp:hover{ background: rgba(255,255,255,.1); }
[data-theme="light"] .footerApp{
  background: rgba(15, 22, 35, 0.06);
  border-color: rgba(15, 22, 35, 0.12);
}
[data-theme="light"] .footerApp:hover{ background: rgba(15, 22, 35, 0.1); }
.footerAppIcon{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
}
[data-theme="light"] .footerAppIcon{
  background: rgba(15, 22, 35, 0.1);
  color: rgba(15, 22, 35, 0.7);
}
.footerAppIcon svg{ width: 20px; height: 20px; }
.footerSocial{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0088cc;
  color: #fff;
  margin-top: 8px;
  transition: filter .15s ease;
}
.footerSocial:hover{ filter: brightness(1.15); }
.footerSocialIcon{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerSocialIcon svg{
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  /* выравнивание иконки по центру круга (path смещён в viewBox) */
  transform: translate(1px, 1px);
}

/* ============ FLOAT CHAT ============ */
.chat{
  position: fixed;
  right: 18px;
  bottom: 92px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid rgba(47,139,255,.35);
  background: rgba(15,22,35,.7);
  display:grid;
  place-items:center;
  box-shadow: var(--shadow2);
  z-index: 60;
}
[data-theme="light"] .chat{ background: rgba(255,255,255,.75); }

/* ============ MOBILE BOTTOM NAV ============ */
.bottomNav{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display:none;
  gap: 10px;
  justify-content: space-between;
  background: rgba(10,14,22,.78);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,.10);
  z-index: 70;
}
[data-theme="light"] .bottomNav{ background: rgba(238,243,255,.82); border-top: 1px solid rgba(15,22,35,.10); }
.bItem{
  flex: 1 1 0;
  padding: 10px 8px;
  border-radius: 16px;
  display:flex;
  flex-direction: column;
  gap: 6px;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  cursor:pointer;
  user-select:none;
}
.bItem.active{ color: var(--text); background: rgba(47,139,255,.14); border: 1px solid rgba(47,139,255,.20); }
.bItem img{ filter: brightness(0) invert(1); opacity: .88; }
.bItem.active img{ filter: brightness(0) invert(1); opacity: .95; }
[data-theme="light"] .bItem img{ filter: none; opacity: .85; }
[data-theme="light"] .bItem.active img{ filter: brightness(0) invert(1); opacity: .95; }
.bItem svg,.bItem img{ width: 22px; height: 22px; object-fit: contain; }
.bItem span{ font-size: 11px; font-weight: 700; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px){
  .app{ grid-template-columns: 280px 1fr; }
  .miniSearch{ min-width: 160px; }
}
@media (max-width: 920px){
  .app{ grid-template-columns: 1fr; }
  .sidebar{ display:none; }
  .main{ padding: 12px 12px 100px; }
  .bottomNav{ display:flex; }
  .hero{ min-height: 240px; border-radius: 18px; margin-top: 8px; }
  .heroInner{ grid-template-columns: 1fr; grid-template-rows: 1fr; min-height: 240px; position: relative; }
  .heroText{ padding: 16px 18px; position: relative; z-index: 2; justify-content: flex-end; background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.75) 70%); }
  .heroArt{ position: absolute; inset: 0; min-height: 240px; }
  .heroArt img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .heroKicker{ color: rgba(255,255,255,.9); }
  .heroTitle{ color: #fff; font-size: 22px; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
  .heroSubtitle{ display: none; }
  .heroActions{ margin-top: 10px; }
  .heroActions .btn{ padding: 10px 14px; font-size: 13px; }
  .sectionHead{ margin: 14px 4px 8px; flex-wrap: wrap; gap: 8px; }
  .sectionHead h2{ font-size: 17px; }
  .sectionHead .sectionIcon{ width: 20px; height: 20px; }
  .sectionHead .roundArrows{ margin-left: auto; }
  .hScroll{ padding: 4px 2px 8px; gap: 10px; }
  .card{ min-width: 150px; }
  .hScroll[data-scroll="jackpots"] .card{ min-width: 200px; }
  .hScroll[data-scroll="jackpots"] .card .thumb{ height: 120px; }
  .card .thumb{ height: 100px; }
  .card .title{ font-size: 12px; max-width: 140px; }
  .hScroll[data-scroll="jackpots"] .card .title{ font-size: 13px; max-width: 100%; -webkit-line-clamp: 2; line-clamp: 2; }
  .hScroll[data-scroll="jackpots"] .card .pillBlue{ font-size: 11px; padding: 4px 8px; }
  .card .meta{ padding: 10px; }
  .promoStrip{ min-height: 140px; margin-top: 14px; border-radius: 18px; }
  .promoStrip > div:first-child{ max-width: 70%; padding: 14px; background: linear-gradient(90deg, rgba(15,22,35,.95) 0%, transparent 100%); }
  .promoStrip .promoTitle{ font-size: 16px; }
  .promoStrip .promoSub{ font-size: 12px; }
  .topbar{ padding: 10px 8px 12px; gap: 8px; flex-wrap: nowrap; }
  .topbarLogo{ display: flex; }
  .topbarActions{ flex-direction: column; align-items: flex-end; gap: 4px; }
  .topbarActions .btn{ min-width: 88px; }
  .topbar .topbarActions .btn{ padding: 8px 12px; font-size: 12px; }
  .topbar .lang span:not(.flag){ display: none; }
  .ageBadge{ width: 28px; height: 28px; }
  .miniSearch{ display:none; }
  .tabs{ display:none; }
  .chat{ right: 12px; bottom: 88px; width: 48px; height: 48px; }
  .seo{ margin-top: 18px; padding: 16px; border-radius: 18px; }
  .siteFooter{ padding: 24px 16px 80px; margin-top: 24px; }
  .footerInner{ grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px){
  .main{ padding: 10px 10px 90px; }
  .card{ min-width: 130px; }
  .card .thumb{ height: 88px; }
}

/* ============ MICRO-ANIMATIONS (cheap) ============ */
.lift{ transition: transform .16s ease, filter .16s ease; }
.lift:hover{ transform: translateY(-2px); filter: brightness(1.03); }
@media (prefers-reduced-motion: reduce){
  .lift, .toggle::after{ transition: none !important; }
