/* =========================
   Fonts: Montserrat
========================= */
@font-face{
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Base / Tokens
========================= */
:root{
  /* Палитра (по макету: тёмный фон + синий акцент) */
  --color-bg: #070b18;
  --color-surface: #0b1020;
  --color-text: #e8efff;
  --color-link: #7bb8ff;
  --color-accent: #2fe1ff;
  --color-border: rgba(255,255,255,.10);

  --radius-xl: 20px;
  --radius-lg: 16px;

  --shadow-soft: 0 14px 40px rgba(0,0,0,.35);

  /* Контейнер */
  --container: 1360px;
  --gutter: 16px; /* моб. отступы */
}
:root{
  --font-main: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body{
  font-family: var(--font-main);
  font-weight: 400;
}

/* Breakpoints: 320 / 768 / 1024 / 1440+ */
@media (min-width: 768px){
  :root{ --gutter: 24px; }
}
@media (min-width: 1024px){
  :root{ --gutter: 32px; }
}

/* =========================
   Reset (легковесный)
========================= */
*,
*::before,
*::after{ box-sizing: border-box; }

html{ -webkit-text-size-adjust: 100%; }

body{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--color-text);
background: linear-gradient(270deg, #060816 0%, #1D2974 386.25%);
  line-height: 1.5;
  min-height: 100dvh;
  text-rendering: optimizeLegibility;
}

img, svg, video{
  max-width: 100%;
  height: auto;
  display: block;
}

a{
  color: var(--color-link);
  text-decoration: none;
}
a:hover{ text-decoration: underline; }

button, input, textarea, select{
  font: inherit;
  color: inherit;
}

:focus-visible{
  outline: 2px solid rgba(47,225,255,.9);
  outline-offset: 2px;
}

/* =========================
   Layout helpers
========================= */
.container{
  width: 100%;
  max-width: calc(var(--container) + (var(--gutter) * 2));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.main{
  padding: 24px 0 24px;
}
@media (min-width: 768px){
  .main{ padding: 32px 0 80px; }
}
@media (min-width: 1024px){
  .main{ padding: 40px 0 40px; }
}

.header,
.footer{
  background: transparent;
}

/* =========================
   UI primitives (база)
========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,.06);
  color: #11141D;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  will-change: transform;
}
.btn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  text-decoration: none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  border-color: rgba(47,225,255,.35);
  background: linear-gradient(180deg, #73D6F6 0%, #86B8F4 100%);
box-shadow: 0px 0px 13.3px rgba(118, 208, 245, 0.5);
border-radius: 12px;
}
.btn--primary:hover{
  border-color: rgba(47,225,255,.55);
  background: linear-gradient(180deg, rgba(47,225,255,.36), rgba(47,225,255,.14));
}

.card{
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

/* =========================
   Accessibility helpers
========================= */
.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link{
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(47,225,255,.18);
  border: 1px solid rgba(47,225,255,.35);
  color: var(--color-text);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus{ transform: translateY(0); }

/* =========================
   Header (sticky)
========================= */
.header{
  position: relative;
  z-index: 50;
}

.header--sticky{
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11,16,32,.92), rgba(11,16,32,.70));
  border-bottom: 1px solid var(--color-border);
}

.header__inner{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
}

@media (min-width: 1024px){
  .header__inner{ min-height: 72px; }
}

/* Brand */
.header__brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  color: var(--color-text);
}
.header__brand:hover{ text-decoration: none; }

.header__logo{
  display: grid;
  place-items: center;
  margin-right: 16px;
}

.header__name{
  font-weight: 700;
  letter-spacing: .6px;
  font-size: 14px;
  white-space: nowrap;
}

/* Nav */
.header__nav{
  display: none;
  align-items: center;
  gap: 10px;
  flex: 1;
}

@media (min-width: 1024px){
  .header__nav{ display: flex; }
}

.header__pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--color-text);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.header__pill:hover{
  text-decoration: none;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.header__pill--active{
  border-color: rgba(47,225,255,.35);
  background: linear-gradient(180deg, rgba(47,225,255,.20), rgba(47,225,255,.08));
}

.header__dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2fe1ff, #9a5bff);
  box-shadow: 0 0 14px rgba(47,225,255,.35);
}

.header__link{
	display: flex;
	justify-content: space-between;
	align-items: center;
  padding: 10px 8px;
  color: rgba(232,239,255,.82);
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
}
.header__link:hover{
  color: var(--color-text);
  text-decoration: none;
}

