@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
:root {
  --c-bg: #2c1753;
  --c-nav: #463195;
  --c-card: #3a2264;
  --c-gold: #ffdc41;
  --c-blue: #4172c1;
  --c-text: #f0eaff;
  --c-muted: #cfc3e8;
  --c-dim: #9c8bbf;
  --c-line: rgba(240, 234, 255, 0.14);
  --c-shadow: 0 18px 48px rgba(16, 7, 37, 0.32);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1160px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: Inter, sans-serif;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-gold);
  text-decoration: none;
  transition:
    opacity 0.2s,
    color 0.2s;
}
a:hover {
  opacity: 0.82;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}
.x9p3k-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.q2m7n-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(70, 49, 149, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-line);
}
.x7k2m-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 0;
}
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.brand-logo {
  width: 160px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.main-nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: #e8dfff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  opacity: 1;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.online-badge {
  display: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-muted);
  white-space: nowrap;
}
.online-count {
  color: var(--c-gold);
  font-weight: 800;
}
.burger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 20px;
  transition: background 0.2s;
}
.burger-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s;
}
.burger-btn span::before,
.burger-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger-btn span::before {
  top: -7px;
}
.burger-btn span::after {
  top: 7px;
}
.burger-btn.active span {
  background: transparent;
}
.burger-btn.active span::before {
  transform: rotate(45deg);
  top: 0;
}
.burger-btn.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--c-nav);
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-110%);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  z-index: 99;
  box-shadow: var(--c-shadow);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile a {
  display: block;
  padding: 13px 12px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid var(--c-line);
}
.nav-mobile a:last-child {
  border-bottom: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 1;
}
.btn:active {
  transform: translateY(0);
}
.btn-primary,
.btn-signup,
.btn-bonus,
.btn-widget {
  background: var(--c-gold);
  color: #1a0d3b;
  font-weight: 800;
}
.btn-primary:hover,
.btn-signup:hover,
.btn-bonus:hover {
  filter: brightness(1.08);
  color: #1a0d3b;
  opacity: 1;
}
.btn-secondary,
.btn-login {
  background: var(--c-blue);
  color: #fff;
}
.btn-xl {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
}
.btn-outline:hover {
  background: var(--c-gold);
  color: #1a0d3b;
  opacity: 1;
}
.btn-sm {
  padding: 7px 12px;
  font-size: 12px;
}
.btn-copy {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-text);
  border: 1px solid var(--c-line);
}
.btn-copy:hover {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}
.btn-thumb {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-muted);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 20px;
  border: 1px solid var(--c-line);
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-thumb:hover {
  background: rgba(255, 220, 65, 0.15);
  color: var(--c-gold);
  opacity: 1;
}

