*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-primary: #1c0138;
  --c-primary-dark: #130128;
  --c-primary-light: #2d0157;
  --c-accent: #a855f7;
  --c-accent2: #7c3aed;
  --c-gold: #f59e0b;
  --c-green: #22c55e;
  --c-red: #ef4444;
  --c-bg: #1c0138;
  --c-bg2: #13012a;
  --c-bg3: #0d001c;
  --c-surface: #250444;
  --c-surface2: #2e0550;
  --c-text: #f3e8ff;
  --c-text2: #c4b5fd;
  --c-text3: #a78bfa;
  --c-border: #3b0764;
  --c-border2: #4c1d95;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(168, 85, 247, 0.15);
  --shadow-lg: 0 8px 40px rgba(168, 85, 247, 0.25);
  --transition: 0.25s ease;
}
html {
  background: var(--c-bg3);
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-accent2);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  font-family: inherit;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--c-accent2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--green {
  background: var(--c-green);
  color: #fff;
}
.btn--green:hover {
  background: #16a34a;
  color: #fff;
  transform: translateY(-2px);
}
.btn--red {
  background: var(--c-red);
  color: #fff;
}
.btn--red:hover {
  background: #dc2626;
  color: #fff;
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--c-gold);
  color: #1c0138;
}
.btn--gold:hover {
  background: #d97706;
  color: #1c0138;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
}
.btn--outline:hover {
  background: var(--c-accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn--lg {
  padding: 14px 32px;
  font-size: 17px;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 14px;
}
.btn--bonus {
  background: linear-gradient(135deg, var(--c-gold), #f97316);
  color: #1c0138;
}
.btn--bonus:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.header {
  background: var(--c-primary);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--c-text2);
  font-size: 14px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--c-text);
  background: var(--c-surface);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-online {
  font-size: 12px;
  color: var(--c-text3);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 4px;
}
.header-online span.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.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);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-primary-dark);
  border-top: 1px solid var(--c-border);
  padding: 12px 16px;
  gap: 4px;
}
.mobile-nav a {
  color: var(--c-text2);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: all var(--transition);
}
.mobile-nav a:hover {
  background: var(--c-surface);
  color: var(--c-text);
}
.mobile-nav.open {
  display: flex;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--c-bg2);
}
.slider {
  position: relative;
  overflow: hidden;
}
.slide {
  display: none;
  position: relative;
}
.slide.active {
  display: block;
}
.slide-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  opacity: 0.55;
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 16px;
}
.slide-content h1,
.slide-content h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  text-wrap: balance;
}
.slide-content p {
  font-size: clamp(15px, 2.5vw, 20px);
  color: var(--c-text2);
  max-width: 600px;
  text-wrap: pretty;
}
.slider-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}
.slider-prev {
  left: 12px;
}
.slider-next {
  right: 12px;
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--c-accent);
}

.section {
  padding: 48px 0;
}
.section-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 24px;
  text-wrap: balance;
}
.section-subtitle {
  color: var(--c-text2);
  margin-bottom: 32px;
  font-size: 17px;
  text-wrap: pretty;
}

.box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius, var(--radius));
  padding: 28px;
  margin-bottom: 24px;
}
.box--accent {
  background: var(--c-surface2);
  border-color: var(--c-accent);
}
.box--dark {
  background: var(--c-bg2);
  border-color: var(--c-border);
}

.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow-x: auto;
  display: block;
}
.info-table table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
}
.info-table td,
.info-table th {
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  text-align: left;
  vertical-align: middle;
}
.info-table th {
  background: var(--c-primary-dark);
  color: var(--c-accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.info-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.info-table tr:hover td {
  background: rgba(168, 85, 247, 0.07);
}
.info-table td:first-child {
  color: var(--c-text2);
  font-weight: 500;
  width: 40%;
}
.info-table td:last-child {
  color: var(--c-text);
  font-weight: 600;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.compare-table th {
  background: var(--c-primary-dark);
  color: var(--c-accent);
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-size: 14px;
  text-transform: uppercase;
}
.compare-table td {
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  text-align: left;
}
.compare-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.compare-table tr:hover td {
  background: rgba(168, 85, 247, 0.07);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.advantage-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.advantage-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.advantage-card .icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.advantage-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}
.advantage-card p {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.5;
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.jackpot-card {
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-surface2));
  border: 1px solid var(--c-border2);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: all var(--transition);
}
.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.jackpot-card .jp-name {
  font-size: 14px;
  color: var(--c-text2);
  margin-bottom: 8px;
}
.jackpot-card .jp-amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-gold);
  font-variant-numeric: tabular-nums;
}
.jackpot-card .jp-currency {
  font-size: 14px;
  color: var(--c-gold);
  opacity: 0.8;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.demo-wrap {
  position: relative;
  padding-bottom: 60%;
  min-height: 320px;
  height: 0;
  border-radius: var(--radius);
}
.demo-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: var(--c-accent);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--c-text);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-q::after {
  content: "+";
  font-size: 22px;
  color: var(--c-accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 20px 16px;
  color: var(--c-text2);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  display: block;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.bonus-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bonus-card-head {
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-surface2));
  padding: 20px;
  text-align: center;
}
.bonus-card-head .bc-icon {
  font-size: 40px;
  margin-bottom: 8px;
}
.bonus-card-head h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--c-text);
}
.bonus-card-body {
  padding: 16px 20px;
}
.bonus-card-body p {
  color: var(--c-text2);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.bonus-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-gold);
  display: block;
  margin-bottom: 6px;
}

