
:root {
  --bg: #061a28;
  --panel: #0f2132;
  --panel-soft: #102434;
  --text: #f0f2f7;
  --muted: #b7bfd0;
  --accent: #27e6a1;
  --accent-strong: #26d194;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --cta: #f43131;
  --cta-2: #ff1c1c;
  --panel-deep: #0b1f2d;
  --panel-table: #0b2230;
  --grad-top-1: #0a2a3e;
  --grad-top-2: #081f30;
  --grad-side-1: #0a2233;
  --grad-side-2: #0b1a28;
  --grad-nav-1: #0d2236;
  --grad-nav-2: #0c1c2c;
  --faq-1: #0f2537;
  --faq-2: #0a1c2a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at 12% 12%, rgba(40, 120, 175, 0.25), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(25, 230, 175, 0.2), transparent 35%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.page-ksush,
body {
  min-height: 100vh;
}

.page-ksush {
  display: block;
}

.hero__eyebrow-ksush,
.sidebar__nav-ksush {
  text-transform: uppercase;
  font-weight: 600;
}

.sidebar__close-ksush,
.sidebar__link-ksush,
body {
  color: var(--text);
}

.sidebar-ksush {
  width: 280px;
  padding: 14px 24px;
  background: linear-gradient(180deg, var(--grad-side-1) 0%, var(--grad-side-2) 100%);
  border-right: 1px solid var(--line);
  position: fixed;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
  transform: translateX(-110%);
  transition: transform 0.25s ease;
}

.page--menu-open .sidebar-ksush {
  transform: translateX(0);
}

.sidebar__close-ksush {
  display: none;
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.sidebar__brand-ksush {
  display: flex;
  justify-content: center;
}

.sidebar__logo-ksush {
  width: 160px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.sidebar__actions-ksush {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar__nav-ksush {
  display: flex;
  flex-direction: column;
  gap: 14px;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.sidebar__link-ksush {
  text-decoration: none;
  font-size: 14px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 6px 8px;
  border-radius: 10px;
}

.sidebar__link-ksush:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-bar,
.navigation--collapsed .navigation__panel-ksush {
  display: none;
}

.content-wrapper-ksush {
  margin: 0 auto;
  padding: 24px 48px 40px;
  width: 100%;
  max-width: 1200px;
}

.mobile-bar {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px;
  background: #1c1818;
  border-radius: 10px;
  margin-bottom: 10px;
  top: 16px;
  z-index: 5;
}

.burger-ksush,
.hero-ksush {
  display: flex;
  flex-direction: column;
}

.burger-ksush {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  justify-content: center;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
}

.burger-ksush span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
}

.mobile-bar__logo {
  width: 120px;
  height: 56px;
  object-fit: contain;
}

.mobile-bar__actions {
  display: flex;
  gap: 10px;
}

.hero-ksush {
  gap: 10px;
}

.hero-ksush h1 {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 0.02em;
}

.hero__footer,
.hero__intro-ksush p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 720px;
}

.hero__headline-ksush,
.navigation__link-ksush:hover,
.site-footer__links-ksush button:hover {
  color: var(--accent);
}

.hero__card-ksush {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0b0d14;
  max-height: 500px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero__image-ksush {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  opacity: 0.7;
  margin: 10px 0;
}

.hero__image-reviews {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.7;
}

.hero__overlay-ksush {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background-color: rgba(2, 12, 20, 0.9);
  padding: 24px;
  min-height: 250px;
}

.hero__eyebrow-ksush {
  letter-spacing: 0.1em;
}

.hero__headline-ksush {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
}

.navigation-ksush .section-title-ksush {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.navigation-ksush .section-title-ksush::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.9;
}

h2 {
  color: #ffffff;
}

.navigation__toggle-ksush {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.navigation__icon-ksush {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #77d9ff 0%, #3e6be5 55%, #4b3fb3 100%);
  position: relative;
  box-shadow: 0 4px 12px rgba(68, 120, 220, 0.45);
}

.navigation__icon-ksush::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: #7b3f92;
  right: -6px;
  bottom: -2px;
  transform: rotate(40deg);
}

.navigation__panel-ksush {
  margin-top: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--grad-nav-1) 0%, var(--grad-nav-2) 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
}

.navigation__link-ksush {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.conclusion {
  margin: 20px 0;
}

.section-ksush p {
  margin: 10px 0;
  line-height: 1.6;
}

.section-title-ksush {
  position: relative;
  margin: 15px 0;
}

.faq-ksush::after,
.section-ksush h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.9;
}

.section-list {
  margin: 30px 0 25px 30px;
}

.section-list li {
  margin-bottom: 15px;
}

.faq-ksush {
  position: relative;
  margin: 20px 0;
}

.faq-item-ksush {
  background: linear-gradient(180deg, var(--faq-1) 0%, var(--faq-2) 100%);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 15px;
}

.faq-item-ksush h3,
.faq-item-ksush h4 {
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-ksush,
.contacts__submit,
.site-footer__links-ksush {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-ksush {
  font-family: inherit;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary-ksush {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 800;
}

.btn--ghost-ksush,
.site-footer__links-ksush button {
  color: var(--text);
  text-decoration: none;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 500;
}

.btn--ghost-ksush {
  background: transparent;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.overlay-ksush {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 20;
}

.page--menu-open .overlay-ksush {
  opacity: 1;
  pointer-events: all;
}

.topbar-ksush {
  position: sticky;
  top: 0;
  z-index: 25;
  background: linear-gradient(180deg, var(--grad-top-1) 0%, var(--grad-top-2) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__row-ksush {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
}

.topbar__logo-ksush {
  width: 160px;
  height: 56px;
  object-fit: contain;
}

.topbar__auth-ksush {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__lang-ksush {
  background: rgba(10, 42, 62, 0.8);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.topnav-ksush {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px 14px;
  background: rgba(6, 23, 34, 0.92);
  overflow-x: auto;
}

.topnav__link-ksush {
  background: transparent;
  color: #eaf2ff;
  border: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.topnav__link-ksush:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.badge-ksush {
  background: var(--cta);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.topbar__bonus-ksush {
  display: none;
}

.contacts__popup,
.game__overlay-ksush {
  opacity: 0;
  transition: opacity 0.2s;
}

.site-footer-ksush {
  padding: 28px 24px 20px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  margin: 40px auto 20px;
}

.site-footer__links-ksush {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  font-weight: 600;
}

.site-footer__divider-ksush {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.site-footer__text-ksush {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 auto 12px;
  max-width: 900px;
}

.site-footer__copy-ksush {
  color: var(--text);
  font-weight: 600;
}

.games__list-ksush {
  list-style: none;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.games__item-ksush {
  border-radius: 18px;
  width: 150px;
}

.game__banner-ksush,
.game__wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.game__img-ksush img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
}

.game__overlay-ksush {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 13, 20, 0.55);
  text-decoration: none;
}

.game__overlay-ksush::before {
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.game__overlay-ksush::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 14px solid var(--text);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: translateX(3px);
}

.game__banner-ksush:focus-within .game__overlay-ksush,
.game__banner-ksush:hover .game__overlay-ksush {
  opacity: 1;
}

.game__info-ksush {
  position: absolute;
  inset: auto 0 0;
  padding: 12px 10px;
  text-align: center;
  background: linear-gradient(180deg, rgba(12, 15, 22, 0) 0%, rgba(12, 15, 22, 0.8) 70%);
  color: var(--text);
}

.game__name-ksush span {
  display: block;
  font-weight: 700;
}

.game__provider-ksush span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.section-table-ksush {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
  color: var(--text);
  background: var(--panel-table);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  margin: 10px 0;
}

.section-table-ksush td,
.section-table-ksush th {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow-wrap: anywhere;
}

.section-table-ksush thead th {
  font-weight: 600;
  background: var(--panel-deep);
}

.section-table-ksush tbody tr:nth-child(odd) {
  background: var(--accent-strong);
  color: #001014;
  font-weight: 600;
}

.section-table-ksush tbody tr:nth-child(2n) {
  background: var(--panel-deep);
}

.contacts {
  max-width: 420px;
  margin: 50px auto 0;
  display: grid;
  gap: 18px;
}

.contacts__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
}

.contacts__form {
  display: grid;
  gap: 14px;
}

.contacts__label {
  font-weight: 600;
}

.contacts__input,
.contacts__textarea {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
  background: #dcd7d7;
  color: #0b0d14;
  font-family: inherit;
  font-size: 15px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.contacts__textarea {
  min-height: 140px;
  resize: vertical;
}

.contacts__submit {
  border: none;
  border-radius: 18px;
  padding: 12px 18px;
  font-weight: 700;
  background: var(--accent);
  color: #0b0d14;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.contacts__popup {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 40;
}

.contacts__popup-card {
  background: #1a1f2e;
  border-radius: 18px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.contacts__popup-close {
  margin-top: 14px;
  border: none;
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 600;
  background: var(--accent);
  color: #0b0d14;
  cursor: pointer;
}

.reviews-flex {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 25px auto;
  gap: 25px;
  justify-content: center;
}

button {
  cursor: pointer;
}

@media (max-width: 980px) {
  .sidebar__close-ksush {
    display: inline-flex;
  }

  .content-wrapper-ksush {
    margin-left: 0;
    padding: 16px 20px;
  }

  .topnav-ksush {
    display: none;
  }

  .topbar__auth-ksush .btn-ksush,
  .topbar__auth-ksush .topbar__lang-ksush {
    display: none;
  }

  .burger-ksush {
    display: flex;
  }

  .topbar__auth-ksush .topbar__bonus-ksush {
    display: inline-flex;
  }

  .navigation__panel-ksush {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero__card-ksush {
    min-height: 260px;
  }

  body {
    overflow-x: hidden;
  }

  .site-footer-ksush {
    padding: 24px 18px 10px;
  }

  .games__list-ksush {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .section-table-ksush {
    font-size: 14px;
  }

  .section-table-ksush td,
  .section-table-ksush th {
    padding: 5px;
    font-size: 9px;
  }

  .contacts {
    max-width: 100%;
    padding: 0 8px;
    margin: 0 auto;
  }

  .contacts__title {
    font-size: 26px;
  }

  .contacts__input,
  .contacts__textarea {
    border-radius: 14px;
    font-size: 14px;
  }

  .contacts__submit {
    width: 100%;
  }

  .contacts__popup-card {
    width: calc(100% - 32px);
    max-width: 320px;
  }
}


.section-ksush ul,
.section-ksush ol,
.faq-item-ksush ul {
  margin: 12px 0;
  padding-left: 24px;
}

.section-ksush ul li,
.section-ksush ol li,
.faq-item-ksush ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.section-ksush ul {
  list-style: disc;
}

.section-ksush ol {
  list-style: decimal;
}


.section-ksush .games__list-ksush{list-style:none;padding-left:0;margin:18px 0 0}
.section-ksush .games__list-ksush li{list-style:none;margin-bottom:0}
.games__list-ksush .game__img-ksush img{width:100%;height:230px;object-fit:cover;display:block}
.games__list-ksush .game__info-ksush{padding-bottom:12px}
.game__play-ksush{display:inline-block;margin-top:8px;padding:6px 18px;border-radius:999px;background:linear-gradient(135deg,var(--cta) 0%,var(--cta-2) 100%);color:#fff;font-weight:800;font-size:12px;letter-spacing:.05em;text-transform:uppercase;cursor:pointer}
