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

:root {
  --clr-bg: #0d102a;
  --clr-nav: #1b1f3b;
  --clr-nav-alt: #171a35;
  --clr-pink: #ff4dd2;
  --clr-green: #00e676;
  --clr-text: #e8eaf6;
  --clr-muted: #9fa8da;
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-card: #1e2248;
  --clr-card2: #15193a;
  --radius: 14px;
  --radius-sm: 8px;
  --trans: 0.25s ease;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-pink);
  text-decoration: none;
  transition: color var(--trans);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

a:hover {
  color: #ff85e3;
}

ul,
ol {
  list-style: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.xr7k2a {
  display: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.box {
  border-radius: var(--radius);
}

.site-header {
  background: var(--clr-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--clr-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.header-nav a {
  color: var(--clr-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.06);
}

.header-nav a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.online-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--clr-muted);
  font-weight: 600;
  background: rgba(0, 230, 118, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 230, 118, 0.25);
}

.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-green);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.lang-drop {
  position: relative;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--trans);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--clr-nav);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px;
  min-width: 130px;
  display: none;
  z-index: 200;
  box-shadow: var(--shadow);
}

.lang-menu.open {
  display: block;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--clr-text);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  transition: background var(--trans);
}

.lang-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--trans);
  background: none;
  border: none;
}

.burger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--trans);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-nav-alt);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--clr-text);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--trans);
  border-bottom: 1px solid var(--clr-border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
}

.btn-demo {
  background: var(--clr-pink);
  color: #fff;
}

.btn-demo:hover {
  background: #ff74df;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255, 77, 210, 0.45);
  color: #fff;
}

.btn-play {
  background: var(--clr-green);
  color: #0a1a10;
}

.btn-play:hover {
  background: #33eb8e;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0, 230, 118, 0.45);
  color: #0a1a10;
}

.btn-outline {
  background: transparent;
  color: var(--clr-pink);
  border: 2px solid var(--clr-pink);
}

.btn-outline:hover {
  background: var(--clr-pink);
  color: #fff;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 28px;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}

.btn-pulse {
  animation: btn-anim 2.5s infinite;
}

@keyframes btn-anim {
  0%,
  100% {
    box-shadow: 0 4px 18px rgba(0, 230, 118, 0.35);
  }
  50% {
    box-shadow: 0 4px 32px rgba(0, 230, 118, 0.7);
  }
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d102a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/arban.avif");
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 16, 42, 0.92) 40%,
    rgba(13, 16, 42, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 77, 210, 0.15);
  border: 1px solid rgba(255, 77, 210, 0.4);
  color: var(--clr-pink);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
  color: var(--clr-pink);
}

.hero p {
  font-size: 17px;
  color: var(--clr-muted);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-green);
}

.hero-stat span {
  font-size: 12px;
  color: var(--clr-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--clr-muted);
  font-size: 15px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.section-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-pink),
    var(--clr-green),
    transparent
  );
  border: none;
  margin: 0 auto 40px;
  width: 180px;
  border-radius: 2px;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.toc-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--trans);
}

.toc-item:hover {
  background: var(--clr-card2);
  border-color: var(--clr-pink);
  color: var(--clr-pink);
  transform: translateY(-2px);
}

.toc-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--clr-pink);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pros-col,
.cons-col {
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--clr-border);
}

.pros-col {
  border-top: 3px solid var(--clr-green);
}

.cons-col {
  border-top: 3px solid #ff5252;
}

.col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
}

.pros-col .col-head {
  color: var(--clr-green);
}

.cons-col .col-head {
  color: #ff5252;
}

.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 14px;
  line-height: 1.55;
  color: var(--clr-text);
}

.pros-list li:last-child,
.cons-list li:last-child {
  border-bottom: none;
}

