:root {
  --clr-bg: #2c1753;
  --clr-header: #463195;
  --clr-btn-primary: #ffdc41;
  --clr-btn-secondary: #4172c1;
  --clr-text: #f0eaf8;
  --clr-text-muted: #c4b8e0;
  --clr-card: #3a2168;
  --clr-card2: #3d2870;
  --clr-border: #5b439a;
  --clr-gold: #ffdc41;
  --clr-accent: #7b5fd8;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --trans: 0.25s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-btn-secondary);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover {
  color: var(--clr-gold);
}
.wp-hidden {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.25;
  color: var(--clr-text);
  font-weight: 700;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  margin-bottom: 0.6rem;
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 1rem;
  color: var(--clr-text-muted);
}

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}
.header-nav a {
  color: var(--clr-text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  transition:
    background var(--trans),
    color var(--trans);
}
.header-nav a:hover,
.header-nav a.active {
  background: rgba(255, 220, 65, 0.15);
  color: var(--clr-gold);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.online-count {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
  margin-right: 4px;
}
.online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4cdc7a;
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    filter var(--trans);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: var(--clr-btn-primary);
  color: #1a0d40;
  font-size: 0.9rem;
  padding: 8px 18px;
}
.btn-secondary {
  background: var(--clr-btn-secondary);
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 18px;
}
.btn-sm {
  font-size: 0.8rem;
  padding: 6px 14px;
}
.btn-lg {
  font-size: 1rem;
  padding: 12px 28px;
}
.btn-xl {
  font-size: 1.1rem;
  padding: 14px 36px;
}
.btn:hover {
  filter: brightness(1.1);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 950;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform var(--trans),
    opacity var(--trans);
}
.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-slider {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(135deg, var(--clr-header) 0%, var(--clr-bg) 100%);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--clr-gold);
  color: #1a0d40;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    background var(--trans),
    transform var(--trans);
}
.hero-dot.active {
  background: var(--clr-gold);
  transform: scale(1.3);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(70, 49, 149, 0.7);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--trans);
}
.hero-arrow:hover {
  background: var(--clr-btn-secondary);
}
.hero-arrow-prev {
  left: 16px;
}
.hero-arrow-next {
  right: 16px;
}

.section {
  padding: 60px 0;
}
.section-sm {
  padding: 40px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  margin-bottom: 10px;
}
.section-title p {
  color: var(--clr-text-muted);
  max-width: 580px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-gold);
  margin-bottom: 8px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card-text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin: 0;
}
.card-badge {
  display: inline-block;
  background: var(--clr-gold);
  color: #1a0d40;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: linear-gradient(135deg, var(--clr-card2), var(--clr-card));
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 220, 65, 0.07);
}
.bonus-card-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 6px;
}
.bonus-card-label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}
.bonus-card-cta {
  display: block;
}

