@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #180b29;
  --c-header: #200f39;
  --c-btn-login: #2b154e;
  --c-btn-reg: #6b34cc;
  --c-text: #e8e0f0;
  --c-text-muted: #a08ec0;
  --c-accent: #9b59e8;
  --c-gold: #f0c040;
  --c-green: #2ecc71;
  --c-red: #e74c3c;
  --c-border: #3a2260;
  --c-card: #231448;
  --c-card2: #1e0f3a;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(107, 52, 204, 0.18);
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, sans-serif;
  color: #fff;
  line-height: 1.3;
}
a {
  color: var(--c-accent);
  text-decoration: none;
}
a:hover {
  color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.header-logo img {
  height: 48px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--c-text);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  background: var(--c-btn-login);
  color: #fff;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-online {
  font-size: 11px;
  color: var(--c-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-online span.dot {
  width: 7px;
  height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.btn-login {
  background: var(--c-btn-login);
  color: #fff;
}
.btn-login:hover {
  background: #3a1e6a;
  color: #fff;
}
.btn-reg {
  background: var(--c-btn-reg);
  color: #fff;
}
.btn-reg:hover {
  background: #8040e0;
  color: #fff;
}
.btn-bonus {
  background: linear-gradient(135deg, #6b34cc, #9b59e8);
  color: #fff;
}
.btn-bonus:hover {
  background: linear-gradient(135deg, #8040e0, #b070ff);
  color: #fff;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}
.btn-gold {
  background: linear-gradient(135deg, #e0a800, #f0c040);
  color: #1a0a30;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #f0c040, #ffe680);
  color: #1a0a30;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  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;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #200f39 0%, #180b29 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.hero-title {
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(107, 52, 204, 0.5);
}
.hero-desc {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--c-text-muted);
  margin-bottom: 28px;
  max-width: 580px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.hero-slider .slide {
  display: none;
  position: relative;
  min-height: 380px;
  align-items: center;
  background: linear-gradient(135deg, #200f39, #180b29);
}
.hero-slider .slide.active {
  display: flex;
}
.hero-slider .slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero-slider .slide-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(43, 21, 78, 0.7);
  border: 1px solid var(--c-border);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}
.slider-prev {
  left: 12px;
}
.slider-next {
  right: 12px;
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--c-btn-reg);
}
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dots span.active {
  background: var(--c-btn-reg);
}

.breadcrumbs {
  padding: 10px 0;
  font-size: 13px;
  color: var(--c-text-muted);
}
.breadcrumbs a {
  color: var(--c-text-muted);
}
.breadcrumbs a:hover {
  color: var(--c-accent);
}
.breadcrumbs span {
  color: var(--c-accent);
}

.section {
  padding: 50px 0;
}
.section-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 28px;
  color: #fff;
}
.section-title span {
  color: var(--c-accent);
}

.box {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--c-border);
  margin-bottom: 28px;
}
.box2 {
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--c-border);
}

.pros-cons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pros-cons-col {
  flex: 1;
  min-width: 260px;
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--c-border);
}
.pros-cons-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.pros-col h3 {
  color: var(--c-green);
}
.cons-col h3 {
  color: var(--c-red);
}
.pros-cons-list {
  list-style: none;
}
.pros-cons-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pros-cons-list li:last-child {
  border-bottom: none;
}
.pros-cons-list li::before {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px;
}
.pros-col li::before {
  content: "✓";
  color: var(--c-green);
}
.cons-col li::before {
  content: "✗";
  color: var(--c-red);
}

.jackpots-block {
  background: linear-gradient(135deg, #2b154e, #3a1e6a);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--c-btn-reg);
  text-align: center;
}
.jackpot-amount {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--c-gold);
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
  animation: jackpot-tick 0.1s ease;
}
@keyframes jackpot-tick {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}
.jackpot-label {
  color: var(--c-text-muted);
  font-size: 14px;
  margin-top: 4px;
}

.mirrors-block {
}
.mirror-datetime {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
thead tr {
  background: var(--c-btn-login);
}
th {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
td {
  padding: 11px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:hover {
  background: rgba(107, 52, 204, 0.1);
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.badge-green {
  background: rgba(46, 204, 113, 0.15);
  color: var(--c-green);
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.badge-red {
  background: rgba(231, 76, 60, 0.15);
  color: var(--c-red);
  border: 1px solid rgba(231, 76, 60, 0.3);
}
.badge-yellow {
  background: rgba(240, 192, 64, 0.15);
  color: var(--c-gold);
  border: 1px solid rgba(240, 192, 64, 0.3);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.game-card {
  background: var(--c-card2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #2b154e;
}
.game-card-body {
  padding: 14px;
}
.game-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.game-card-btn {
  width: 100%;
}

.games-swiper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.games-swiper::-webkit-scrollbar {
  height: 4px;
}
.games-swiper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.games-swiper::-webkit-scrollbar-thumb {
  background: var(--c-btn-reg);
  border-radius: 2px;
}
.games-swiper .game-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

.slot-machine {
  background: linear-gradient(135deg, #2b154e, #200f39);
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid var(--c-btn-reg);
  text-align: center;
}
.slot-machine h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--c-gold);
}
.reels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.reel {
  width: 72px;
  height: 80px;
  background: var(--c-card2);
  border-radius: var(--radius-sm);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
  position: relative;
}
.reel.spin {
  animation: reelSpin 0.6s linear;
}
@keyframes reelSpin {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
.slot-result {
  margin-top: 14px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  display: none;
}
.slot-result.win {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid var(--c-green);
  color: var(--c-green);
}
.slot-result.lose {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid var(--c-red);
  color: var(--c-red);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.review-card {
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--c-border);
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-btn-reg);
}
.review-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.review-stars {
  color: var(--c-gold);
  font-size: 16px;
  margin-top: 2px;
}
.review-text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.review-form {
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--c-border);
  max-width: 560px;
}
.review-form h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-btn-reg);
}
.form-field textarea {
  min-height: 100px;
}
.form-success {
  display: none;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid var(--c-green);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--c-green);
  font-size: 14px;
  margin-top: 12px;
}

.author-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-btn-reg);
  flex-shrink: 0;
}
.author-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.author-info .author-role {
  font-size: 13px;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.author-info p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-socials {
  display: flex;
  gap: 8px;
}
.author-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--c-btn-login);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}
.author-socials a:hover {
  background: var(--c-btn-reg);
  color: #fff;
}

.bonuses-slider-wrap {
  position: relative;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bonus-card {
  background: linear-gradient(135deg, #231448, #2b154e);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--c-border);
  text-align: center;
  transition: transform 0.2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
}
.bonus-card-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.bonus-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.bonus-card-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.bonus-card-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.bonuses-swiper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.bonuses-swiper::-webkit-scrollbar {
  height: 4px;
}
.bonuses-swiper::-webkit-scrollbar-thumb {
  background: var(--c-btn-reg);
  border-radius: 2px;
}
.bonuses-swiper .bonus-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

.promo-accent {
  background: linear-gradient(135deg, #3a1e6a, #2b154e);
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid var(--c-btn-reg);
  text-align: center;
}
.promo-accent h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-card2);
  border: 2px dashed var(--c-btn-reg);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  margin: 14px 0;
}
.promo-code-box span {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 3px;
  font-family: "Montserrat", sans-serif;
}
.copy-btn {
  background: var(--c-btn-reg);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.copy-btn:hover {
  background: var(--c-accent);
}
.promo-copied {
  font-size: 12px;
  color: var(--c-green);
  margin-top: 6px;
  display: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.benefit-card {
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--c-border);
  text-align: center;
}
.benefit-card-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.benefit-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.benefit-card-desc {
  font-size: 12px;
  color: var(--c-text-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--c-card2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: none;
  border: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(107, 52, 204, 0.1);
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-btn-login);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 18px 16px;
}
.faq-answer p,
.faq-answer li {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.provider-chip {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.provider-chip:hover {
  border-color: var(--c-btn-reg);
  color: #fff;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.safety-card {
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--c-border);
}
.safety-card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.safety-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.safety-card-desc {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.compare-table-block {
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.reg-method-card {
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--c-border);
  text-align: center;
}
.reg-method-icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.reg-method-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.reg-method-desc {
  font-size: 12px;
  color: var(--c-text-muted);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid var(--c-border);
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table td {
  padding: 11px 14px;
  font-size: 14px;
}
.info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  width: 45%;
}
.info-table td:last-child {
  color: #fff;
  font-weight: 600;
}

.demo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.demo-popup-overlay.active {
  display: flex;
}
.demo-popup {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  width: 100%;
  max-width: 700px;
  position: relative;
}
.demo-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
}
.demo-popup iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-nav-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav-list a {
  font-size: 13px;
  color: var(--c-text-muted);
  transition: color 0.2s;
}
.footer-nav-list a:hover {
  color: var(--c-accent);
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.payment-icon {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.provider-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal-links a {
  font-size: 11px;
  color: var(--c-text-muted);
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: var(--c-accent);
}
.footer-18 {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  border: 2px solid var(--c-border);
  border-radius: 4px;
  padding: 2px 7px;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, #2b154e, #3a1e6a);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 2px solid var(--c-btn-reg);
  box-shadow: 0 -4px 20px rgba(107, 52, 204, 0.4);
}
.sticky-widget-text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.sticky-widget-text span {
  color: var(--c-gold);
}
.sticky-widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  padding: 2px;
}
.sticky-widget-close:hover {
  color: #fff;
}

.content-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
.content-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-accent);
  margin: 20px 0 10px;
}
.content-body p {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-body ul,
.content-body ol {
  margin: 0 0 14px 20px;
}
.content-body li {
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 5px;
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.content-body th {
  background: var(--c-btn-login);
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
  color: #fff;
}
.content-body td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
  font-size: 13px;
  color: var(--c-text);
}
.content-body a {
  color: var(--c-accent);
}
.content-body strong {
  color: #fff;
}
.content-body blockquote {
  border-left: 3px solid var(--c-btn-reg);
  padding: 10px 16px;
  background: var(--c-card2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 14px 0;
  font-style: italic;
  color: var(--c-text-muted);
}

.app-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.app-spec-card {
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--c-border);
}
.app-spec-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.app-spec-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.app-spec-list li:last-child {
  border-bottom: none;
}
.app-spec-list li span:first-child {
  color: var(--c-text-muted);
}
.app-spec-list li span:last-child {
  color: #fff;
  font-weight: 600;
}

.video-wrap {
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  background: #0a0018;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.slots-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.slot-feature-card {
  background: var(--c-card2);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--c-border);
}
.slot-feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.slot-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.slot-feature-desc {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.tech-content {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--c-border);
}
.tech-content h1 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 24px;
  color: #fff;
}

.xb7k2 {
  display: none;
}
.wp-content-hidden {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.yoast-seo-meta {
  display: none;
}
.elementor-widget-container {
  display: contents;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bonuses-grid {
    display: none;
  }
  .bonuses-swiper {
    display: flex;
  }
  .app-specs-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    z-index: 999;
    gap: 4px;
    overflow-y: auto;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
  }
  .burger {
    display: flex;
  }
  .pros-cons {
    flex-direction: column;
  }
  .games-grid {
    display: none;
  }
  .games-swiper {
    display: flex;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding: 40px 0;
  }
  .section {
    padding: 32px 0;
  }
  .reg-methods {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sticky-widget {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .slots-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .safety-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .header-right .btn-login,
  .header-right .btn-reg {
    padding: 7px 12px;
    font-size: 12px;
  }
  .reels {
    gap: 4px;
  }
  .reel {
    width: 58px;
    height: 66px;
    font-size: 30px;
  }
  .reg-methods {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .slots-features-grid {
    grid-template-columns: 1fr;
  }
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .app-specs-grid {
    grid-template-columns: 1fr;
  }
}

.a1b2c3 {
  color: transparent;
  font-size: 0;
  position: absolute;
  pointer-events: none;
}
.d4e5f6 .g7h8i9 {
  display: inline;
}

@media (max-width: 600px) {
  .btn-lg {
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    padding: 13px 16px;
    font-size: 0.9rem;
  }
}

.content-body,
.tech-content,
.tech-content .content-body {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.content-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 16px 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  -webkit-overflow-scrolling: touch;
}

.content-table-scroll table {
  width: 100%;
  min-width: 560px;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.content-table-scroll th,
.content-table-scroll td {
  min-width: 120px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px) {
  .content-body,
  .tech-content,
  .tech-content .content-body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .content-table-scroll {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin: 14px 0;
  }

  .tech-content .content-table-scroll {
    max-width: calc(100vw - 64px);
  }

  .content-table-scroll table {
    min-width: 520px;
  }

  .content-table-scroll th,
  .content-table-scroll td {
    padding: 10px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .content-table-scroll {
    max-width: calc(100vw - 24px);
  }

  .tech-content {
    padding: 20px 14px;
  }

  .tech-content .content-table-scroll {
    max-width: calc(100vw - 52px);
  }
}