/* Actions */
.header__actions{
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header__btn{
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
}
.header__btn--ghost{
  border: 2px solid #79CEF6;
filter: drop-shadow(0px 0px 13.3px rgba(119, 207, 245, 0.5));
border-radius: 12px;
  background: transparent;
  color: var(--color-text);
}

/* Burger (mobile) */
.header__burger{
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  cursor: pointer;
}
.header__burger span{
  width: 18px;
  height: 2px;
  background: rgba(232,239,255,.9);
  border-radius: 2px;
}

@media (min-width: 1024px){
  .header__burger{ display: none; }
}

/* Mobile dropdown */
.header__mobile{
  padding: 12px 0 16px;
}

@media (min-width: 1024px){
  .header__mobile{ display: none !important; }
}

.header__mobile-nav{
  display: grid;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
}

.header__mobile-item{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--color-text);
  font-weight: 600;
}
.header__mobile-item:hover{ text-decoration: none; background: rgba(255,255,255,.06); }

.header__mobile-actions{
  display: flex;
  gap: 10px;
  padding-top: 12px;
}

/* =========================
	mobile nav (overlay)
========================= */ 

/* =========================
   Mobile Sidebar + Bottom Nav
========================= */

/* Чтобы контент не прятался за bottom-nav на мобилке */
@media (max-width: 1023.98px){
  body{ padding-bottom: 88px; }
}

/* Backdrop */
.backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 80;
}

/* Sidebar (offcanvas) */
.sidebar{
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: min(86vw, 320px);
  background: rgba(18,20,24,.94);
  border-right: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  z-index: 90;

  transform: translateX(-105%);
  transition: transform .22s ease;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 16px;
}

.sidebar.is-open{ transform: translateX(0); }

@media (min-width: 1024px){
  .sidebar, .backdrop, .mnav{ display: none !important; }
  body{ padding-bottom: 0; }
}

.sidebar__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
}

.sidebar__brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  text-decoration: none;
}

.sidebar__logo{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(47,225,255,.35), rgba(154,91,255,.20));
  border: 1px solid rgba(255,255,255,.10);
}

.sidebar__name{
  font-weight: 700;
  letter-spacing: .6px;
  font-size: 14px;
  white-space: nowrap;
}

.sidebar__close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}

.sidebar__nav{
  display: grid;
  gap: 10px;
  padding: 6px 0 14px;
}

.sidebar__item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px 10px 0;
  border-radius: 14px;
  color: rgba(232,239,255,.92);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
}
.sidebar__item:active{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}

.sidebar__ico{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 18px rgba(47,225,255,.10);
}

/* Цветные "иконки" как заглушки (потом заменим на SVG/FA) */
.sidebar__ico--c1{ box-shadow: 0 0 18px rgba(47,225,255,.22); border-color: rgba(47,225,255,.20); }
.sidebar__ico--c2{ box-shadow: 0 0 18px rgba(120,200,255,.22); border-color: rgba(120,200,255,.20); }
.sidebar__ico--c3{ box-shadow: 0 0 18px rgba(110,170,255,.22); border-color: rgba(110,170,255,.20); }
.sidebar__ico--c4{ box-shadow: 0 0 18px rgba(140,120,255,.22); border-color: rgba(140,120,255,.20); }

.sidebar__ico--y1{ box-shadow: 0 0 18px rgba(255,210,60,.22); border-color: rgba(255,210,60,.25); }
.sidebar__ico--p1{ box-shadow: 0 0 18px rgba(200,80,255,.22); border-color: rgba(200,80,255,.25); }
.sidebar__ico--g1{ box-shadow: 0 0 18px rgba(120,255,160,.18); border-color: rgba(120,255,160,.22); }
.sidebar__ico--w1{ box-shadow: 0 0 18px rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }

.sidebar__sep{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 6px 0;
}

.sidebar__actions{
  margin-top: auto;
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.sidebar__btn{
  width: 100%;
  padding: 14px 16px;
  justify-content: center;
  font-weight: 800;
}

.sidebar__btn--outline{
  background: transparent;
  border: 2px solid rgba(123,184,255,.55);
}

/* Mobile bottom nav */
.mnav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78px;
  z-index: 70;

  background: linear-gradient(180deg, rgba(11,16,32,.20), rgba(11,16,32,.88));
  border-top: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  align-items: center;
  padding: 10px 14px 12px;
  gap: 8px;
}

.mnav__item{
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(232,239,255,.85);
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 8px 6px;
  text-decoration: none;
  cursor: pointer;
}

.mnav__txt{
  font-size: 11px;
  font-weight: 600;
}

.mnav__ico{
  width: 22px;
  height: 22px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 18px rgba(47,225,255,.10);
}

.mnav__ico--menu{ box-shadow: 0 0 18px rgba(255,255,255,.12); }
.mnav__ico--casino{ box-shadow: 0 0 18px rgba(200,80,255,.16); border-color: rgba(200,80,255,.20); }
.mnav__ico--sport{ box-shadow: 0 0 18px rgba(47,225,255,.18); border-color: rgba(47,225,255,.20); }
.mnav__ico--live{ box-shadow: 0 0 18px rgba(120,200,255,.18); border-color: rgba(120,200,255,.20); }