.demo-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.demo-inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.demo-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.game-tile {
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
  position: relative;
}
.game-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.game-tile img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.game-tile-info {
  padding: 10px 12px;
}
.game-tile-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.game-tile-provider {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.game-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 23, 83, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.game-tile:hover .game-tile-overlay {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--trans),
    visibility var(--trans);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  max-width: 700px;
  width: 95%;
  position: relative;
  overflow: hidden;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.modal-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.modal-cta-bar {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-cta-bar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.screenshots-slider {
  position: relative;
  overflow: hidden;
}
.screenshots-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}
.screenshot-item {
  flex: 0 0 calc(33.33% - 12px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.screenshot-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.jackpot-block {
  background: linear-gradient(135deg, #3d1a6b, #2c1753);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jackpot-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 220, 65, 0.08) 0%,
    transparent 70%
  );
}
.jackpot-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}
.jackpot-amount {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--clr-gold);
  text-shadow: 0 0 40px rgba(255, 220, 65, 0.4);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.jackpot-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.jackpot-ticker {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.jackpot-ticker-item {
  text-align: center;
}
.jackpot-ticker-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-gold);
}
.jackpot-ticker-lbl {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background: var(--clr-card);
  transition: background var(--trans);
}
.faq-question:hover {
  background: var(--clr-card2);
}
.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
  color: var(--clr-gold);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.advantage-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
}
.advantage-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.advantage-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.advantage-text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.promo-block {
  background: linear-gradient(135deg, var(--clr-btn-secondary), #2d5aa8);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-block::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.promo-code-display {
  background: rgba(0, 0, 0, 0.3);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 18px 30px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 20px auto;
  max-width: 320px;
  cursor: pointer;
  transition: border-color var(--trans);
}
.promo-code-display:hover {
  border-color: var(--clr-gold);
}
.promo-copy-btn {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  display: block;
}
.promo-copy-btn.copied {
  color: var(--clr-gold);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 0.9rem;
}
thead {
  background: var(--clr-btn-secondary);
}
thead th {
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
tbody tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--trans);
}
tbody tr:hover {
  background: rgba(65, 114, 193, 0.12);
}
td {
  padding: 11px 16px;
  color: var(--clr-text-muted);
}
td:first-child {
  font-weight: 600;
  color: var(--clr-text);
}
.table-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}
.table-badge-green {
  background: rgba(76, 220, 122, 0.2);
  color: #4cdc7a;
}
.table-badge-yellow {
  background: rgba(255, 220, 65, 0.2);
  color: var(--clr-gold);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid var(--clr-border);
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table td {
  padding: 11px 16px;
}
.info-table td:first-child {
  font-weight: 600;
  color: var(--clr-text);
  width: 42%;
  background: rgba(70, 49, 149, 0.2);
}
.info-table td:last-child {
  color: var(--clr-text-muted);
}

.limits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.limit-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.limit-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 4px;
}
.limit-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.status-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.status-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--clr-card);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--clr-btn-secondary);
}
.status-step-num {
  width: 28px;
  height: 28px;
  background: var(--clr-btn-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.status-step-title {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.status-step-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.rating-overall {
  text-align: center;
  padding: 40px 20px;
}
.rating-score {
  font-size: 5rem;
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
}
.rating-stars {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: 8px 0;
}
.rating-count {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}
.rating-bars {
  max-width: 400px;
  margin: 24px auto 0;
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.rating-bar-label {
  width: 80px;
  color: var(--clr-text-muted);
  flex-shrink: 0;
}
.rating-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}
.rating-bar-val {
  width: 36px;
  text-align: right;
  color: var(--clr-text-muted);
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-block,
.cons-block {
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 24px;
}
.pros-block {
  border-top: 3px solid #4cdc7a;
}
.cons-block {
  border-top: 3px solid #e05050;
}
.pros-cons-title {
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pros-cons-list li {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  padding-left: 20px;
  position: relative;
}
.pros-cons-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.pros-block .pros-cons-list li::before {
  background: #4cdc7a;
}
.cons-block .pros-cons-list li::before {
  background: #e05050;
}
.review-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px;
}
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
  flex-wrap: wrap;
}
.review-author-name {
  font-weight: 700;
  margin-bottom: 2px;
}
.review-author-date {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.review-stars {
  color: var(--clr-gold);
  font-size: 1rem;
}
.review-text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}
.casino-reply {
  background: rgba(70, 49, 149, 0.25);
  border-left: 3px solid var(--clr-accent);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  margin-top: 10px;
}
.casino-reply-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 6px;
}
.casino-reply-text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.download-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  transition:
    background var(--trans),
    border-color var(--trans),
    transform var(--trans);
}
.download-btn:hover {
  background: var(--clr-btn-secondary);
  border-color: var(--clr-btn-secondary);
  color: #fff;
  transform: translateY(-2px);
}
.download-btn svg {
  flex-shrink: 0;
}
.download-btn-store {
  font-size: 0.7rem;
  font-weight: 400;
  display: block;
  opacity: 0.7;
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.reg-method {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.reg-method-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.reg-method-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.reg-method-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin: 16px 0;
}
.payment-logo {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 12px 0;
}
.provider-logo {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-text-muted);
}

.content-review {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 0 auto;
  max-width: 860px;
}
.content-review h2 {
  font-size: 1.6rem;
  margin-top: 28px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-border);
}
.content-review h3 {
  font-size: 1.2rem;
  margin-top: 22px;
  margin-bottom: 8px;
}
.content-review p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}
.content-review ul,
.content-review ol {
  margin: 0 0 1rem 20px;
  color: var(--clr-text-muted);
}
.content-review li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.content-review table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}
.content-review table th {
  background: var(--clr-btn-secondary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
}
.content-review table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
}
.content-review a {
  color: var(--clr-btn-secondary);
}
.content-review strong {
  color: var(--clr-text);
}