.r5k8w-hero {
  min-height: 580px;
  padding: 140px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.r5k8w-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(44, 23, 83, 0.97) 0%,
    rgba(70, 49, 149, 0.72) 50%,
    rgba(44, 23, 83, 0.93) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  animation: fadeIn 0.9s ease both;
}
.hero-content h1 {
  font-size: clamp(28px, 5.5vw, 62px);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--c-muted);
  margin-bottom: 28px;
  max-width: 600px;
  margin-inline: auto;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.m3f9t-breadcrumbs {
  padding: 18px 0 6px;
  font-size: 13px;
  color: var(--c-dim);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.m3f9t-breadcrumbs a {
  color: var(--c-muted);
  font-weight: 500;
}
.m3f9t-breadcrumbs a:hover {
  color: var(--c-gold);
  opacity: 1;
}
.m3f9t-breadcrumbs .bc-sep {
  opacity: 0.5;
}

.v6x1p-main {
  padding: 8px 0 100px;
  flex: 1;
}
.block-section {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 20px 0;
  box-shadow: var(--c-shadow);
  animation: slideUp 0.5s ease both;
}
.block-section h2 {
  font-size: clamp(20px, 3vw, 30px);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.block-section h3 {
  color: var(--c-gold);
  font-size: 18px;
  margin-bottom: 10px;
}
.technical-content {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 20px 0;
  box-shadow: var(--c-shadow);
}

.demo-iframe-wrap {
  aspect-ratio: 16/9;
  background: #1e0f40;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--c-line);
}
.demo-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.card-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.card-slider::-webkit-scrollbar {
  height: 4px;
}
.card-slider::-webkit-scrollbar-thumb {
  background: var(--c-nav);
  border-radius: 4px;
}
.t5n1q-card {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 280px;
  background: linear-gradient(
    145deg,
    rgba(70, 49, 149, 0.5),
    rgba(44, 23, 83, 0.8)
  );
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.t5n1q-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.tournament-badge {
  display: inline-block;
  background: rgba(255, 220, 65, 0.15);
  border: 1px solid rgba(255, 220, 65, 0.3);
  color: var(--c-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.t5n1q-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.t5n1q-card p {
  font-size: 13px;
  color: var(--c-muted);
  flex: 1;
}
.tournament-prize {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-gold);
}
.tournament-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-muted);
}
.timer-display {
  color: var(--c-gold);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.s2w8k-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.screenshot-item {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--c-line);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.screenshot-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.screenshot-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px) {
  .jackpots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.jackpot-item {
  background: linear-gradient(
    145deg,
    rgba(65, 114, 193, 0.2),
    rgba(44, 23, 83, 0.6)
  );
  border: 1px solid rgba(65, 114, 193, 0.3);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  transition: transform 0.2s;
}
.jackpot-item:hover {
  transform: translateY(-3px);
}
.jackpot-game {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.jackpot-amount-display {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  color: var(--c-gold);
  animation: pulse 2.5s ease-in-out infinite;
}

.video-wrap {
  aspect-ratio: 16/9;
  background: #1e0f40;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--c-line);
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-item:first-child {
  border-top: 1px solid var(--c-line);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.faq-question::after {
  content: "▼";
  font-size: 12px;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] {
  color: var(--c-gold);
}
.faq-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}
.faq-answer.open {
  max-height: 600px;
}
.faq-answer p {
  padding: 0 16px 18px;
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.bonus-card {
  background: linear-gradient(
    135deg,
    rgba(70, 49, 149, 0.6),
    rgba(65, 114, 193, 0.25)
  );
  border: 1px solid rgba(255, 220, 65, 0.2);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.bonus-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.bonus-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.bonus-card-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.bonus-card-desc {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: rgba(44, 23, 83, 0.4);
}
.compare-table th {
  background: var(--c-nav);
  color: var(--c-gold);
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-muted);
  font-size: 14px;
  vertical-align: top;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.compare-table td:first-child {
  color: #fff;
  font-weight: 600;
}

.promo-block {
  background: linear-gradient(
    135deg,
    rgba(255, 220, 65, 0.12),
    rgba(65, 114, 193, 0.15)
  );
  border: 2px solid rgba(255, 220, 65, 0.35);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.promo-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px dashed var(--c-gold);
  border-radius: 10px;
  padding: 14px 24px;
  margin: 10px 0;
}
.promo-code-text {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}
.promo-copy-feedback {
  color: #4caf50;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  min-height: 20px;
  transition: opacity 0.3s;
}

.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}
.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 14px 22px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.download-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  color: #fff;
  opacity: 1;
}
.download-btn-icon {
  font-size: 28px;
}
.download-btn-text span {
  display: block;
  font-size: 10px;
  color: var(--c-muted);
  font-weight: 400;
}

.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.alt-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  transition: transform 0.2s;
}
.alt-card:hover {
  transform: translateY(-3px);
}
.alt-card-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.alt-card-desc {
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 12px;
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.reg-method {
  background: rgba(65, 114, 193, 0.15);
  border: 1px solid rgba(65, 114, 193, 0.25);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.reg-method-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.reg-method-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.reg-method-desc {
  font-size: 13px;
  color: var(--c-muted);
}
.reg-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}
.reg-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
  counter-increment: steps;
}
.reg-step:last-child {
  border-bottom: none;
}
.reg-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-gold);
  color: #1a0d3b;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reg-step-content h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}
.reg-step-content p {
  color: var(--c-muted);
  font-size: 13px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  text-align: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.feature-item:hover {
  background: rgba(255, 220, 65, 0.1);
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.feature-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-muted);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}
.slot-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
}
.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.slot-card:hover .slot-overlay {
  opacity: 1;
}
.slot-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.slot-info {
  padding: 12px;
}
.slot-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.slot-provider {
  font-size: 11px;
  color: var(--c-muted);
}
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 23, 83, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.info-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .info-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}
.info-block {
  background: rgba(65, 114, 193, 0.12);
  border: 1px solid rgba(65, 114, 193, 0.2);
  border-radius: var(--radius);
  padding: 22px;
}
.info-block-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.info-block h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.info-block ul {
  list-style: none;
  padding: 0;
}
.info-block li {
  color: var(--c-muted);
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.info-block li:last-child {
  border-bottom: none;
}
.info-block li::before {
  content: "•";
  color: var(--c-gold);
  flex-shrink: 0;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros,
.cons {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.pros {
  border-top: 3px solid #4caf50;
}
.cons {
  border-top: 3px solid #f44336;
}
.pros h3 {
  color: #4caf50;
  margin-bottom: 12px;
  font-size: 15px;
}
.cons h3 {
  color: #f44336;
  margin-bottom: 12px;
  font-size: 15px;
}
.pros li,
.cons li {
  color: var(--c-muted);
  font-size: 13px;
  padding: 5px 0;
  list-style: none;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pros li:last-child,
.cons li:last-child {
  border-bottom: none;
}
.pros li::before {
  content: "✓";
  color: #4caf50;
  font-weight: 700;
  flex-shrink: 0;
}
.cons li::before {
  content: "✗";
  color: #f44336;
  font-weight: 700;
  flex-shrink: 0;
}

.rating-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}
.stars {
  color: #ffdc41;
  font-size: 20px;
  letter-spacing: 2px;
}
.rating-num {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.rating-count {
  font-size: 13px;
  color: var(--c-muted);
}

.helpful-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
}
.helpful-text {
  color: var(--c-muted);
  font-size: 14px;
  flex: 1;
}

.author-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(65, 114, 193, 0.1);
  border: 1px solid rgba(65, 114, 193, 0.2);
  border-radius: var(--radius);
  padding: 20px;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--c-line);
}
.author-name {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin-bottom: 3px;
}
.author-title {
  font-size: 12px;
  color: var(--c-gold);
  margin-bottom: 6px;
}
.author-bio {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}
.author-links {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.author-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-blue);
}

.games-x8q2z {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.game-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.2s;
  position: relative;
}
.game-card:hover {
  transform: translateY(-3px);
}
.game-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.game-card-body {
  padding: 10px 12px;
}
.game-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.game-card-provider {
  font-size: 11px;
  color: var(--c-muted);
}

.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.pay-badge,
.prov-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-muted);
  white-space: nowrap;
}

