:root {
  --bg-page: #0a0e17;
  --bg-panel: #12182a;
  --bg-elevated: #1a2238;
  --bg-sidebar: #0e1424;
  --accent: #f0b429;
  --accent-soft: #fde7a4;
  --accent-muted: #c8941a;
  --text: #e6eaf2;
  --text-muted: #8b95ae;
  --border: rgba(240, 180, 41, 0.12);
  --border-strong: rgba(240, 180, 41, 0.22);
  --radius: 12px;
  --sidebar-w: 280px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --topbar-h: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

body.sidebar-open {
  overflow: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.ref-link {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

a:hover .ref-link {
  text-decoration: underline;
}

a.btn,
a.btn:hover,
a.game-card,
a.game-card:hover {
  text-decoration: none;
}

a.btn:hover .ref-link,
a.game-card:hover .ref-link {
  text-decoration: none;
}

.btn-primary .ref-link--btn,
.btn-primary .ref-link {
  color: #141109;
}

.btn-ghost .ref-link {
  color: var(--accent);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.promo-banner__link {
  position: relative;
  display: block;
}

.promo-banner__link-text {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

.seo-article .ref-link,
.faq .ref-link,
.footer-disclaimer .ref-link {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ——— App shell: лівий сайдбар + основна колонка ——— */

.app-shell {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--sidebar-w);
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-sidebar) 0%, #0a101c 100%);
  border-right: 1px solid var(--border);
  padding: 20px 16px 24px;
  overflow-y: auto;
  transition: transform 0.28s ease;
}

.sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.sidebar__logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.sidebar__close {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sidebar__link {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sidebar__link:hover {
  color: var(--accent-soft);
  background: rgba(240, 180, 41, 0.06);
  border-color: var(--border);
  text-decoration: none;
}

.sidebar__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.sidebar__stat {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: center;
}

.sidebar__stat-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sidebar__stat-value {
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.sidebar__badge {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-muted);
  padding: 10px;
  border-radius: 8px;
  border: 1px dashed var(--border-strong);
  background: rgba(240, 180, 41, 0.04);
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(5, 8, 16, 0.65);
  backdrop-filter: blur(4px);
}

.sidebar-backdrop:not([hidden]) {
  display: block;
}

.main-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin-left: var(--sidebar-w);
}

.topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--topbar-h);
  align-items: center;
  gap: 12px;
  padding: 0 14px 0 10px;
  background: rgba(10, 14, 23, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.topbar__menu {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.topbar__menu-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  box-shadow: 0 -6px 0 var(--accent), 0 6px 0 var(--accent);
}

.topbar__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.topbar__brand img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.topbar__spacer {
  flex: 1;
}

.page-main {
  flex: 1;
}

.content-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (max-width: 1023px) {
  .sidebar {
    transform: translateX(-100%);
    box-shadow: none;
  }

  .sidebar.is-open {
    transform: translateX(0);
    box-shadow: 16px 0 48px rgba(0, 0, 0, 0.55);
  }

  .sidebar__close {
    display: flex;
  }

  .main-wrap {
    margin-left: 0;
  }

  .topbar {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(240, 180, 41, 0.4);
  color: var(--accent-soft);
}

.btn-primary {
  background: linear-gradient(135deg, #fde7a4 0%, #f0b429 48%, #b88912 100%);
  color: #0a0e17;
  box-shadow: 0 4px 20px rgba(240, 180, 41, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(240, 180, 41, 0.32);
}

.hero {
  padding: 24px 20px 40px;
  text-align: left;
}

.hero--split {
  padding-bottom: 32px;
}

.hero-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(20px, 3vw, 36px);
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-panel) 0%, rgba(10, 14, 23, 0.92) 55%, var(--bg-page) 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-muted);
}

.hero-split__copy h1,
.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero .tagline {
  color: rgba(230, 234, 242, 0.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 46ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.hero .btn {
  padding: 13px 28px;
  font-size: clamp(0.96rem, 1.9vw, 1.06rem);
  border-radius: 12px;
  min-height: 48px;
}

.hero-split__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  aspect-ratio: 4 / 3;
  max-height: 380px;
}

.hero-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 480px) {
  .hero .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Trust strip */
.trust-strip {
  padding-top: 8px;
  padding-bottom: 36px;
}

.trust-strip__title {
  text-align: center;
  margin-bottom: 8px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.trust-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-card__pic img {
  width: 100px;
  height: auto;
  margin: 0 auto;
  opacity: 0.95;
}

.trust-card__h {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.trust-card__p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Spotlight full-bleed */
.spotlight {
  position: relative;
  margin: 8px 0 0;
  min-height: min(340px, 70vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.spotlight__bg {
  position: absolute;
  inset: 0;
  background: url("../img-gen/Казино.png") center / cover no-repeat;
  z-index: 0;
}

.spotlight__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 14, 23, 0.92) 0%, rgba(10, 14, 23, 0.55) 45%, rgba(10, 14, 23, 0.35) 100%);
}

.spotlight__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.spotlight__eyebrow {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.spotlight__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  max-width: 20ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.spotlight__text {
  margin: 0 0 22px;
  max-width: 52ch;
  color: rgba(230, 234, 242, 0.9);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
}

.feature-row--media {
  margin-top: 8px;
}

.feature-visual--cover {
  aspect-ratio: 16 / 10;
  padding: 0;
  min-height: 0;
}

.feature-visual--cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.feature-box--photo .feature-visual {
  position: relative;
}

.feature-visual--cover .badge {
  z-index: 2;
}

.games-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px 16px;
}

/* Заголовок над сіткою; Telegram у колонці вирівнюється з картками кроків */
.steps-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 36px;
  padding-bottom: 40px;
}

.steps-block__heading {
  margin: 0;
}

.steps-block__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 200px);
  gap: 24px 32px;
  align-items: start;
}

.steps-block__main {
  min-width: 0;
}

.steps-block__main .steps-list {
  margin-top: 0;
}

@media (max-width: 768px) {
  .steps-block__row {
    grid-template-columns: 1fr;
  }

  .steps-aside {
    order: -1;
    justify-self: center;
    text-align: center;
    max-width: 280px;
  }
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.steps-list__item {
  display: flex;
  gap: 14px;
  align-items: stretch;
  padding: 16px 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.steps-list__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid var(--border-strong);
  color: var(--accent-soft);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  align-self: center;
}

.steps-list__body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.steps-list__h {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.steps-list__p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.steps-aside {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(18, 24, 42, 0.6);
  border: 1px solid var(--border);
}

.steps-aside__figure {
  overflow: hidden;
  border-radius: 10px;
  margin: 0 auto 12px;
  max-width: 180px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
}

.steps-aside__img {
  width: 100%;
  height: 100%;
  max-width: 180px;
  object-fit: contain;
  margin: 0;
  opacity: 0.95;
  display: block;
}

.steps-aside__cap {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Providers */
.providers-strip {
  padding: 36px 20px 44px;
  background: linear-gradient(180deg, rgba(18, 24, 42, 0.5) 0%, var(--bg-page) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.providers-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.providers-strip__title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.providers-strip__sub {
  margin: 0 auto 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 48ch;
}

.providers-strip__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 36px;
  opacity: 0.88;
}

.providers-strip__logos img {
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(0.15);
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 20px;
}

.section-wide {
  max-width: 1200px;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.section-sub {
  color: var(--text-muted);
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
}

.feature-box {
  background: var(--bg-panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-visual {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #1e2844 0%, #0a0e17 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-visual .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(240, 180, 41, 0.15);
  color: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.feature-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-body h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.feature-body p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px 18px;
}

.game-card {
  background: transparent;
  border-radius: 12px;
  border: 1px solid rgba(240, 180, 41, 0.1);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

a.game-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.game-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.game-card:hover {
  border-color: rgba(240, 180, 41, 0.24);
}

.game-thumb {
  aspect-ratio: 16 / 10;
  background: #0d121f;
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 10px 10px 0 0;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.game-card:hover .game-thumb img {
  transform: scale(1.02);
}

.promo-banner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 32px;
}

.promo-banner__link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.promo-banner__link:hover {
  border-color: rgba(240, 180, 41, 0.32);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.promo-banner__link img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.cta-strip {
  padding-top: 4px;
  padding-bottom: 36px;
}

.cta-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
  gap: 26px 36px;
  align-items: stretch;
}

.cta-strip__media {
  min-width: 0;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 0;
  height: 100%;
}

.cta-strip .cta-carousel {
  border-radius: 12px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.cta-strip .cta-carousel__viewport {
  flex: 1 1 auto;
  width: 100%;
  min-height: 220px;
  max-height: none;
  aspect-ratio: unset;
  align-self: stretch;
}

.cta-strip .cta-carousel__prev,
.cta-strip .cta-carousel__next {
  width: 34px;
  height: 34px;
  font-size: 1.15rem;
}

.cta-strip .cta-carousel__prev {
  left: 6px;
}

.cta-strip .cta-carousel__next {
  right: 6px;
}

@media (max-width: 900px) {
  .cta-strip__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
  }

  .cta-strip__media {
    max-width: none;
    justify-self: stretch;
  }

  .cta-strip .cta-carousel__viewport {
    min-height: min(200px, 42vw);
    aspect-ratio: unset;
  }
}

.cta-strip__eyebrow {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cta-strip__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.cta-strip__text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  color: var(--accent-soft);
}

.cta-strip__copy {
  margin: 0 0 18px;
}

.cta-strip__copy p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: clamp(0.96rem, 1.5vw, 1.06rem);
  line-height: 1.6;
  max-width: 58ch;
}

.cta-strip__copy p:last-child {
  margin-bottom: 0;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.cta-strip__actions .btn {
  padding: 11px 20px;
  font-size: 0.94rem;
  border-radius: 10px;
}

.cta-carousel {
  --carousel-slides: 3;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-page);
  overflow: hidden;
}

.cta-carousel__viewport {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(320px, 56vw);
  padding: 0;
  line-height: 0;
  position: relative;
  isolation: isolate;
  background: var(--bg-page);
}

@media (max-width: 900px) {
  .cta-carousel__viewport {
    max-height: min(220px, 52vw);
  }
}

.cta-carousel__track {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(100% * var(--carousel-slides, 3));
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: transform 0.45s ease;
  z-index: 0;
}

.cta-carousel__slide {
  margin: 0;
  padding: 0;
  border: 0;
  flex: 0 0 calc(100% / var(--carousel-slides, 3));
  width: calc(100% / var(--carousel-slides, 3));
  min-width: calc(100% / var(--carousel-slides, 3));
  height: 100%;
  position: relative;
  overflow: hidden;
}

.cta-carousel__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-carousel__prev,
.cta-carousel__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(10, 14, 23, 0.78);
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s, color 0.2s;
}

.cta-carousel__prev:hover,
.cta-carousel__next:hover {
  background: rgba(26, 34, 56, 0.95);
  color: var(--accent-soft);
}

.cta-carousel__prev {
  left: 10px;
}

.cta-carousel__next {
  right: 10px;
}

.cta-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px 12px 14px;
  margin: 0;
  background: linear-gradient(to top, rgba(10, 14, 23, 0.55), transparent);
  pointer-events: none;
}

.cta-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--text-muted);
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: auto;
  flex-shrink: 0;
}

.cta-carousel__dot[aria-current="true"] {
  opacity: 1;
  background: var(--accent);
  transform: scale(1.15);
}

.game-info {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.game-title {
  font-weight: 500;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.35;
  color: rgba(230, 234, 242, 0.88);
  letter-spacing: 0.01em;
}

.game-provider {
  display: none;
}

.game-card .btn {
  width: 100%;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(240, 180, 41, 0.32);
  color: var(--accent);
  box-shadow: none;
}

.game-card:hover .btn,
.game-card .btn:hover {
  background: rgba(240, 180, 41, 0.06);
  border-color: rgba(240, 180, 41, 0.48);
  box-shadow: none;
}

.game-card .btn:active {
  transform: none;
}

.game-card .btn-primary .ref-link {
  color: var(--accent);
  font-weight: 600;
}

.seo-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 20px 44px;
}

.seo-article h2 {
  font-size: 1.22rem;
  margin: 32px 0 12px;
  color: var(--accent-soft);
}

.seo-article h2:first-child {
  margin-top: 0;
}

.seo-article p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin: 0 0 14px;
}

.pay-table-wrap {
  overflow-x: auto;
  margin: 16px 0 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pay-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.pay-table th,
.pay-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pay-table th {
  background: var(--bg-elevated);
  color: var(--accent-soft);
  font-weight: 600;
}

.pay-table tr:last-child td {
  border-bottom: none;
}

.pay-table td {
  color: var(--text-muted);
}

.pay-table td:first-child {
  color: var(--text);
  font-weight: 500;
}

.article-block {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 26px 28px;
  margin-top: 22px;
}

.article-block h2 {
  margin-top: 0;
  font-size: 1.15rem;
  color: var(--accent-soft);
}

.article-block p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.faq {
  margin-top: 4px;
  padding-bottom: 32px;
}

.faq__title {
  margin: 0 0 22px;
  font-size: clamp(1.15rem, 2.2vw, 1.32rem);
  font-weight: 700;
  color: var(--accent);
  text-align: left;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq__item {
  margin: 0;
  padding: 0;
  background: var(--bg-panel);
  border: 1px solid rgba(240, 180, 41, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq__item:hover {
  border-color: rgba(240, 180, 41, 0.22);
}

.faq__item[open] {
  border-color: rgba(240, 180, 41, 0.22);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 18px;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: 0.01em;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::before {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 0;
  margin: 0;
  align-self: center;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent rgba(230, 234, 242, 0.92);
  transition: transform 0.2s ease;
}

.faq__item[open] summary::before {
  transform: rotate(90deg);
}

.faq__item p {
  margin: 0;
  padding: 0 18px 16px calc(18px + 8px + 12px);
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.58;
  border-top: 1px solid rgba(240, 180, 41, 0.08);
  padding-top: 12px;
}

.faq__item[open] summary {
  padding-bottom: 10px;
}

.site-footer {
  margin-top: 16px;
  padding: 28px 20px 36px;
  border-top: 1px solid var(--border);
  background: #060910;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 18px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 14px;
  line-height: 1.6;
}

.age-badge {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.footer-logo {
  margin: 0 auto 10px;
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.05rem;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