.author-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 32px 0;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--clr-accent);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}
.author-role {
  font-size: 0.8rem;
  color: var(--clr-gold);
  margin-bottom: 8px;
}
.author-bio {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin: 0;
}
.author-link {
  font-size: 0.8rem;
  color: var(--clr-btn-secondary);
  margin-top: 6px;
  display: inline-block;
}

.site-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo img {
  height: 40px;
}
.footer-about {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.footer-col-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color var(--trans);
}
.footer-nav a:hover {
  color: var(--clr-gold);
}
.footer-payments-section {
  margin-bottom: 20px;
}
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-legal {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  max-width: 800px;
  line-height: 1.6;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.footer-legal-links a:hover {
  color: var(--clr-gold);
}

.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(90deg, var(--clr-btn-secondary), #3560a8);
  border-top: 2px solid var(--clr-gold);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(0);
  transition: transform var(--trans);
}
.bottom-widget.hidden {
  transform: translateY(110%);
}
.bottom-widget-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.bottom-widget-text span {
  color: var(--clr-gold);
}
.bottom-widget-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.widget-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--trans);
}
.widget-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.tech-content {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.tech-content h1 {
  margin-bottom: 24px;
}
.tech-content h2 {
  font-size: 1.35rem;
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--clr-border);
}
.tech-content h3 {
  font-size: 1.1rem;
  margin: 20px 0 8px;
  color: var(--clr-text);
}
.tech-content p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.9rem;
}
.tech-content ul,
.tech-content ol {
  margin: 0 0 1rem 20px;
  color: var(--clr-text-muted);
}
.tech-content li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.tech-content a {
  color: var(--clr-btn-secondary);
}
.tech-content strong {
  color: var(--clr-text);
}