.q4t8r-footer {
  background: var(--c-nav);
  border-top: 1px solid var(--c-line);
  padding: 40px 0 30px;
  margin-top: 40px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-col {
  flex: 1;
  min-width: 180px;
}
.footer-logo {
  width: 140px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--c-gold);
  opacity: 1;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--c-dim);
  line-height: 1.7;
}
.footer-legal {
  font-size: 11px;
  color: var(--c-dim);
  margin-top: 6px;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
.footer-legal-links a {
  font-size: 12px;
  color: var(--c-dim);
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: var(--c-gold);
  opacity: 1;
}

.w3p9s-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(90deg, var(--c-nav), rgba(70, 49, 149, 0.97));
  border-top: 2px solid var(--c-gold);
  padding: 10px 16px;
  backdrop-filter: blur(12px);
}
.widget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--container);
  margin-inline: auto;
}
.widget-text {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget-text strong {
  color: var(--c-gold);
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.demo-modal.open {
  display: flex;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 7, 37, 0.9);
  backdrop-filter: blur(6px);
}
.modal-box {
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  width: min(820px, 100%);
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.modal-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.modal-x:hover {
  background: rgba(255, 255, 255, 0.2);
}
.modal-iframe-wrap {
  aspect-ratio: 16/9;
  flex: 1;
  min-height: 0;
}
.modal-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.modal-cta {
  padding: 16px 20px;
  background: rgba(44, 23, 83, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-cta p {
  color: var(--c-muted);
  font-size: 14px;
  margin: 0;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.payment-method-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-method-icon {
  font-size: 24px;
}
.payment-method-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.payment-method-time {
  font-size: 11px;
  color: var(--c-muted);
}

.bonus-cta-block {
  background: linear-gradient(
    135deg,
    rgba(255, 220, 65, 0.15),
    rgba(65, 114, 193, 0.15)
  );
  border: 2px solid rgba(255, 220, 65, 0.3);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.bonus-cta-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.bonus-cta-amount {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--c-gold);
  margin-bottom: 8px;
}
.bonus-cta-desc {
  color: var(--c-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--c-nav);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 89;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--c-gold);
  color: #1a0d3b;
}

.content-text {
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.75;
}
.content-text h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: #fff;
  margin: 28px 0 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.content-text h3 {
  font-size: 18px;
  color: var(--c-gold);
  margin: 22px 0 10px;
  font-weight: 600;
}
.content-text h4 {
  font-size: 16px;
  color: #fff;
  margin: 16px 0 8px;
  font-weight: 600;
}
.content-text p {
  margin-bottom: 14px;
}
.content-text ul,
.content-text ol {
  margin: 0 0 16px 20px;
}
.content-text li {
  margin-bottom: 6px;
}
.content-text table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  margin: 16px 0;
  font-size: 14px;
}
.content-text th {
  background: var(--c-nav);
  color: var(--c-gold);
  padding: 12px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.content-text td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-muted);
}
.content-text tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.content-text strong {
  color: #fff;
  font-weight: 700;
}
.content-text a {
  color: var(--c-gold);
  font-weight: 600;
}
.content-text blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 12px 16px;
  background: rgba(255, 220, 65, 0.06);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  color: #fff;
  font-style: italic;
}

.wp-block-group {
  --wp--preset--color--black: #000;
  --wp--preset--color--white: #fff;
}
.elementor-widget-wrap {
  display: flex;
  flex-wrap: wrap;
}
.elementor-column {
  position: relative;
}
.e-con-inner {
  max-width: 100%;
}
.wp-embed-responsive {
  position: relative;
}
.entry-content {
  max-width: none;
}
.site-main,
.site-footer,
.site-header {
  display: block;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes spinDot {
  to {
    transform: rotate(360deg);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
  .online-badge {
    display: block;
  }
  .burger-btn {
    display: none;
  }
  .s2w8k-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .info-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .bonus-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reg-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .t5n1q-card {
    min-width: 260px;
    flex: 0 0 80vw;
  }
  .s2w8k-grid {
    grid-template-columns: 1fr;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
  .screenshot-item {
    flex: 0 0 80vw;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .modal-cta {
    flex-direction: column;
    text-align: center;
  }
  .widget-inner {
    gap: 8px;
  }
  .widget-text {
    font-size: 12px;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 420px) {
  .header-actions .btn-login {
    display: none;
  }
}

.brand-logo {
  width: 190px;
  height: auto;
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}
.footer-logo {
  width: 190px;
  height: auto;
  max-height: 58px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}
.page-bonuses .card-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}
.page-bonuses .card-slider .bonus-card {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.block-section,
.block-section > *,
.content-text,
.content-text > *,
.footer-col,
.footer-col > * {
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-bonuses .card-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .header-actions .btn-login,
  .header-right .btn-login {
    display: none;
  }
  .x7k2m-header {
    min-width: 0;
    gap: 8px;
  }
  .logo-link {
    min-width: 0;
    max-width: 38vw;
  }
  .brand-logo {
    width: 132px;
    max-width: 38vw;
    height: auto;
    max-height: 44px;
  }
  .header-right {
    min-width: 0;
    gap: 6px;
  }
  .header-right .btn-signup {
    padding: 9px 11px;
    font-size: 12px;
    white-space: nowrap;
  }
  .burger-btn {
    flex: 0 0 42px;
  }
  .page-bonuses .card-slider {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }
  .page-bonuses .bonus-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .block-section,
  .content-text,
  .technical-content,
  .table-wrap,
  .footer-inner,
  .footer-col,
  .widget-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .content-text {
    overflow-x: hidden;
  }
  .content-text table {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: collapse;
  }
  .content-text th,
  .content-text td {
    min-width: 0;
    max-width: none;
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-table {
    max-width: none;
  }
  .btn,
  .btn-xl,
  .download-btn,
  .widget-btn {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
  }
  .bonus-cards-grid,
  .alt-grid,
  .reg-methods,
  .payment-methods-grid,
  .info-blocks,
  .pros-cons {
    grid-template-columns: minmax(0, 1fr);
  }
  .slots-grid,
  .games-x8q2z {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bonus-card,
  .alt-card,
  .reg-method,
  .payment-method-card,
  .info-block,
  .pros,
  .cons,
  .slot-card,
  .game-card,
  .feature-item {
    min-width: 0;
    max-width: 100%;
  }
  .footer-logo {
    width: 180px;
    max-width: 70vw;
    height: auto;
    max-height: 56px;
  }
  .footer-links a,
  .footer-legal,
  .footer-bottom p,
  .widget-text,
  .bonus-card-title,
  .bonus-card-amount,
  .bonus-card-desc {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  img,
  iframe,
  video,
  canvas,
  svg {
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .brand-logo {
    width: 108px;
    max-width: 34vw;
  }
  .header-right .btn-signup {
    padding: 8px 9px;
    font-size: 11px;
  }
  .slots-grid,
  .games-x8q2z {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 767px) {
  .x9p3k-wrapper,
  .v6x1p-main,
  main,
  section,
  article,
  header,
  footer,
  nav,
  .container {
    min-width: 0;
    max-width: 100%;
  }
  .jackpots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .jackpot-item,
  .feature-item {
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .logo-link {
    width: 132px;
    max-width: 38vw;
    flex: 0 1 132px;
  }
  .brand-logo {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .logo-link {
    width: 108px;
    max-width: 34vw;
    flex-basis: 108px;
  }
  .brand-logo {
    width: 100%;
    max-width: 100%;
  }
}