/* Center floating button */
.mnav__center{
  width: 66px;
  height: 66px;
  margin-top: -30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;

  background: radial-gradient(circle at 30% 25%, rgba(47,225,255,.30), rgba(154,91,255,.18));
  border: 1px solid rgba(47,225,255,.30);
  box-shadow:
    0 12px 40px rgba(0,0,0,.45),
    0 0 40px rgba(47,225,255,.18);
}

.mnav__center-ico{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

/* Prevent layout shift from scrollbar when sidebar opens */
html.is-locked, body.is-locked{
  overflow: hidden;
}

@media (max-width: 767px) {
    .header__btn--ghost, .header__burger {
        display: none;
} .header__btn {
    padding: 6px 12px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    width: max-content;
}
}

.sidebar__item img{
  width: 32px;
  height: 32px;
}

.sidebar__item {
	font-size: 14px;
	font-weight: 400;
}

/* =========================
   Hero section
========================= */
.hero{
  padding: 18px 0 10px;
}

.hero__grid{
  display: grid;
  gap: 16px;
  align-items: center;
}

/* Desktop layout */
@media (min-width: 1024px){
  .hero{
    padding: 28px 0 18px;
  }
  .hero__grid{
    grid-template-columns: 1.05fr .95fr;
    gap: 22px;
  }
}

.hero__content{
  padding: 18px 16px;
}

@media (min-width: 768px){
  .hero__content{
    padding: 22px 22px;
    border-radius: 20px;
  }
}

.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(232,239,255,.92);
  font-weight: 600;
  font-size: 12px;
}

.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(22px, 3.1vw, 64px);
  line-height: 1.12;
  letter-spacing: -.2px;
}

.hero__title-accent{
  background: linear-gradient(90deg, #86B8F4 0%, #F713FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero__text{
  margin: 0 0 16px;
  color: rgba(232,239,255,.75);
  font-size: 14px;
  max-width: 52ch;
}

@media (min-width: 768px){
  .hero__text{ font-size: 15px; }
}

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__btn{
  padding: 12px 16px;
  font-weight: 800;
  font-size: 13px;
}

.hero__btn--ghost{
  border: 2.39041px solid #79CEF6;
filter: drop-shadow(0px 0px 15.8962px rgba(119, 207, 245, 0.5));
border-radius: 12px;
  background: transparent;
  color: var(--color-text);
}

/* Right media */
.hero__media{
  min-height: 150px;
}

.hero__banner{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(700px 300px at 70% 30%, rgba(47,225,255,.18), transparent 60%),
    radial-gradient(600px 260px at 40% 10%, rgba(154,91,255,.16), transparent 60%),
    rgba(255,255,255,.03);

  /* сама картинка */
background-image:
    url("img/0215.webp");
  background-repeat: no-repeat;
  background-position: left right;
  background-size: cover;

  box-shadow: 0 18px 55px rgba(0,0,0,.45);
   width: 100%; height: 420px;
}

@media (min-width: 768px){
  .hero__banner{ height: 200px; border-radius: 20px; }

}
@media (min-width: 1024px){
  .hero__banner{  width: 100%; height: 420px; overflow: hidden;}
}
@media (min-width: 1440px){
  .hero__banner{ width: 100%; height: 420px; }
}

@media (max-width: 767px) {
   .hero__banner{ 
		height: 200px; border-radius: 20px;
	 }
	 .hero__content {
    padding: 18px 16px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}} 

//* =========================
   Promo strip (3 cards + mobile scroll)
========================= */
.promo-strip{
  padding: 14px 0 10px;
}

.promo-strip__track{
  display: grid;
  gap: 14px;
}

/* Карточка — общий вид */
.promo-card{
  display: block;
  height: 180px;              /* как у тебя на десктопе */
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background-color: rgba(255,255,255,.03);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;      /* важно! */
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.38);
  text-decoration: none;
}

/* Desktop: 3 в ряд */
@media (min-width: 1024px){
  .promo-strip{ padding: 18px 0 12px; }

  .promo-strip__track{
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* ВОТ ТУТ 3 */
    gap: 16px;
  }
}

/* Mobile: 1 карточка на экран + свайп */
@media (max-width: 1023.98px){
  .promo-strip__track{
    grid-auto-flow: column;
    grid-auto-columns: 100%;   /* ровно один слайд */
    overflow-x: auto;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* padding: 0 var(--gutter); */
    margin: 0 calc(var(--gutter) * -1);

    scrollbar-width: none;
  }
  .promo-strip__track::-webkit-scrollbar{ display: none; }

  .promo-card{ scroll-snap-align: start; }
}

