@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/golos-text-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/golos-text-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/golos-text-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Unbounded;
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("/assets/fonts/unbounded-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Unbounded;
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("/assets/fonts/unbounded-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Unbounded;
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("/assets/fonts/unbounded-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #070b12;
  --bg-2: #0b1220;
  --card: #121a2b;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #9aa8bb;
  --blue: #0285f0;
  --blue-2: #3aa6ff;
  --green: #00c853;
  --green-2: #16e06c;
  --header-h: 72px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Golos Text", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  padding-bottom: 84px;
}
html.age-locked,
html.age-locked body,
body.age-locked { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(2, 133, 240, 0.22), transparent 60%),
    radial-gradient(700px 380px at 90% 8%, rgba(0, 200, 83, 0.12), transparent 55%);
}

.topbar, .header, main, .footer { position: relative; z-index: 1; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: #d7e6ff;
  background: linear-gradient(90deg, #08203a, #0d2b1c);
  border-bottom: 1px solid var(--line);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(0, 200, 83, 0); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: visible;
  background: rgba(7, 11, 18, 0.96);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 48px));
  min-height: var(--header-h);
  margin: 0 auto;
  position: relative;
}
.logo {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  font-family: Unbounded, sans-serif;
  font-weight: 800;
  letter-spacing: -0.06em;
  font-size: 28px;
  line-height: 1;
}
.logo-1 { color: #fff; }
.logo-win { color: #fff; }
.logo-img {
  display: block;
  width: 108px;
  height: 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.nav a,
.nav-more-btn {
  text-decoration: none;
  color: var(--muted);
  font: inherit;
  font-weight: 500;
  font-size: 14px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav a:hover,
.nav a[aria-current="page"],
.nav-more-btn:hover,
.nav-more.has-current .nav-more-btn,
.nav-more.is-open .nav-more-btn { color: #fff; }

.nav-more { position: relative; }
.nav-more-list {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 10px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0b1220;
  z-index: 40;
}
.nav-more.is-open .nav-more-list { display: flex; flex-direction: column; gap: 0; }
.nav-more-list a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
}
.nav-more-list a:hover { background: rgba(255,255,255,.04); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.btn-green {
  color: #04150b;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.28);
}
.btn-green:hover { filter: brightness(1.06); }
.btn-blue {
  color: #fff;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
}
.btn-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.18);
}
.btn-xl { height: 52px; padding: 0 22px; font-size: 16px; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 1100;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  color: #070b12;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

main { max-width: 1180px; margin: 0 auto; padding: 28px 24px 0; }

.hero {
  display: grid;
  gap: 18px;
  padding: 12px 0 8px;
}
.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 48px 44px 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #070b12;
}
.hero-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 11, 18, 0.94) 0%, rgba(7, 11, 18, 0.84) 36%, rgba(7, 11, 18, 0.4) 64%, rgba(7, 11, 18, 0.18) 100%);
}
.hero-banner .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-banner h1 { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45); }
.disclosure {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 56ch;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chip {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  color: #d7e6ff;
  font-size: 13px;
  font-weight: 600;
}

.promo-wrap { margin-top: 4px; }
.promo-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(420px 160px at 90% 0%, rgba(0, 200, 83, 0.12), transparent 60%),
    #101827;
}
.promo-card__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.2fr;
  gap: 24px;
  align-items: center;
}
.promo-code {
  margin: 0 0 14px;
  font-family: Unbounded, sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.04em;
}
.js-promo-copy { margin-bottom: 12px; }
.promo-note { margin: 0; color: var(--muted); font-size: 14px; max-width: 46ch; }
.bonus-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.bonus-step {
  padding: 16px 14px;
  border-radius: 16px;
  background: #0b1220;
  border: 1px solid var(--line);
}
.bonus-step span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.bonus-step b {
  font-family: Unbounded, sans-serif;
  font-size: 22px;
  line-height: 1.15;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tile {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #101827;
}
.tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 18, 0.18) 0%, rgba(7, 11, 18, 0.88) 72%);
}
.tile > :not(.tile-img) { position: relative; z-index: 1; }
.tile:hover { border-color: rgba(2, 133, 240, 0.45); }
.tile-title { margin: 0 0 6px; font-weight: 700; font-size: 18px; }
.tile p:last-child { margin: 0; color: #c8d4e6; font-size: 14px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #101827;
}
.stat strong { display: block; font-size: 20px; margin-bottom: 4px; }
.stat span { color: var(--muted); font-size: 14px; }

.games-block { margin-top: 8px; }
.games-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.games-heading { margin: 0; font-size: 20px; }
.games-nav { display: flex; gap: 8px; }
.games-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #101827;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.games-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.game-card {
  flex: 0 0 168px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  scroll-snap-align: start;
}
.game-card__art {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #101827;
}
.game-provider { margin-top: 8px; color: var(--muted); font-size: 12px; }
.game-title { font-weight: 700; }