.pros-list li::before {
  content: "✓";
  color: var(--clr-green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.cons-list li::before {
  content: "✕";
  color: #ff5252;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.jackpot-card {
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-card);
}

.jackpot-card.gold {
  background: linear-gradient(135deg, #2a1f0a, #1e1809);
  border-color: #f5a623;
}

.jackpot-card.silver {
  background: linear-gradient(135deg, #151a2a, #1c2038);
  border-color: #9fa8da;
}

.jackpot-card.bronze {
  background: linear-gradient(135deg, #1a120a, #16100a);
  border-color: #cd7f32;
}

.jackpot-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  opacity: 0.7;
}

.jackpot-card.gold .jackpot-tier {
  color: #f5a623;
}

.jackpot-card.silver .jackpot-tier {
  color: #9fa8da;
}

.jackpot-card.bronze .jackpot-tier {
  color: #cd7f32;
}

.jackpot-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.jackpot-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.jackpot-amount {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.jackpot-card.gold .jackpot-amount {
  color: #f5a623;
  text-shadow: 0 0 20px rgba(245, 166, 35, 0.5);
}

.jackpot-card.silver .jackpot-amount {
  color: #b0bec5;
}

.jackpot-card.bronze .jackpot-amount {
  color: #cd7f32;
}

.jackpot-winners {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jackpot-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
}

.jackpot-winner .nick {
  color: var(--clr-text);
  font-weight: 600;
}

.jackpot-winner .win-amt {
  font-weight: 700;
}

.jackpot-card.gold .jackpot-winner .win-amt {
  color: #f5a623;
}

.jackpot-card.silver .jackpot-winner .win-amt {
  color: #b0bec5;
}

.jackpot-card.bronze .jackpot-winner .win-amt {
  color: #cd7f32;
}

.demo-wrap {
  background: var(--clr-card);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}

.demo-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.demo-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--clr-nav);
  gap: 12px;
  flex-wrap: wrap;
}

.demo-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--clr-muted);
}

.demo-info strong {
  color: var(--clr-text);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 0 auto;
}

.info-table tr {
  border-bottom: 1px solid var(--clr-border);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table td {
  padding: 11px 14px;
  text-align: left;
  vertical-align: top;
}

.info-table td:first-child {
  color: var(--clr-muted);
  font-weight: 600;
  width: 42%;
  white-space: nowrap;
}

.info-table td:last-child {
  color: var(--clr-text);
  font-weight: 500;
}

.info-table-wrap {
  background: var(--clr-card);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  overflow-x: auto;
}

.casino-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.casino-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--trans);
}

.casino-card:hover {
  border-color: var(--clr-pink);
  transform: translateY(-2px);
}

.casino-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--clr-muted);
  min-width: 28px;
  text-align: center;
}

.casino-logo {
  width: 90px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  flex-shrink: 0;
}

.casino-info {
  flex: 1;
  min-width: 0;
}

.casino-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.casino-bonus {
  color: var(--clr-green);
  font-size: 14px;
  font-weight: 600;
}

.casino-features {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.casino-tag {
  background: rgba(255, 255, 255, 0.07);
  color: var(--clr-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.casino-rating .score {
  font-size: 22px;
  font-weight: 900;
  color: var(--clr-green);
}

.stars {
  color: #ffc107;
  font-size: 13px;
}

.casino-cta {
  flex-shrink: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--trans);
}

.faq-item.open {
  border-color: rgba(255, 77, 210, 0.4);
}

.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--clr-text);
  user-select: none;
  gap: 12px;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--clr-pink);
  transition: transform var(--trans);
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 20px 16px;
  color: var(--clr-muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.review-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-pink), var(--clr-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.review-date {
  font-size: 12px;
  color: var(--clr-muted);
}

.review-stars {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 10px;
}

.review-text {
  color: var(--clr-muted);
  font-size: 14px;
  line-height: 1.65;
}

.author-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-pink);
  flex-shrink: 0;
  background: linear-gradient(135deg, #2a1040, #0d102a);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.author-title {
  color: var(--clr-pink);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-bio {
  color: var(--clr-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.author-social {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--clr-text);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--clr-border);
  transition: all var(--trans);
}

.author-social:hover {
  background: var(--clr-pink);
  border-color: var(--clr-pink);
  color: #fff;
}

.author-social svg {
  width: 16px;
  height: 16px;
}

.content-body {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 24px 0 12px;
  line-height: 1.3;
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-pink);
  margin: 18px 0 8px;
}