.slot-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.slot-feature {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.slot-feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.slot-feature-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.slot-feature-text {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.breadcrumbs {
  padding: 16px 0 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.breadcrumbs a {
  color: var(--clr-text-muted);
}
.breadcrumbs a:hover {
  color: var(--clr-gold);
}
.breadcrumbs span {
  margin: 0 6px;
  opacity: 0.5;
}
.breadcrumbs .current {
  color: var(--clr-text);
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-header);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 899;
    padding: 80px 20px 20px;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
  .burger {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .screenshot-item {
    flex: 0 0 85%;
  }
  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .bottom-widget-text {
    font-size: 0.8rem;
  }
  .hero-slide-content {
    padding: 40px 20px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 40px 0;
  }
  .hero-slider {
    min-height: 340px;
  }
  .jackpot-amount {
    font-size: 2.5rem;
  }
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bonus-cards {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .download-btns {
    flex-direction: column;
    align-items: center;
  }
  .author-block {
    flex-direction: column;
  }
  .content-review {
    padding: 20px;
  }
  .tech-content {
    padding: 24px;
  }
  .bottom-widget {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 10px 14px;
  }
  .limits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes jackpotFlip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.animate-fade-up {
  animation: fadeUp 0.55s ease both;
}
.animate-delay-1 {
  animation-delay: 0.1s;
}
.animate-delay-2 {
  animation-delay: 0.2s;
}
.animate-delay-3 {
  animation-delay: 0.3s;
}
.jackpot-amount {
  animation: jackpotFlip 2s ease-in-out infinite;
}

.wp-block-group,
.elementor-widget-container,
.wp-site-blocks {
  display: contents;
}
.entry-content,
.post-type-page {
  display: contents;
}
.wp-video {
  display: none;
}

.header-logo {
  width: 180px;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-logo .logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo img {
  width: 190px !important;
  height: 190px !important;
  max-width: none !important;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(87%) sepia(84%) saturate(1245%) hue-rotate(327deg) brightness(104%) contrast(102%);
}
.footer-logo {
  width: 170px;
  height: 58px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  width: 180px !important;
  height: 180px !important;
  max-width: none !important;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(87%) sepia(84%) saturate(1245%) hue-rotate(327deg) brightness(104%) contrast(102%);
}

html,
body,
.wrapper,
main,
.section,
.container {
  min-width: 0;
}
.wrapper,
main,
.section {
  width: 100%;
  max-width: 100%;
}
.cards-grid > *,
.bonus-cards > *,
.game-grid > *,
.advantages-grid > *,
.limits-grid > *,
.reg-methods > *,
.slot-features > *,
.pros-cons > *,
.footer-grid > *,
.hero-slide-content > *,
.content-review > *,
.tech-content > * {
  min-width: 0;
  max-width: 100%;
}
.content-review,
.tech-content,
.table-wrap,
.demo-block,
.promo-block,
.jackpot-block,
.author-block,
.review-card,
.card,
.bonus-card,
.game-tile,
.advantage-item,
.limit-item,
.reg-method,
.slot-feature {
  max-width: 100%;
  min-width: 0;
}
.content-review img,
.tech-content img,
.content-review iframe,
.tech-content iframe,
.content-review video,
.tech-content video,
.content-review pre,
.tech-content pre,
.content-review code,
.tech-content code {
  max-width: 100%;
}
.content-review,
.tech-content,
.card,
.bonus-card,
.review-card,
.advantage-item,
.reg-method,
.slot-feature,
.limit-item,
.status-step {
  overflow-wrap: anywhere;
  word-break: normal;
}
.content-review .table-wrap,
.tech-content .table-wrap,
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.content-review table:not(.info-table),
.tech-content table:not(.info-table) {
  display: block;
  width: max-content;
  min-width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 12px;
  }
  .header-logo {
    width: 158px;
    height: 56px;
  }
  .header-logo img {
    width: 170px !important;
    height: 170px !important;
  }
  .header-nav a {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .site-header {
    width: 100%;
    max-width: 100%;
  }
  .header-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
  }
  .header-logo {
    width: 150px;
    height: 52px;
  }
  .header-logo img {
    width: 160px !important;
    height: 160px !important;
  }
  .header-nav {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-width: none !important;
    padding: 84px 22px 28px !important;
    background: #2c1753 !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    overflow-y: auto !important;
    z-index: 930 !important;
  }
  .header-nav.open {
    display: flex !important;
  }
  .header-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 11px 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    font-size: 1rem !important;
  }
  .header-cta {
    min-width: 0;
    gap: 8px;
    position: relative;
    z-index: 950;
  }
  .header-cta .btn-secondary {
    display: none !important;
  }
  .header-cta .btn-primary {
    display: inline-flex !important;
    max-width: 150px;
    padding: 9px 14px;
    font-size: 0.82rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  .burger {
    display: flex !important;
    width: 42px;
    height: 42px;
    padding: 8px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 960;
  }
  .burger span {
    width: 26px;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .cards-grid,
  .bonus-cards,
  .game-grid,
  .advantages-grid,
  .limits-grid,
  .reg-methods,
  .slot-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pros-cons,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .hero-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-slide,
  .hero-slide.active,
  .hero-slide-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-slide-content {
    padding: 42px 18px;
  }
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
    overflow-wrap: anywhere;
  }
  .hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero-btns {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .hero-btns .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .section-title h1,
  .section-title h2,
  .section-title h3,
  .content-review h1,
  .content-review h2,
  .content-review h3,
  .tech-content h1,
  .tech-content h2,
  .tech-content h3 {
    overflow-wrap: anywhere;
  }
  .screenshots-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .screenshots-track {
    width: 100%;
    max-width: 100%;
  }
  .footer-logo {
    width: 160px;
    height: 54px;
  }
  .footer-logo img {
    width: 170px !important;
    height: 170px !important;
  }
  .bottom-widget {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 34px 0;
  }
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .header-inner {
    padding: 7px 10px;
    gap: 7px;
  }
  .header-logo {
    width: 126px;
    height: 48px;
  }
  .header-logo img {
    width: 142px !important;
    height: 142px !important;
  }
  .header-cta {
    gap: 6px;
  }
  .header-cta .btn-primary {
    max-width: 118px;
    padding: 8px 10px;
    font-size: 0.76rem;
  }
  .burger {
    width: 38px;
    height: 38px;
    padding: 6px;
  }
  .cards-grid,
  .bonus-cards,
  .game-grid,
  .advantages-grid,
  .limits-grid,
  .reg-methods,
  .slot-features,
  .pros-cons,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .card,
  .bonus-card,
  .review-card,
  .advantage-item,
  .limit-item,
  .reg-method,
  .slot-feature,
  .pros-block,
  .cons-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-slider {
    min-height: 0;
  }
  .hero-slide.active {
    min-height: 390px;
  }
  .hero-slide-content {
    padding: 34px 14px;
  }
  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 100%;
  }
  .btn,
  .download-btn,
  .promo-code-display {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .promo-block,
  .jackpot-block,
  .content-review,
  .tech-content {
    padding-left: 18px;
    padding-right: 18px;
  }
  .content-review,
  .tech-content {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .content-review table,
  .tech-content table,
  .table-wrap table {
    font-size: 0.82rem;
  }
  .content-review th,
  .content-review td,
  .tech-content th,
  .tech-content td,
  .table-wrap th,
  .table-wrap td {
    padding: 9px 10px;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table td {
    display: block;
    width: 100% !important;
  }
  .info-table tr {
    padding: 10px 0;
  }
  .info-table td:first-child {
    width: 100% !important;
    padding-bottom: 5px;
  }
  .info-table td:last-child {
    padding-top: 5px;
  }
  .screenshots-slider {
    overflow: visible;
  }
  .screenshots-track {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    transform: none !important;
    scrollbar-width: none;
  }
  .screenshots-track::-webkit-scrollbar {
    display: none;
  }
  .screenshot-item {
    flex: 0 0 100% !important;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    scroll-snap-align: start;
  }
  .jackpot-ticker,
  .payment-logos,
  .provider-logos,
  .download-btns,
  .modal-cta-bar {
    max-width: 100%;
  }
  .status-step,
  .review-card-header,
  .author-block,
  .bottom-widget {
    min-width: 0;
  }
  .status-step > *,
  .review-card-header > *,
  .author-block > *,
  .bottom-widget > * {
    min-width: 0;
    max-width: 100%;
  }
  .bottom-widget {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 8px;
    padding: 10px 12px;
  }
  .bottom-widget-btns {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-legal-links {
    max-width: 100%;
    gap: 8px 12px;
  }
}

@media (max-width: 360px) {
  .header-logo {
    width: 108px;
    height: 44px;
  }
  .header-logo img {
    width: 126px !important;
    height: 126px !important;
  }
  .header-cta .btn-primary {
    max-width: 96px;
    font-size: 0.7rem;
    padding: 7px 8px;
  }
  .burger {
    width: 36px;
    height: 36px;
  }
  .hero-title {
    font-size: 1.65rem !important;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