.promo-block {
  background: linear-gradient(135deg, #250444, #3b0764);
  border: 2px solid var(--c-accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 20px 0;
}
.promo-code-val {
  background: var(--c-bg2);
  color: var(--c-gold);
  font-size: 24px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border: 2px solid var(--c-gold);
  letter-spacing: 0.05em;
}
.promo-code-copy {
  background: var(--c-gold);
  color: #1c0138;
  font-weight: 700;
  padding: 14px 20px;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 14px;
}
.promo-code-copy:hover {
  background: #d97706;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--c-accent);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-accent);
}
.review-meta h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}
.review-stars {
  color: var(--c-gold);
  font-size: 16px;
  margin-top: 3px;
}
.review-text {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.6;
}

.review-form {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 520px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text2);
}
.form-group input,
.form-group textarea {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-accent);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--c-green);
  border-radius: var(--radius-sm);
  padding: 14px;
  color: var(--c-green);
  font-weight: 600;
  margin-top: 12px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.slot-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.slot-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.slot-card-info {
  padding: 10px 12px;
}
.slot-card-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}
.slot-card-info span {
  font-size: 12px;
  color: var(--c-text3);
}
.rtp-badge {
  display: inline-block;
  background: var(--c-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 6px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}
.feature-card .f-icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.feature-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}
.feature-card p {
  font-size: 13px;
  color: var(--c-text2);
  margin-top: 4px;
}

.mirror-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.mirror-table th {
  background: var(--c-primary-dark);
  color: var(--c-accent);
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  font-size: 13px;
  text-transform: uppercase;
}
.mirror-table td {
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: 14px;
}
.mirror-table tr:hover td {
  background: rgba(168, 85, 247, 0.07);
}
.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 13px;
}
.mirror-status.ok {
  color: var(--c-green);
}
.mirror-status.ok::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
}

.mirror-trouble {
  background: var(--c-surface2);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius);
  padding: 24px;
}
.trouble-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.trouble-result {
  margin-top: 16px;
  padding: 14px;
  background: var(--c-bg2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  font-size: 14px;
  color: var(--c-text2);
  display: none;
}
.trouble-result.show {
  display: block;
}

.screenshots-slider {
  position: relative;
  overflow: hidden;
}
.screenshots-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.screenshots-track::-webkit-scrollbar {
  height: 4px;
}
.screenshots-track::-webkit-scrollbar-track {
  background: var(--c-bg2);
}
.screenshots-track::-webkit-scrollbar-thumb {
  background: var(--c-accent);
  border-radius: 4px;
}
.screenshot-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.dl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 14px 22px;
  transition: all var(--transition);
  text-decoration: none;
}
.dl-btn:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.dl-btn .dl-icon {
  font-size: 28px;
}
.dl-btn-text .dl-label {
  font-size: 11px;
  color: var(--c-text2);
}
.dl-btn-text .dl-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 8px 0;
}
.reg-method {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}
.reg-method:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}
.reg-method .rm-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.reg-method h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}
.reg-method p {
  font-size: 13px;
  color: var(--c-text2);
}

.author-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-accent);
  flex-shrink: 0;
}
.author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}
.author-info p {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.6;
  margin-bottom: 12px;
}
.author-socials {
  display: flex;
  gap: 10px;
}
.author-socials a {
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid var(--c-accent);
  border-radius: 20px;
  transition: all var(--transition);
}
.author-socials a:hover {
  background: var(--c-accent);
  color: #fff;
}

.footer {
  background: var(--c-primary-dark);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--c-text3);
  font-size: 14px;
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--c-text);
}
.footer-logo {
  height: 40px;
  margin-bottom: 14px;
}
.footer-legal {
  font-size: 12px;
  color: var(--c-text3);
  line-height: 1.5;
  margin-top: 8px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 13px;
  color: var(--c-text3);
}
.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}
.pay-logo,
.prov-logo {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text2);
}