.content-body p {
  color: var(--clr-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-body ul,
.content-body ol {
  margin: 10px 0 16px 20px;
  color: var(--clr-muted);
  font-size: 15px;
  line-height: 1.7;
}

.content-body ul {
  list-style: disc;
}

.content-body ol {
  list-style: decimal;
}

.content-body li {
  margin-bottom: 6px;
}

.content-body a {
  color: var(--clr-pink);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.content-body a:hover {
  color: #ff85e3;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}

.content-body table th {
  background: var(--clr-nav);
  color: var(--clr-text);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-weight: 700;
}

.content-body table td {
  padding: 9px 14px;
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
}

.content-body table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.content-body blockquote {
  border-left: 3px solid var(--clr-pink);
  padding: 12px 16px;
  background: rgba(255, 77, 210, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 14px 0;
  color: var(--clr-muted);
  font-style: italic;
}

.content-body strong {
  color: var(--clr-text);
  font-weight: 700;
}

.site-footer {
  background: var(--clr-nav);
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
  padding: 40px 0 20px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}

.footer-desc {
  color: var(--clr-muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--clr-muted);
  font-size: 13px;
  transition: color var(--trans);
}

.footer-links a:hover {
  color: var(--clr-pink);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-muted);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.trust-badge {
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-green);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  color: var(--clr-muted);
  font-size: 12px;
  line-height: 1.6;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-muted);
  font-size: 12px;
}

.footer-provider img {
  height: 24px;
  width: auto;
  opacity: 0.7;
}

.footer-18 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ff5252;
  color: #ff5252;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

.age-warning {
  color: #ff5252;
  font-size: 12px;
  font-weight: 600;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(135deg, var(--clr-nav) 0%, #1b1f3b 100%);
  border-top: 2px solid var(--clr-green);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
}

.widget-text {
  flex: 1;
  min-width: 200px;
}

.widget-text strong {
  color: var(--clr-green);
  font-size: 15px;
  font-weight: 800;
  display: block;
  line-height: 1.3;
}

.widget-text span {
  color: var(--clr-muted);
  font-size: 12px;
}

.widget-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans);
}

.widget-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.pb-widget {
  padding-bottom: 72px;
}

.tech-content {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
}

.tech-content h2 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 22px 0 10px;
}

.tech-content h2:first-child {
  margin-top: 0;
}

.tech-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-pink);
  margin: 16px 0 8px;
}

.tech-content p {
  color: var(--clr-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.tech-content ul,
.tech-content ol {
  margin: 8px 0 14px 20px;
  color: var(--clr-muted);
  font-size: 15px;
  line-height: 1.7;
}

.tech-content ul {
  list-style: disc;
}

.tech-content ol {
  list-style: decimal;
}

.tech-content li {
  margin-bottom: 5px;
}

.tech-content strong {
  color: var(--clr-text);
  font-weight: 700;
}

.tech-content a {
  color: var(--clr-pink);
}

.page-title {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  padding: 40px 0 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: all var(--trans);
}

.feature-card:hover {
  border-color: var(--clr-pink);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 13px;
  color: var(--clr-muted);
  line-height: 1.6;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  font-size: 13px;
  color: var(--clr-muted);
}

.breadcrumbs a {
  color: var(--clr-muted);
  transition: color var(--trans);
}

.breadcrumbs a:hover {
  color: var(--clr-pink);
}

.breadcrumbs span {
  color: var(--clr-pink);
}

#wpadminbar {
  display: none !important;
}

.wp-block-group,
.wp-block-columns,
.wp-site-blocks {
  display: block;
}

.entry-content,
.post-content,
.single-post {
  display: block;
}

.elementor-widget-container {
  display: block;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-nav);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2d3368;
}

@media (max-width: 1024px) {
  .jackpots-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero {
    min-height: 420px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .jackpots-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-socials {
    justify-content: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .casino-card {
    flex-wrap: wrap;
  }
  .sticky-widget {
    padding: 10px 16px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .demo-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-body {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .toc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-btns {
    flex-direction: column;
  }
  .header-actions .online-badge {
    display: none;
  }
  .header-actions .btn-demo {
    display: none;
  }
}

.wp-content-loader {
  display: none;
  visibility: hidden;
}

.nf-x9q2 {
  opacity: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .content-body {
    padding: 20px 16px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
