*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #1f1619;
}
body {
  font-family: "Inter", Arial, sans-serif;
  background: #1f1619;
  color: #e8dde4;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #aef51d;
  text-decoration: none;
}
a:hover {
  color: #c8ff40;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.dxK9p2 {
  display: block;
}
.fW3m8n {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.qR7t4x {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.header {
  background: #1f161a;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
}
.header__logo img {
  height: 44px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__nav a {
  color: #c8b8c0;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.header__nav a:hover {
  color: #aef51d;
  background: rgba(174, 245, 29, 0.06);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__online {
  font-size: 12px;
  color: #8a7a82;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.header__online::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aef51d;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  border-radius: 8px;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--sm {
  font-size: 12px;
  padding: 7px 14px;
}
.btn--md {
  font-size: 13px;
  padding: 9px 18px;
}
.btn--lg {
  font-size: 15px;
  padding: 12px 28px;
}
.btn--xl {
  font-size: 17px;
  padding: 14px 36px;
}
.btn--login {
  background: #27151a;
  color: #e8dde4;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn--login:hover {
  background: #3a1f28;
  color: #fff;
}
.btn--signup {
  background: #aef51d;
  color: #1f161a;
  box-shadow: 0 4px 14px rgba(174, 245, 29, 0.3);
}
.btn--signup:hover {
  background: #c8ff40;
  box-shadow: 0 6px 20px rgba(174, 245, 29, 0.45);
}
.btn--bonus {
  background: linear-gradient(135deg, #aef51d, #7dbf00);
  color: #1f161a;
  box-shadow: 0 4px 14px rgba(174, 245, 29, 0.25);
}
.btn--bonus:hover {
  background: linear-gradient(135deg, #c8ff40, #95d900);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #e8dde4;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(31, 22, 25, 0.95) 40%,
    rgba(31, 22, 25, 0.5)
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 64px 0;
}
.hero__badge {
  display: inline-block;
  background: rgba(174, 245, 29, 0.15);
  border: 1px solid rgba(174, 245, 29, 0.35);
  color: #aef51d;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero__title span {
  color: #aef51d;
}
.hero__desc {
  font-size: 16px;
  color: #c0adb5;
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero__note {
  font-size: 11px;
  color: #7a6a72;
  margin-top: 10px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.hero-slider__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slider__slide {
  min-width: 100%;
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.hero-slider__slide img.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider__slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(31, 22, 25, 0.95) 40%,
    rgba(31, 22, 25, 0.4)
  );
}
.hero-slider__slide .slide-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 580px;
}
.hero-slider__prev,
.hero-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(31, 22, 25, 0.7);
  border: 1px solid rgba(174, 245, 29, 0.25);
  color: #aef51d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}
.hero-slider__prev {
  left: 12px;
}
.hero-slider__next {
  right: 12px;
}
.hero-slider__prev:hover,
.hero-slider__next:hover {
  background: rgba(174, 245, 29, 0.15);
}
.hero-slider__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-slider__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s;
}
.hero-slider__dots span.active {
  background: #aef51d;
}

.section {
  padding: 56px 0;
}
.section--dark {
  background: #1a1118;
}
.section--card {
  background: #221820;
}
.section__title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-wrap: balance;
}
.section__sub {
  font-size: 14px;
  color: #8a7a82;
  margin-bottom: 32px;
}

.jackpot-block {
  background: linear-gradient(135deg, #2a1a20, #1a1018);
  border: 1px solid rgba(174, 245, 29, 0.18);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jackpot-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(174, 245, 29, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.jackpot-block__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aef51d;
  margin-bottom: 8px;
}
.jackpot-block__amount {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.jackpot-block__amount span {
  color: #aef51d;
}
.jackpot-block__currency {
  font-size: 22px;
  font-weight: 700;
  color: #aef51d;
  vertical-align: super;
  margin-right: 4px;
}
.jackpot-block__note {
  font-size: 12px;
  color: #7a6a72;
  margin-top: 10px;
}
.jackpot-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.jackpot-grid .jackpot-block {
  flex: 1;
  min-width: 220px;
}

.winners {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
}
.winners__head {
  display: grid;
  grid-template-columns: 40px 1fr 1fr;
  padding: 12px 20px;
  background: #27151a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a6a72;
}
.winners__row {
  display: grid;
  grid-template-columns: 40px 1fr 1fr;
  padding: 11px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  align-items: center;
  transition: background 0.15s;
}
.winners__row:hover {
  background: rgba(174, 245, 29, 0.04);
}
.winners__rank {
  font-size: 13px;
  font-weight: 700;
  color: #7a6a72;
}
.winners__rank.top3 {
  color: #aef51d;
}
.winners__nick {
  font-size: 13px;
  color: #d4c8cc;
}
.winners__sum {
  font-size: 13px;
  font-weight: 700;
  color: #aef51d;
  text-align: right;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.game-card {
  background: #27151a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}
.game-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.game-card__body {
  padding: 14px;
}
.game-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.game-card__btn {
  width: 100%;
}

.mobile-slider {
  position: relative;
}
.mobile-slider__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.mobile-slider__track::-webkit-scrollbar {
  display: none;
}
.mobile-slider__track > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.wheel-section {
  background: linear-gradient(135deg, #1a1018, #251520);
  border: 1px solid rgba(174, 245, 29, 0.12);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.wheel-canvas-wrap {
  position: relative;
  display: inline-block;
}
#wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(174, 245, 29, 0.2);
}
.wheel-ptr {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #aef51d;
  filter: drop-shadow(0 2px 4px rgba(174, 245, 29, 0.5));
}
.wheel-result {
  font-size: 18px;
  font-weight: 700;
  color: #aef51d;
  min-height: 28px;
}
.wheel-result.win {
  animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-block {
  background: #221820;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px;
}
.content-block h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 24px 0 10px;
}
.content-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e8dde4;
  margin: 20px 0 8px;
}
.content-block p {
  font-size: 15px;
  line-height: 1.75;
  color: #c0adb5;
  margin-bottom: 14px;
}
.content-block ul,
.content-block ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.content-block li {
  font-size: 15px;
  line-height: 1.7;
  color: #c0adb5;
  margin-bottom: 6px;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.content-block table th {
  background: #27151a;
  color: #aef51d;
  padding: 10px 14px;
  font-size: 13px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.content-block table td {
  padding: 10px 14px;
  font-size: 13px;
  color: #c0adb5;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}
.content-block table tr:hover td {
  background: rgba(174, 245, 29, 0.03);
}
.content-block a {
  color: #aef51d;
}

.author-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #221820;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px;
}
.author-block__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(174, 245, 29, 0.3);
}
.author-block__name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.author-block__role {
  font-size: 12px;
  color: #aef51d;
  font-weight: 600;
  margin-bottom: 8px;
}
.author-block__bio {
  font-size: 13px;
  color: #a09098;
  line-height: 1.65;
}
.author-block__links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.author-block__links a {
  font-size: 12px;
  color: #aef51d;
  border: 1px solid rgba(174, 245, 29, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}
.author-block__links a:hover {
  background: rgba(174, 245, 29, 0.1);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bonus-card {
  background: #27151a;
  border: 1px solid rgba(174, 245, 29, 0.12);
  border-radius: 14px;
  padding: 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.bonus-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.bonus-card__title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.bonus-card__desc {
  font-size: 13px;
  color: #a09098;
  line-height: 1.6;
  margin-bottom: 14px;
}
.bonus-card__value {
  font-size: 20px;
  font-weight: 900;
  color: #aef51d;
  margin-bottom: 14px;
}
.bonus-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(174, 245, 29, 0.12);
  color: #aef51d;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.promo-accent {
  background: linear-gradient(135deg, #2a1a20, #1d1015);
  border: 1px solid #aef51d;
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% -20%,
    rgba(174, 245, 29, 0.1),
    transparent 60%
  );
  pointer-events: none;
}
.promo-accent__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a7a82;
  margin-bottom: 8px;
}
.promo-accent__code {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #1f161a;
  border: 2px dashed rgba(174, 245, 29, 0.4);
  border-radius: 10px;
  padding: 14px 24px;
  margin: 12px 0 20px;
  cursor: pointer;
}
.promo-accent__code span {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #aef51d;
}
.promo-accent__copy {
  font-size: 12px;
  color: #7a6a72;
  padding: 6px 14px;
  background: #27151a;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s;
}
.promo-accent__copy:hover {
  background: #3a1f28;
}
.promo-accent__copy.copied {
  color: #aef51d;
  border-color: rgba(174, 245, 29, 0.3);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.compare-table th {
  background: #27151a;
  color: #aef51d;
  padding: 12px 16px;
  font-size: 13px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.compare-table td {
  padding: 11px 16px;
  font-size: 13px;
  color: #c0adb5;
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}
.compare-table tr:hover td {
  background: rgba(174, 245, 29, 0.03);
}
.compare-table .check {
  color: #aef51d;
  font-weight: 700;
}
.compare-table .cross {
  color: #ff4f6a;
}
.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table td {
  padding: 11px 16px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: top;
  line-height: 1.6;
}
.info-table tr td:first-child {
  color: #8a7a82;
  font-weight: 600;
  width: 200px;
  white-space: nowrap;
  background: #1e1419;
}
.info-table tr td:last-child {
  color: #c0adb5;
}
.info-table tr:hover td {
  background: rgba(174, 245, 29, 0.02);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: #221820;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  gap: 12px;
  user-select: none;
}
.faq__question::after {
  content: "+";
  font-size: 20px;
  color: #aef51d;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq__item.open .faq__question::after {
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq__item.open .faq__answer {
  max-height: 600px;
}
.faq__answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #a09098;
  line-height: 1.7;
}

.app-specs {
  background: #221820;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 28px;
}
.app-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.app-specs__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.app-specs__key {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #7a6a72;
  font-weight: 600;
}
.app-specs__val {
  font-size: 14px;
  color: #e8dde4;
  font-weight: 600;
}

.slots-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.slots-cat {
  background: #27151a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.slots-cat:hover,
.slots-cat.active {
  border-color: #aef51d;
  background: rgba(174, 245, 29, 0.07);
}
.slots-cat__icon {
  font-size: 26px;
  margin-bottom: 8px;
}
.slots-cat__name {
  font-size: 13px;
  font-weight: 600;
  color: #c0adb5;
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
}
.rtp-table th {
  background: #27151a;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a7a82;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.rtp-table td {
  padding: 11px 14px;
  font-size: 13px;
  color: #c0adb5;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}
.rtp-table .rtp-val {
  color: #aef51d;
  font-weight: 700;
}
.rtp-table tr:hover td {
  background: rgba(174, 245, 29, 0.03);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.perk-card {
  background: #221820;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 22px;
  transition: border-color 0.2s;
}
.perk-card:hover {
  border-color: rgba(174, 245, 29, 0.3);
}
.perk-card__icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.perk-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.perk-card__desc {
  font-size: 13px;
  color: #a09098;
  line-height: 1.6;
}

.screenshots-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.screenshots-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.screenshots-slider__slide {
  min-width: 100%;
  border-radius: 14px;
  overflow: hidden;
}
.screenshots-slider__slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.screenshots-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.screenshots-nav span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.screenshots-nav span.active {
  background: #aef51d;
}

.bypass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bypass-card {
  background: #221820;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px;
}
.bypass-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #aef51d;
  margin-bottom: 8px;
}
.bypass-card__desc {
  font-size: 13px;
  color: #a09098;
  line-height: 1.6;
}
.bypass-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bypass-card__badge.good {
  background: rgba(174, 245, 29, 0.15);
  color: #aef51d;
}
.bypass-card__badge.ok {
  background: rgba(255, 165, 0, 0.12);
  color: #ffa500;
}

.footer {
  background: #1f161a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 44px 0 24px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer__brand {
  flex: 1;
  min-width: 220px;
}
.footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.footer__desc {
  font-size: 13px;
  color: #7a6a72;
  line-height: 1.7;
  max-width: 280px;
}
.footer__col {
  flex: 1;
  min-width: 140px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5a4a52;
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 13px;
  color: #8a7a82;
  margin-bottom: 8px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer__col a:hover {
  color: #aef51d;
}
.footer__payments {
  margin-bottom: 28px;
}
.footer__payments-title,
.footer__providers-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5a4a52;
  margin-bottom: 12px;
}
.footer__payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer__payment-logo {
  background: #27151a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #c0adb5;
}
.footer__provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer__provider-logo {
  background: #221820;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 600;
  color: #8a7a82;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__copy {
  font-size: 12px;
  color: #5a4a52;
  line-height: 1.6;
  max-width: 680px;
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal-links a {
  font-size: 12px;
  color: #5a4a52;
  transition: color 0.2s;
}
.footer__legal-links a:hover {
  color: #aef51d;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: linear-gradient(90deg, #1f161a, #2a1a20);
  border-top: 2px solid #aef51d;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
}
.sticky-widget__text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.sticky-widget__text span {
  color: #aef51d;
}
.sticky-widget__close {
  background: none;
  border: none;
  color: #7a6a72;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}
.sticky-widget__close:hover {
  color: #fff;
}

.breadcrumbs {
  padding: 14px 0 6px;
  font-size: 13px;
  color: #7a6a72;
}
.breadcrumbs a {
  color: #7a6a72;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #aef51d;
}
.breadcrumbs span {
  color: #5a4a52;
  margin: 0 6px;
}

.video-wrap {
  position: relative;
  border-radius: 14px;
  background: #000;
  aspect-ratio: 16/9;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.adx-gap {
  margin-bottom: 36px;
}

.wp-content-img {
  display: none;
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bonus-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-cats {
    grid-template-columns: repeat(2, 1fr);
  }
  .bypass-grid {
    grid-template-columns: 1fr 1fr;
  }
  .app-specs__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #1f161a;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }
  .header__nav.open {
    display: flex;
  }
  .header__nav a {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
  }
  .burger {
    display: flex;
  }
  .header__inner {
    flex-wrap: nowrap;
    position: relative;
  }
  .hero__content {
    padding: 44px 0;
  }
  .games-grid {
    grid-template-columns: 1fr;
    display: block;
  }
  .games-grid .mobile-slider__track {
    display: flex;
  }
  .games-grid .game-card {
    width: 240px;
  }
  .bonus-cards {
    grid-template-columns: 1fr;
    display: block;
  }
  .bonus-cards .mobile-slider__track {
    display: flex;
  }
  .bonus-cards .bonus-card {
    width: 280px;
  }
  .perks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .slots-cats {
    grid-template-columns: repeat(2, 1fr);
  }
  .bypass-grid {
    grid-template-columns: 1fr;
  }
  .author-block {
    flex-direction: column;
  }
  .footer__top {
    gap: 24px;
  }
  .jackpot-grid {
    flex-direction: column;
  }
  .sticky-widget {
    padding: 10px 14px;
  }
  .sticky-widget__text {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }
  .header__actions .btn--login {
    display: none;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.d4Kp9x {
  color: transparent;
  font-size: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}
.n7Bq3m {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.technical-page {
  max-width: 860px;
  margin: 0 auto;
}
.technical-page__title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  text-wrap: balance;
}
.technical-page .content-block h2 {
  font-size: 20px;
  margin-top: 28px;
}
.technical-page .content-block h3 {
  font-size: 16px;
  margin-top: 20px;
}
.technical-page .content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.technical-page .content-block table th {
  background: #27151a;
  color: #aef51d;
  padding: 10px 14px;
  font-size: 13px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.technical-page .content-block table td {
  padding: 10px 14px;
  font-size: 13px;
  color: #c0adb5;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 769px) {
  .hero,
  .hero-slider {
    width: 100%;
    max-width: none;
  }

  .hero-slider {
    display: block;
    min-height: 440px;
  }

  .hero-slider__track {
    display: flex;
    width: 100%;
    min-width: 100%;
    height: 100%;
    align-items: stretch;
  }

  .hero-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-slider__slide > .container,
  .hero > .container {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slider__slide img.slide-bg,
  .hero__bg {
    width: 100%;
    max-width: none;
  }

  .mobile-slider {
    overflow: visible;
  }

  .mobile-slider__track.games-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px !important;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    transform: none !important;
  }

  .mobile-slider__track.games-grid > .game-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: none !important;
  }

  .mobile-slider__track.games-grid .game-card__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}