/* Высота на мобиле */
@media (max-width: 767.98px){
  .promo-card{
    height: 130px;
    border-radius: 12px;
    background-position: center;
  }
}

/* Фоны */
.promo-card--m{ background-image: url("img/image 9.png"); }
.promo-card--w{ background-image: url("img/image 10.png"); }
.promo-card--x{ background-image: url("img/image 11.webp"); }

/* =========================
   Games grid
========================= */
.games{
  padding: 18px 0;
}

.games__head{
  margin-bottom: 14px;
}

.games__title{
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 34px);
  letter-spacing: -.2px;
}

.games__subtitle{
  margin: 0;
  color: rgba(232,239,255,.70);
  font-size: 13px;
}

@media (min-width: 768px){
  .games{ padding: 26px 0 10px; }
  .games__head{ margin-bottom: 18px; }
  .games__subtitle{ font-size: 14px; }
}

/* Grid: mobile 1col, tablet 2-3, desktop 5 */
.games__grid{
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .games__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (min-width: 1024px){
  .games__grid{
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }
}

/* Card */
.game{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 14px 42px rgba(0,0,0,.35);
  overflow: hidden;
}

.game__media{
  display: block;
  height: 92px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(1.02);
}

@media (min-width: 768px){
  .game__media{ height: 100px; }
}
@media (min-width: 1024px){
  .game__media{ height: 110px; }
}

.game__body{
  padding: 10px 10px 12px;
}

.game__row{
  display: flex;
  align-items: center;
  gap: 8px;
}

.game__name{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: rgba(232,239,255,.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.game__meta{
  margin-top: 6px;
  font-size: 11px;
  color: rgba(232,239,255,.65);
}
.game__meta span{ color: rgba(232,239,255,.85); font-weight: 700; }

.game__btn{
  width: 100%;
  margin-top: 10px;
  justify-content: center;
  padding: 10px 12px;
background: linear-gradient(180deg, #86B8F4 0%, rgba(134, 184, 244, 0.65) 100%);
box-shadow: 0px 0px 12.476px rgba(115, 214, 246, 0.58);
border-radius: 15.0088px;
  font-weight: 800;
  font-size: 12px;
}

.game__btn:hover{
  text-decoration: none;
  background: linear-gradient(180deg, rgba(123,184,255,.32), rgba(123,184,255,.12));
  border-color: rgba(123,184,255,.40);
}

/* Badges */
.badge{
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2px;
  padding: 4px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(232,239,255,.92);
  flex: 0 0 auto;
}

.badge--top{
  border-color: rgba(255,210,60,.28);
  color: rgba(255,220,90,.95);
  box-shadow: 0 0 16px rgba(255,210,60,.10);
}

.badge--hot{
  border-color: rgba(255,90,110,.28);
  color: rgba(255,120,140,.95);
  box-shadow: 0 0 16px rgba(255,90,110,.10);
}

.badge--new{
  border-color: rgba(80,255,190,.22);
  color: rgba(120,255,210,.95);
  box-shadow: 0 0 16px rgba(80,255,190,.10);
}

/* Demo backgrounds (замени на свои превью) */
.game__media--g1{ background-image: url("img/image.jpg"); }
.game__media--g2{ background-image: url("img/image.webp"); }
.game__media--g3{ background-image: url("img/image (1).webp"); }
.game__media--g4{ background-image: url("img/image (2).webp"); }
.game__media--g5{ background-image: url("img/image (3).webp"); }
.game__media--g6{ background-image: url("img/image (4).webp"); }
.game__media--g7{ background-image: url("img/image (5).webp"); }
.game__media--g8{ background-image: url("img/image 10.webp"); }
.game__media--g9{ background-image: url("img/image 9.webp"); }
.game__media--g10{ background-image: url("img/image (6).webp"); }


/* =========================
   Jackpot image only
========================= */
.jackpot{
  padding: 18px 0;
}

.jackpot__image{
  width: 100%;
  height: 455px;
  border-radius: 20px;
  overflow: hidden;

  background-image: url("img/image 12.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

}

/* Tablet */
@media (max-width: 1023.98px){
  .jackpot__image{
    height: 150px;
    border-radius: 16px;
  }
}

/* Mobile — полностью скрываем */
@media (max-width: 767.98px){
  .jackpot{
    display: none;
  }
}

/* =========================
   Top wins
========================= */
.topwins{
  padding: 18px 0 10px;
}

.topwins__head{
  margin-bottom: 12px;
}

.topwins__title{
  margin: 0;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -.2px;
  margin-bottom: 70px;
}

/* Desktop: horizontal row (scroll) */
.topwins__row{
  display: grid;
  gap: 14px;

  grid-auto-flow: column;
  grid-auto-columns: 196px; /* ширина карточки как на скрине */
  /* overflow-x: auto; */
  padding: 2px 0 10px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: space-between;
}
.topwins__row::-webkit-scrollbar{ display: none; }

.tw-card{
  scroll-snap-align: start;
  display: grid;
  justify-items: center;
  gap: 6px;

  padding: 14px 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #580710 0%, rgba(134, 184, 244, 0.12) 100%);
border: 0.935525px solid rgba(134, 184, 244, 0.49);
  box-shadow: 0 14px 42px rgba(0,0,0,.35);
  text-decoration: none;
  color: rgba(232,239,255,.95);
  min-height: 238px;
}

.tw-card:hover{ text-decoration: none; }

.tw-card__icon{
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: -50px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 16px 32px rgba(0,0,0,.45),
    0 0 22px rgba(123,184,255,.14);
}

.tw-card__name{
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

.tw-card__meta{
  font-size: 11px;
  color: rgba(232,239,255,.65);
}

/* Mobile: grid 2 columns like screenshot */
@media (max-width: 767.98px){
  .topwins__row{
    overflow: visible;
    grid-auto-flow: unset;
    grid-auto-columns: unset;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
  }

  .tw-card{
    min-height: 126px;
    padding: 14px 12px 14px;
    border-radius: 16px;
  }

  .tw-card__icon{
    width: 60px;
    height: 60px;
  }
}

/* Icon images */
.tw-card__icon--i1{ background-image: url("img/image 14.webp"); }
.tw-card__icon--i2{ background-image: url("img/image 15.webp"); }
.tw-card__icon--i3{ background-image: url("img/image 16.webp"); }
.tw-card__icon--i4{ background-image: url("img/image 17.webp"); }
.tw-card__icon--i5{ background-image: url("img/image 18.webp"); }
.tw-card__icon--i6{ background-image: url("img/SugarRusha.webp"); }


/* =========================
   Stats (wins + trends)
========================= */
.stats{
  padding: 18px 0 10px;
}

.stats__box{
  border-radius: 20px;
  padding: 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}

.stats__col{
  min-width: 0;
}

.stats__title{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(232,239,255,.92);
  margin-bottom: 12px;
}
.stats__title img {
	  width: 42px;
  height: 42px;
  border-radius: 999px;
}


.stats__ticon--blue{ box-shadow: 0 0 16px rgba(120,200,255,.20); border-color: rgba(120,200,255,.22); }
.stats__ticon--gold{ box-shadow: 0 0 16px rgba(255,210,60,.18); border-color: rgba(255,210,60,.24); }
.stats__ticon--gray{ box-shadow: 0 0 16px rgba(255,255,255,.10); border-color: rgba(255,255,255,.16); }

/* layout */
@media (min-width: 1024px){
  .stats__box{
    display: grid;
    grid-template-columns: 320px 320px 1fr;
    gap: 22px;
    align-items: start;
    padding: 18px 22px;
  }
}
@media (max-width: 1023.98px){
  .stats__box{
    display: grid;
    gap: 18px;
  }
}

/* win list */
.winlist{
  display: grid;
  gap: 12px;
}

.winrow{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: rgba(232,239,255,.92);
}

.winrow__thumb{
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.winrow__text{
  display: grid;
  gap: 2px;
  min-width: 0;
}

.winrow__user{
  font-size: 10px;
  color: rgba(232,239,255,.55);
}

.winrow__sum{
  font-size: 13px;
  font-weight: 800;
  color: rgba(232,239,255,.92);
}

.winrow__game{
  font-size: 11px;
  color: rgba(232,239,255,.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* trends */
.trend{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.trend__item{
  display: grid;
  gap: 6px;
  text-decoration: none;
  color: rgba(232,239,255,.90);
}

.trend__img{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.trend__name{
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trend__meta{
  font-size: 10px;
  color: rgba(232,239,255,.60);
}

/* Mobile trend layout like screenshot */
@media (max-width: 767.98px){
  .stats__box{ padding: 16px; border-radius: 18px; }
  .trend{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* thumbs images (замени на свои) */
.winrow__thumb--s1{ background-image: url("img/image (7).webp"); }
.winrow__thumb--s2{ background-image: url("img/image (8).webp"); }
.winrow__thumb--s3{ background-image: url("img/image (9).webp"); }
.winrow__thumb--s4{ background-image: url("img/image (10).webp"); }

.trend__img--t1{ background-image: url("img/1691 1.webp"); }
.trend__img--t2{ background-image: url("img/8152 1.webp"); }
.trend__img--t3{ background-image: url("img/8140 1.webp"); }
.trend__img--t4{ background-image: url("img/185 1.webp"); }
.trend__img--t5{ background-image: url("img/230 1.webp"); }

/* =========================
   Double image banner
========================= */
.double-banner{
  padding: 18px 0;
}

.double-banner__grid{
  display: grid;
  gap: 16px;
}

/* Desktop: 2 в ряд */
@media (min-width: 768px){
  .double-banner__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.double-banner__item{
  display: block;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  transition: transform .18s ease, box-shadow .18s ease;
}

.double-banner__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 65px rgba(0,0,0,.55);
}

/* Tablet */
@media (max-width: 1023.98px){
  .double-banner__item{
    height: 130px;
    border-radius: 18px;
  }
}

/* Mobile */
@media (max-width: 767.98px){
  .double-banner__item{
    height: 130px;
    border-radius: 16px;
  }
}

/* Background images */
.double-banner__item--sport{
  background-image: url("img/image 19.webp");
}

.double-banner__item--casino{
  background-image: url("img/image 21.webp");
}

/* =========================
   New section (Новинки)
========================= */
.new{
  padding: 18px 0 10px;
}

.new__head{
  margin-bottom: 12px;
}

.new__title{
  margin: 0 0 4px;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -.2px;
}

.new__subtitle{
  margin: 0;
  color: rgba(232,239,255,.70);
  font-size: 13px;
}

@media (min-width: 768px){
  .new{ padding: 26px 0 14px; }
  .new__head{ margin-bottom: 16px; }
  .new__subtitle{ font-size: 14px; }
}

/* grid */
.new__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 768px){
  .new__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 1024px){
  .new__grid{
    grid-template-columns: repeat(5, minmax(0, 1fr)); /* как на скрине */
    gap: 16px;
  }
}

/* card */
.new-card{
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 14px 42px rgba(0,0,0,.35);
  text-decoration: none;
  color: var(--color-text);
}

.new-card__img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3; /* близко к превью в макете */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 1024px){
  .new-card__img{ aspect-ratio: 16 / 11; }
}

/* caption like small pill */
.new-card__cap {
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* max-width: calc(100% - 20px); */
    padding: 6px 10px;
    border-radius: 0;
    background: rgba(0, 0, 0, .32);
    /* border: 1px solid rgba(255, 255, 255, .12); */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 100%;
}

.new-card__mini{
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}

.new-card__name{
  font-size: 11px;
  font-weight: 700;
  color: rgba(232,239,255,.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* hover */
@media (hover:hover){
  .new-card{
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .new-card:hover{
    transform: translateY(-2px);
    border-color: rgba(123,184,255,.24);
    box-shadow: 0 18px 55px rgba(0,0,0,.45);
  }
}

/* images (замени на свои) */
.new-card__img--n1{ background-image: url("img/image (11).webp"); }
.new-card__img--n2{ background-image: url("img/image (12).webp"); }
.new-card__img--n3{ background-image: url("img/image (13).webp"); }
.new-card__img--n4{ background-image: url("img/image (14).webp"); }
.new-card__img--n5{ background-image: url("img/image (15).webp"); }
.new-card__img--n6{ background-image: url("img/image (16).webp"); }
.new-card__img--n7{ background-image: url("img/image (17).webp"); }
.new-card__img--n8{ background-image: url("img/image (18).webp"); }
.new-card__img--n9{ background-image: url("img/image (19).webp"); }
.new-card__img--n10{ background-image: url("img/image (20).webp"); }


/* =========================
   Trust: Payments + Security
========================= */
.trust{
  padding: 18px 0 10px;
}

.trust__grid{
  display: grid;
  gap: 16px;
}

@media (min-width: 1024px){
  .trust{
    padding: 26px 0 14px;
  }
  .trust__grid{
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
  }
}

.trust-card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  padding: 18px 18px 16px;
}

@media (min-width: 768px){
  .trust-card{ padding: 20px 20px 18px; }
}

.trust-card__head{
  margin-bottom: 14px;
}

.trust-card__title{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.2px;
}

.trust-card__subtitle{
  margin: 0;
  color: rgba(232,239,255,.65);
  font-size: 12px;
  line-height: 1.45;
}

/* Payment logos row */
.pay-logos{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 14px;
}

.pay-logos__item{
  width: 76px;
  height: 76px;
  border-radius: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}

/* заглушки (потом заменим на реальные SVG/картинки) */
.pay-logos__item--mc{ background-image: url("img/Frame (1).webp"); }
.pay-logos__item--pp{ background-image: url("img/Frame (2).webp"); }
.pay-logos__item--btc{ background-image: url("img/Frame (3).webp"); }
.pay-logos__item--usdt{ background-image: url("img/Frame (4).webp"); }
.pay-logos__item--bnb{ background-image: url("img/Frame (5).webp"); }
.pay-logos__item--visa{ background-image: url("img/Frame (6).webp"); }

/* note */
.trust-note{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}

.trust-note__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(123,184,255,.85);
  box-shadow: 0 0 16px rgba(123,184,255,.35);
  flex: 0 0 auto;
}

.trust-note__title{
  font-size: 12px;
  font-weight: 800;
  color: rgba(232,239,255,.92);
}

.trust-note__sub{
  font-size: 11px;
  color: rgba(232,239,255,.55);
}

/* SSL box inside Security card */
.ssl-box{
  display: block;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(123,184,255,.45);
  background: radial-gradient(520px 220px at 30% 30%, rgba(123,184,255,.14), transparent 60%),
              rgba(255,255,255,.03);
  text-decoration: none;
  color: rgba(232,239,255,.95);
}

.ssl-box__kicker{
  font-size: 11px;
  color: rgba(232,239,255,.70);
  margin-bottom: 4px;
  font-weight: 600;
}

.ssl-box__title{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.2px;
}

.trust-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(123,184,255,.95);
  text-decoration: none;
}

.trust-link:hover{
  text-decoration: underline;
}

/* Mobile tweaks */
@media (max-width: 767.98px){
  .trust-card{
    padding: 16px 16px 14px;
    border-radius: 18px;
  }
  .pay-logos__item{
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
}

/* =========================
   Reviews
========================= */
.reviews{
  padding: 26px 0 14px;
}

.reviews__title{
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  letter-spacing: -.2px;
}

/* grid */
.reviews__grid{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px){
  .reviews__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.review{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 14px 42px rgba(0,0,0,.30);
  padding: 16px 16px 14px;
  min-height: 160px;
}

.review__stars{
  color: rgba(123,184,255,.95);
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 10px;
}

.review__text{
  margin: 0 0 14px;
  color: rgba(232,239,255,.78);
  font-size: 12px;
  line-height: 1.45;
}

/* footer */
.review__foot{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.review__avatar{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;

  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  color: rgba(232,239,255,.92);
}

.review__name{
  font-weight: 800;
  font-size: 12px;
  color: rgba(232,239,255,.92);
}

.review__date{
  font-size: 10px;
  color: rgba(232,239,255,.55);
}

/* mobile tweaks */
@media (max-width: 767.98px){
  .reviews{ padding: 22px 0 10px; }
  .review{ border-radius: 16px; }
}

/* =========================
   SEO text block
========================= */
.seo{
  padding: 26px 0 14px;
}

.seo--page{
  padding: 60px 0 40px;
}

.seo__title{
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.3px;
  color: rgba(232,239,255,.95);
  line-height: 1.25;
}

@media (min-width: 768px){
  .seo--page{ padding: 80px 0 60px; }
  .seo__title{ font-size: 36px; }
}

.seo__wrap{
  display: grid;
  gap: 18px;
}


.seo__h2{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.2px;
  color: rgba(232,239,255,.92);
}

.seo__h3{
  margin: 14px 0 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.15px;
  color: rgba(232,239,255,.92);
}

.seo__p{
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(232,239,255,.70);
}

.seo__p--muted{
  color: rgba(232,239,255,.55);
}

.seo__list{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}

.seo__li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(232,239,255,.72);
}

.seo__li strong{
  color: rgba(232,239,255,.90);
  font-weight: 900;
}

.seo__ico{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  margin-top: 2px;
  background: radial-gradient(circle at 30% 30%, rgba(47,225,255,.9), rgba(123,184,255,.35));
  box-shadow: 0 0 18px rgba(47,225,255,.16);
  border: 1px solid rgba(255,255,255,.10);
}

/* Simple list items (generated) - auto circle icons */
.seo__list > li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(232,239,255,.72);
}
.seo__list > li::before{
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 999px;
  margin-top: 3px;
  background: radial-gradient(circle at 30% 30%, rgba(47,225,255,.9), rgba(123,184,255,.35));
  box-shadow: 0 0 18px rgba(47,225,255,.16);
  border: 1px solid rgba(255,255,255,.10);
  flex-shrink: 0;
}

/* чуть более "текстовый" вид на больших экранах */
@media (min-width: 1024px){
  .seo__h2{ font-size: 20px; }
  .seo__h3{ font-size: 17px; }
  .seo__p, .seo__li{ font-size: 12.5px; }
}

/* =========================
   SEO Tables (responsive)
========================= */
.seo__table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.seo__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  color: rgba(232,239,255,.85);
}

.seo__table th,
.seo__table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.seo__table th {
  background: rgba(123,184,255,.12);
  color: rgba(232,239,255,.95);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.seo__table tr:last-child td {
  border-bottom: none;
}

.seo__table tr:hover td {
  background: rgba(255,255,255,.03);
}

@media (max-width: 767.98px) {
  .seo__table th,
  .seo__table td {
    padding: 10px 12px;
    font-size: 11px;
  }
}

/* =========================
   Info Blocks (Note, Warning, Fact)
========================= */
.seo__note,
.seo__warning,
.seo__fact {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.seo__note::before,
.seo__warning::before,
.seo__fact::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-top: 1px;
}

/* Note - Green */
.seo__note {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: rgba(232,239,255,.85);
}
.seo__note::before {
  background: radial-gradient(circle at 30% 30%, #10B981, #059669);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

/* Warning - Red */
.seo__warning {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: rgba(232,239,255,.85);
}
.seo__warning::before {
  background: radial-gradient(circle at 30% 30%, #EF4444, #DC2626);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

/* Fact - Blue */
.seo__fact {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: rgba(232,239,255,.85);
}
.seo__fact::before {
  background: radial-gradient(circle at 30% 30%, #3B82F6, #2563EB);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

/* =========================
   Content Image
========================= */
.seo__img {
  margin: 18px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 42px rgba(0,0,0,.35);
}

.seo__img img {
  width: 100%;
  height: auto;
  display: block;
}

.seo__img figcaption {
  padding: 10px 14px;
  background: rgba(0,0,0,.25);
  font-size: 11px;
  color: rgba(232,239,255,.65);
  text-align: center;
}

@media (max-width: 767.98px) {
  .seo__img {
    border-radius: 12px;
    margin: 14px 0;
  }
}

/* =========================
   Footer
========================= */

.footer__grid{
  display: grid;
  gap: 18px;
  align-items: start;
}

/* Desktop: 4 columns */
@media (min-width: 1024px){
  .footer__grid{
    grid-template-columns: 1.2fr .8fr .9fr .9fr;
    gap: 28px;
  }
}

/* Brand */
.footer__logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(232,239,255,.95);
  margin-bottom: 12px;
}

.footer__mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(47,225,255,.35), rgba(154,91,255,.20));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 24px rgba(47,225,255,.10);
}

.footer__name{
  font-weight: 900;
  letter-spacing: .6px;
  font-size: 14px;
}

.footer__contacts{
  display: grid;
  gap: 10px;
  max-width: 320px;
}

.contact-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(232,239,255,.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}

.contact-pill__ico{
  width: 22px;
  height: 22px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 18px rgba(47,225,255,.10);
}

/* маленькие отличия под mail/tg */
.contact-pill__ico--mail{
  box-shadow: 0 0 18px rgba(123,184,255,.18);
  border-color: rgba(123,184,255,.20);
}
.contact-pill__ico--tg{
  box-shadow: 0 0 18px rgba(47,225,255,.18);
  border-color: rgba(47,225,255,.20);
}

/* Columns */
.footer__col{
  display: grid;
  gap: 10px;
}

.footer__col ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer__col ul li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__col ul li a{
  color: rgba(232,239,255,.65);
  font-size: 12px;
  text-decoration: none;
  line-height: 1.35;
}

.footer__col ul li a:hover{
  color: rgba(232,239,255,.90);
  text-decoration: underline;
}

.footer__title{
  font-weight: 900;
  font-size: 13px;
  color: rgba(232,239,255,.92);
  margin-bottom: 2px;
}

.footer__link{
  color: rgba(232,239,255,.65);
  font-size: 12px;
  text-decoration: none;
  line-height: 1.35;
}

.footer__link:hover{
  color: rgba(232,239,255,.90);
  text-decoration: underline;
}

/* Mobile spacing like screenshot */
@media (max-width: 767.98px){
  .footer{
    padding: 0px;
  }
  .footer__grid{
    gap: 16px;
  }
}

/* =========================
   Payments (image cards)
========================= */
.payments{
  padding: 18px 0 10px;
}

.payments__title{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(232,239,255,.92);
}



/* Card = one image */
.payment-card{
  height: 56px;


  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}

/* Images (замени на свои файлы) */
.payment-card--p1{ background-image: url("img/Frame (7).webp"); }

/* Images (замени на свои файлы) */
.payment-card--p2{ background-image: url("img/Frame (8).webp"); }

/* Mobile height tweak */
@media (max-width: 767.98px){
  .payment-card{
    height: 52px;
    border-radius: 12px;
  }
}

/* =========================
   Responsible gaming
========================= */
.responsible{
  padding: 16px 0 18px;
}

.responsible__inner{
  display: flex;
  align-items: center;
  align-items: flex-start;
    gap: 14px;
    flex-direction: column;
}

/* Logo */
.responsible__logo{
  width: 140px;
  height: 34px;
  flex-shrink: 0;

  background-image: url("img/Vector.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

/* Text */
.responsible__text{
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(232,239,255,.55);
}

.responsible__link{
  color: rgba(123,184,255,.9);
  text-decoration: underline;
  cursor: default;
}

/* Mobile */
@media (max-width: 767.98px){
  .responsible__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .responsible__logo{
    width: 130px;
    height: 32px;
  }
}