.shot { margin: 22px 0; }
.shot-zoom {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0b1220;
  cursor: zoom-in;
  text-decoration: none;
  color: inherit;
}
.shot-zoom img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.25s ease;
}
.shot-zoom:hover img { transform: scale(1.03); }
.shot-zoom__hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.82);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
}
.shot figcaption { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.shot-lightbox {
  padding: 0;
  border: 0;
  background: transparent;
}
.shot-lightbox[open] {
  position: fixed;
  inset: 0;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background: rgba(7, 11, 18, 0.92);
  cursor: zoom-out;
}
.shot-lightbox::backdrop { background: rgba(7, 11, 18, 0.92); }
.shot-lightbox__frame {
  position: relative;
  max-width: min(1280px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
}
.shot-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1280px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  cursor: default;
}
.shot-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(7, 11, 18, 0.88);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.shot-lightbox__close:hover { background: #162033; }

.mobile-apk { display: none; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-2);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
h1, h2, h3 { font-family: Unbounded, "Segoe UI", system-ui, sans-serif; letter-spacing: -0.04em; }
h1 { margin: 0 0 14px; font-size: clamp(32px, 5vw, 56px); line-height: 1.05; color: #fff; }
h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); }
.lead { margin: 0 0 22px; color: var(--muted); font-size: 18px; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.promo-row {
  margin-top: 16px;
  color: var(--muted);
}
.promo-row button {
  margin-left: 6px;
  padding: 6px 10px;
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 8px;
  color: #fff;
  background: #101827;
  font: inherit;
  cursor: pointer;
}
#promo-inline strong { color: #fff; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.hero-points li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero-panel { display: grid; gap: 12px; }
.bonus-orb, .mini-grid, .product, .sport-card, .game, .bonus-main, .bonus-side, .app-banner, .faq details {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.bonus-orb {
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 200, 83, 0.18), transparent 55%),
    linear-gradient(180deg, #10192a, #0d1422);
}
.bonus-label { color: var(--muted); font-size: 13px; }
.bonus-num {
  margin: 8px 0 4px;
  font-family: Unbounded, sans-serif;
  font-size: clamp(64px, 8vw, 84px);
  font-weight: 800;
  line-height: 0.9;
  color: #fff;
}
.bonus-note { margin: 0 0 18px; color: var(--muted); }
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}
.mini-grid div {
  padding: 14px;
  background: #101827;
}
.mini-grid b { display: block; font-size: clamp(15px, 2vw, 18px); line-height: 1.25; }
.mini-grid span { color: var(--muted); font-size: 13px; }

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}
.product, .game {
  text-decoration: none;
  padding: 18px;
  transition: transform .2s ease, border-color .2s ease;
}
.product:hover, .game:hover, .sport-card:hover { transform: translateY(-3px); border-color: rgba(2,133,240,.45); }
.product-icon { font-size: 22px; }
.product strong, .game b { display: block; margin: 8px 0 4px; font-size: 18px; }
.product span, .game span { color: var(--muted); font-size: 14px; }

.section { padding: 56px 0 8px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.sport-grid, .casino-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sport-card { padding: 0 0 16px; overflow: hidden; }
.sport-card img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
  margin-bottom: 12px;
}
.sport-card span,
.sport-card h3,
.sport-card p { padding-left: 16px; padding-right: 16px; }
.sport-card span { color: var(--blue-2); font-size: 13px; font-weight: 700; }
.sport-card h3 { margin: 8px 0 8px; font-size: 18px; }
.sport-card p { margin: 0; color: var(--muted); }

.casino-grid { grid-template-columns: repeat(4, 1fr); }
.game {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.bonus-layout { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 12px; }
.bonus-main { padding: 24px; }
.bonus-main p { color: var(--muted); }
.bonus-main ol { color: var(--muted); padding-left: 18px; }
.bonus-main li { margin: 8px 0; }
.bonus-terms {
  margin: 18px 0 20px;
  padding-left: 18px;
  color: var(--muted);
}
.bonus-terms li { margin: 8px 0; }
.bonus-side { display: grid; gap: 12px; background: none; border: 0; }
.bonus-side div { padding: 18px; border-radius: var(--radius); border: 1px solid var(--line); background: #101827; }
.bonus-side b { display: block; margin-bottom: 6px; font-size: 18px; }
.bonus-side span { color: var(--muted); }

.app-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 24px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(500px 180px at 90% 0%, rgba(2,133,240,.2), transparent 60%),
    #101827;
}
.app-banner p { color: var(--muted); }
.app-banner__img {
  display: block;
  width: min(280px, 100%);
  height: auto;
  margin-left: auto;
  border-radius: 16px;
}
.app-points { margin: 18px 0 0; padding-left: 18px; color: var(--muted); }
.app-points li { margin: 10px 0; }

.pay-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-row span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #101827;
  font-weight: 700;
}
.pay-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.pay-facts div {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #101827;
}
.pay-facts b { display: block; margin-bottom: 6px; font-size: 18px; }
.pay-facts span { color: var(--muted); }
.pay-steps {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
}
.pay-steps li { margin: 8px 0; }