.widget-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--c-primary-dark), var(--c-surface2));
  border-top: 2px solid var(--c-accent);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(168, 85, 247, 0.3);
}
.widget-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.3;
}
.widget-text span {
  color: var(--c-gold);
  font-weight: 800;
}
.widget-close {
  background: none;
  border: none;
  color: var(--c-text2);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.widget-close:hover {
  color: var(--c-text);
}

.content-body {
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.7;
}
.content-body h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--c-text);
  margin: 32px 0 14px;
  text-wrap: balance;
}
.content-body h3 {
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--c-text2);
  margin: 24px 0 10px;
}
.content-body h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text2);
  margin: 18px 0 8px;
}
.content-body p {
  margin-bottom: 14px;
  color: var(--c-text2);
}
.content-body ul,
.content-body ol {
  margin: 10px 0 16px 22px;
}
.content-body li {
  margin-bottom: 6px;
  color: var(--c-text2);
}
.content-body a {
  color: var(--c-accent);
  text-decoration: underline;
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.content-body table th {
  background: var(--c-primary-dark);
  color: var(--c-accent);
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.content-body table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text2);
}
.content-body blockquote {
  border-left: 4px solid var(--c-accent);
  padding: 10px 16px;
  background: var(--c-surface);
  margin: 16px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text2);
}
.content-body strong {
  color: var(--c-text);
  font-weight: 700;
}
.content-body em {
  color: var(--c-text3);
}

.hero-banner {
  position: relative;
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-surface2));
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/hero-banner.jpg") center/cover no-repeat;
  opacity: 0.3;
}
.hero-banner-inner {
  position: relative;
  z-index: 1;
}
.hero-banner h1,
.hero-banner h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hero-banner p {
  font-size: clamp(15px, 2.5vw, 19px);
  color: var(--c-text2);
  max-width: 600px;
  margin: 0 auto 24px;
  text-wrap: pretty;
}

.alternatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.alt-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: all var(--transition);
}
.alt-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}
.alt-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}
.alt-card p {
  font-size: 13px;
  color: var(--c-text2);
  margin-bottom: 12px;
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}
.rtp-table th {
  background: var(--c-primary-dark);
  color: var(--c-accent);
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  font-size: 13px;
  text-transform: uppercase;
}
.rtp-table td {
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.rtp-table tr:hover td {
  background: rgba(168, 85, 247, 0.07);
}
.rtp-bar {
  height: 6px;
  background: var(--c-border);
  border-radius: 4px;
  margin-top: 4px;
  overflow: hidden;
}
.rtp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-green));
  border-radius: 4px;
}

.get-bonus-block {
  background: linear-gradient(135deg, #250444, #3b0764);
  border: 2px solid var(--c-accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.get-bonus-block h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 10px;
}
.get-bonus-block p {
  color: var(--c-text2);
  margin-bottom: 20px;
  font-size: 17px;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.perk-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}
.perk-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}
.perk-card .p-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.perk-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}
.perk-card p {
  font-size: 13px;
  color: var(--c-text2);
}

.online-count {
  font-weight: 800;
  color: var(--c-green);
}