.faq { display: grid; gap: 10px; }
.faq details { padding: 4px 18px 12px; }
.faq summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
}
.faq p { margin: 0 0 12px; color: var(--muted); }

.home-shot {
  position: relative;
  display: block;
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-decoration: none;
}
.home-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.home-shot__cta {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  background: var(--green);
  color: #04140a;
  font-weight: 700;
  font-size: 16px;
  pointer-events: none;
}
.home-shot:hover { border-color: rgba(0, 200, 83, 0.45); }
.home-shot:hover .home-shot__cta { background: var(--green-2); }

.footer {
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 28px 24px 32px;
  color: var(--muted);
  font-size: 14px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-cta { display: flex; gap: 10px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 16px;
}
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
}
.footer-nav a:hover { color: #fff; }
.footer-nav a[aria-current="page"] { color: #fff; }
.copy { opacity: .7; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: #fff; }
.page-copy { max-width: 920px; }
.page-copy .promo-card { margin: 22px 0; }
.page-visual {
  margin: 8px 0 24px;
  max-width: 280px;
}
.page-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.page-visual--wide { max-width: 320px; }
.page-copy p, .page-copy li { color: var(--muted); }
.page-copy h2 { margin: 32px 0 12px; font-size: 22px; }
.page-copy h3 { margin: 22px 0 10px; font-size: 18px; }
.page-copy ol, .page-copy ul { padding-left: 18px; }
.page-copy li { margin: 8px 0; }
.page-copy .hero-cta { margin: 22px 0; }
.page-copy .mini-grid { margin: 18px 0 8px; }
.note {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #101827;
  color: var(--muted);
}
.note b { color: var(--text); }
.data-table {
  width: 100%;
  margin: 16px 0 8px;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th,
.data-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.data-table th { color: var(--text); font-weight: 700; }
.data-table td { color: var(--muted); }
.data-table tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; margin: 16px 0 8px; -webkit-overflow-scrolling: touch; }
.table-wrap .data-table { margin: 0; min-width: 560px; }
.table-note { margin: 8px 0 0; font-size: 14px; color: var(--muted); }
.apk-qr-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 0;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0c1422;
}
.apk-qr {
  flex: 0 0 auto;
  width: 168px;
  height: 168px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
}
.apk-qr svg { display: block; width: 100%; height: 100%; }
.apk-qr-wrap p { margin: 0; font-size: 14px; color: var(--muted); }
.is-android .apk-qr-wrap,
.is-ios .apk-qr-wrap { display: none; }
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}
.os-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #101827;
}
.os-card h3 { margin: 0 0 10px; }
.os-card p { margin: 0 0 14px; }
.os-card .btn { width: 100%; }
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}
.related a {
  text-decoration: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101827;
}
.related a:hover { border-color: rgba(2,133,240,.45); }
.related strong { display: block; margin-bottom: 6px; }
.related span { color: var(--muted); font-size: 14px; }

.error-page {
  max-width: 920px;
  padding: 20px 0 48px;
}
.error-page__code {
  margin: 0 0 6px;
  font-family: Unbounded, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(84px, 18vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  background: linear-gradient(180deg, #fff 12%, var(--blue-2) 62%, var(--green) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.error-page .lead { margin-bottom: 18px; }
.error-page .hero-cta { margin: 0 0 8px; }
.error-page .related {
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.error-page .note { width: 100%; max-width: none; }

@media (max-width: 980px) {
  .related,
  .error-page .related { grid-template-columns: 1fr; }
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7,11,18,.94);
  border-top: 1px solid var(--line);
}

[hidden] { display: none !important; }
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  background: rgba(4, 8, 14, 0.86);
  padding: 20px;
}
html.age-locked .age-gate { display: grid; }
.age-card {
  width: min(460px, 100%);
  padding: 28px;
  border-radius: 20px;
  background: #121a2b;
  border: 1px solid var(--line);
  text-align: center;
}
.age-kicker { margin: 0; font-family: Unbounded, sans-serif; font-size: 22px; color: #fff; }
.age-card h2 { margin: 12px 0; font-size: 24px; }
.age-card p { color: var(--muted); }
.age-actions { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .header.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 20px 20px;
    background: #0b1220;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  .nav-more-btn { display: none; }
  .nav-more-list,
  .nav-more.is-open .nav-more-list {
    display: flex;
    flex-direction: column;
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    gap: 14px;
  }
  .nav-more-list a { padding: 0; }
  .menu-btn { display: block; }
  .hero, .products, .sport-grid, .bonus-layout, .app-banner, .pay-facts, .split-2,
  .tiles, .stats, .promo-card__inner, .bonus-steps { grid-template-columns: 1fr; }
  .bonus-steps { grid-template-columns: 1fr 1fr; }
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
  .header-actions .btn-ghost:first-child { display: none; }
  .hero-banner { min-height: 0; padding: 28px 20px 24px; }
  .hero-banner__img { object-position: 80% center; }
  .hero-banner::before {
    background: linear-gradient(180deg, rgba(7, 11, 18, 0.82), rgba(7, 11, 18, 0.74) 55%, rgba(7, 11, 18, 0.55));
  }
  .app-banner__img { margin: 0 auto; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1.3fr; }
  html.is-android .mobile-bar { grid-template-columns: 1fr 1.3fr; }
  html.is-android .mobile-login { display: none; }
  html.is-android .mobile-apk { display: inline-flex; }
}

@media (max-width: 640px) {
  .header-inner { width: calc(100% - 28px); }
  main { padding: 16px 14px 0; }
  .products, .sport-grid, .tiles, .stats { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 32px; }
  .btn-xl { width: 100%; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .apk-qr-wrap { display: none; }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.win-chat {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: 18px;
  z-index: 40;
  width: 56px;
  font-family: "Golos Text", "Segoe UI", system-ui, sans-serif;
}
.win-chat.is-open {
  width: min(380px, calc(100vw - 24px));
  height: min(560px, calc(100dvh - 32px));
}
.win-chat__fab {
  position: relative;
  width: 56px;
  height: 56px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  color: #04150b;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  box-shadow: 0 10px 28px rgba(0, 200, 83, 0.38);
  cursor: pointer;
}
.win-chat__fab:hover { filter: brightness(1.06); }
.win-chat.is-open .win-chat__fab { display: none; }
.win-chat__badge {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
}
.win-chat__hint {
  position: absolute;
  right: 64px;
  bottom: 8px;
  width: max-content;
  max-width: 220px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 4px 14px;
  background: #121a2b;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.win-chat__panel {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0c121d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.win-chat__panel[hidden],
.win-chat__hint[hidden],
.win-chat__badge[hidden],
.win-chat__suggest[hidden] { display: none !important; }
.win-chat__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #101827;
}
.win-chat__logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #04150b;
  background: linear-gradient(180deg, #7dffb2, var(--green));
  font-size: 16px;
  flex-shrink: 0;
}
.win-chat__head b {
  display: block;
  font-size: 14px;
}
.win-chat__head span {
  color: var(--muted);
  font-size: 12px;
}
.win-chat__close {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.win-chat__close:hover { color: #fff; background: rgba(255,255,255,.06); }
.win-chat__log {
  flex: 1;
  overflow: auto;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.win-chat__msg {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
}
.win-chat__msg p { margin: 0 0 8px; }
.win-chat__msg p:last-child { margin-bottom: 0; }
.win-chat__msg--bot {
  align-self: flex-start;
  background: #161f30;
  border: 1px solid var(--line);
}
.win-chat__msg--user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
}
.win-chat__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.win-chat__cta {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  color: #04150b;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.win-chat__cta[href^="/"] {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.win-chat__suggest {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 0 12px 10px;
}
.win-chat__chip {
  flex: 0 0 auto;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #121a2b;
  color: var(--text);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.win-chat__chip:hover { border-color: rgba(2,133,240,.45); }
.win-chat__form {
  display: flex;
  gap: 8px;
  padding: 0 12px 8px;
}
.win-chat__form input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #101827;
  color: var(--text);
  font: inherit;
}
.win-chat__form input:focus {
  outline: 2px solid rgba(2, 133, 240, 0.45);
  outline-offset: 0;
}
.win-chat__send {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  cursor: pointer;
  font-size: 16px;
}
.win-chat__fine {
  margin: 0;
  padding: 0 14px 12px;
  color: var(--muted);
  font-size: 11px;
}
.win-chat__typing {
  display: flex;
  gap: 5px;
  align-items: center;
  min-height: 38px;
}
.win-chat__typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: chat-dot 1.1s infinite;
}
.win-chat__typing span:nth-child(2) { animation-delay: .15s; }
.win-chat__typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chat-dot {
  0%, 80%, 100% { opacity: .28; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 980px) {
  .win-chat {
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
  }
  .win-chat.is-open {
    height: min(560px, calc(100dvh - 170px));
  }
}