.d3f8a2,
.e9c1b7,
.f2a0d4 {
  display: none;
}
.wp-block-group {
  display: contents;
}
.wpcf7 {
  margin: 0;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .slide-img {
    height: 260px;
  }
  .hero-banner {
    padding: 52px 16px;
  }
  .section {
    padding: 32px 0;
  }
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  .author-block {
    flex-direction: column;
  }
  .author-photo {
    width: 64px;
    height: 64px;
  }
  .widget-bottom {
    flex-wrap: wrap;
  }
  .bonus-slider-track {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .bonus-slider-track .bonus-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
  .download-btns {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .header-cta .btn--outline {
    display: none;
  }
  .jackpots-grid {
    grid-template-columns: 1fr 1fr;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.x4f9m,
.r7k2p,
.q1w3e {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

/* mobile rebuild */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe, canvas, svg {
  max-width: 100%;
}

.content-body,
.technical-content,
.box,
.section,
.container,
main,
.wrapper {
  min-width: 0;
}

.content-body table,
.technical-content table,
.info-table table,
.compare-table,
.mirror-table,
.rtp-table {
  width: 100%;
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 900px) {
  :root {
    --mobile-gap: 16px;
  }

  body {
    width: 100%;
    min-width: 0;
  }

  .wrapper {
    width: 100%;
    overflow: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: var(--mobile-gap);
    padding-right: var(--mobile-gap);
  }

  .header {
    position: relative;
    z-index: 1000;
  }

  .header-inner {
    min-height: 64px;
    padding: 10px 16px;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .header-logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-logo img {
    width: min(132px, 38vw);
    height: auto;
    display: block;
  }

  .header-cta {
    margin-left: auto;
    gap: 8px;
    flex: 0 0 auto;
  }

  .header-cta .btn {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .burger {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 9px;
    border-radius: 10px;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 10px 16px 18px;
    background: var(--c-surface, #11151d);
    border-top: 1px solid var(--c-border, rgba(255,255,255,.1));
    box-shadow: 0 18px 30px rgba(0,0,0,.35);
  }

  .mobile-nav a {
    display: block;
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid var(--c-border, rgba(255,255,255,.08));
  }

  .hero,
  .hero-banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .slide.active {
    position: relative;
  }

  .slide-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,20,.18) 0%, rgba(10,8,20,.62) 54%, rgba(10,8,20,.92) 100%);
    pointer-events: none;
  }

  .slide-content {
    left: 16px;
    right: 16px;
    bottom: 54px;
    top: auto;
    width: auto;
    max-width: none;
    z-index: 2;
    padding: 0;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.08;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
  }

  .slide-content p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

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

  .slider-prev,
  .slider-next {
    top: auto;
    bottom: 10px;
    transform: none;
    width: 40px;
    height: 40px;
    z-index: 4;
  }

  .slider-prev { left: 16px; }
  .slider-next { right: 16px; }

  .slider-controls {
    bottom: 22px;
    z-index: 4;
  }

  main {
    width: 100%;
    max-width: 100%;
  }

  .section {
    width: 100%;
    padding: 28px 0;
  }

  .section-title {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.15;
    margin-bottom: 20px;
    overflow-wrap: anywhere;
  }

  .advantages-grid,
  .features-grid,
  .bonuses-grid,
  .reviews-grid,
  .perks-grid,
  .alternatives-grid,
  .reg-methods,
  .slots-grid,
  .jackpots-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .advantage-card,
  .feature-card,
  .bonus-card,
  .review-card,
  .perk-card,
  .alt-card,
  .reg-method,
  .slot-card,
  .jackpot-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }

  .bonus-slider-track {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    transform: none !important;
    gap: 14px;
  }

  .bonus-slider-track .bonus-card {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .info-table,
  .content-body,
  .technical-content,
  .box {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .content-body,
  .technical-content {
    padding: 20px 16px;
  }

  .content-body h1,
  .technical-content h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .content-body h2,
  .technical-content h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .content-body h3,
  .technical-content h3 {
    font-size: 20px;
  }

  .content-body p,
  .content-body li,
  .technical-content p,
  .technical-content li,
  .content-body a,
  .technical-content a {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .content-body table,
  .technical-content table,
  .info-table table,
  .compare-table,
  .mirror-table,
  .rtp-table {
    min-width: 620px;
    width: max-content;
    max-width: none;
  }

  .content-body table,
  .technical-content table {
    display: table;
  }

  .content-body > table,
  .technical-content > table,
  .info-table,
  .table-scroll {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }

  .content-body th,
  .content-body td,
  .technical-content th,
  .technical-content td,
  .info-table th,
  .info-table td {
    min-width: 150px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .video-wrap,
  .demo-wrap {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .video-wrap iframe,
  .demo-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  .download-btns,
  .trouble-btns,
  .payment-logos,
  .provider-logos,
  .author-socials {
    gap: 10px;
  }

  .download-btns .btn,
  .dl-btn,
  .trouble-btn {
    width: 100%;
    max-width: 100%;
  }

  .review-form input,
  .review-form textarea,
  .review-form button,
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    max-width: 100%;
  }

  .faq-q {
    padding: 16px 46px 16px 16px;
    font-size: 16px;
    text-align: left;
  }

  .faq-a > div {
    padding: 0 16px 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .widget-bottom {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
    max-width: calc(100% - 16px);
    padding: 12px 44px 12px 12px;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .widget-close {
    position: absolute;
    right: 10px;
    top: 8px;
  }
}

@media (max-width: 520px) {
  .header-cta .btn--outline {
    display: none !important;
  }

  .header-cta .btn--primary {
    padding: 9px 10px;
    font-size: 12px;
  }

  .slide-img {
    height: 390px;
  }

  .content-body,
  .technical-content {
    padding: 18px 14px;
  }

  .jackpots-grid,
  .slots-grid {
    grid-template-columns: 1fr;
  }

  .get-bonus-block,
  .promo-block,
  .mirror-trouble {
    padding: 20px 14px;
  }
}
