*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #0a0a0a;
  --c-header: #111111;
  --c-gold: #ffd700;
  --c-red: #ff1744;
  --c-text: #e8e8e8;
  --c-muted: #9e9e9e;
  --c-border: #2a2a2a;
  --c-card: #161616;
  --c-card2: #1c1c1c;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  color: var(--c-gold);
  text-decoration: none;
}
a:hover {
  opacity: 0.85;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}
p {
  margin-bottom: 1rem;
  color: var(--c-text);
}
ul,
ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 0.4rem;
}

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

.xk7q2 {
  display: none;
}
.wp-content-preloader {
  display: none;
  visibility: hidden;
}
.elementor-hidden {
  display: none !important;
}

.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #1e1e1e;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  color: var(--c-text);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-nav a:hover {
  color: var(--c-gold);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.online-count {
  font-size: 0.75rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active {
  transform: scale(0.97);
}
.btn-demo {
  background: var(--c-gold);
  color: #111;
  letter-spacing: 0.3px;
}
.btn-demo:hover {
  background: #ffe033;
  opacity: 1;
}
.btn-money {
  background: var(--c-red);
  color: #fff;
}
.btn-money:hover {
  background: #ff3d5e;
  opacity: 1;
}
.btn-reg {
  background: var(--c-red);
  color: #fff;
}
.btn-play-big {
  background: var(--c-gold);
  color: #111;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 10px;
}
.lang-select {
  position: relative;
}
.lang-btn {
  background: transparent;
  border: 1px solid #333;
  color: var(--c-text);
  border-radius: 7px;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-family: inherit;
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  min-width: 130px;
  z-index: 200;
  overflow: hidden;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--c-text);
  font-size: 0.82rem;
  transition: background 0.15s;
}
.lang-dropdown a:hover {
  background: #252525;
}
.lang-select:hover .lang-dropdown,
.lang-select:focus-within .lang-dropdown {
  display: block;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 5px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.25s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Content area styles - НОВИЙ БЛОК */
.content-area {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
}

.content-area article {
  width: 100%;
  min-width: 0;
}

.entry-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.entry-content * {
  max-width: 100%;
  word-wrap: break-word;
}

.entry-content img,
.entry-content iframe,
.entry-content video {
  max-width: 100% !important;
  height: auto !important;
}

.entry-content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0d0d;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/banditban.avif") center/cover no-repeat;
  opacity: 0.45;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(255, 215, 0, 0.07) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 16px;
}
.hero-tag {
  display: inline-block;
  background: var(--c-gold);
  color: #111;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.hero h1 {
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.hero-desc {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 8px;
  padding: 10px 18px;
}
.hero-meta-item span:first-child {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-gold);
}
.hero-meta-item span:last-child {
  font-size: 0.72rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section {
  padding: 60px 0;
}
.section-title {
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--c-gold);
  border-radius: 2px;
  margin-top: 10px;
}
.section-subtitle {
  color: var(--c-muted);
  font-size: 0.9rem;
  margin-top: 6px;
  font-weight: 400;
}

.toc-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
}
.toc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  color: var(--c-text);
  font-size: 0.85rem;
  font-weight: 500;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.toc-link svg {
  width: 18px;
  height: 18px;
  color: var(--c-gold);
  flex-shrink: 0;
}
.toc-link:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.casino-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.casino-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: stretch;
  gap: 18px;
  position: relative;
  transition:
    border-color 0.2s,
    transform 0.15s;
}
.casino-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}
.casino-card.top3 {
  border-color: rgba(255, 215, 0, 0.22);
  background: linear-gradient(135deg, #161616 0%, #1a1800 100%);
}
.casino-card.top1 {
  border-color: rgba(255, 215, 0, 0.45);
}
.casino-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-gold);
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-card.top1 .casino-num {
  font-size: 1.8rem;
}
.casino-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: #0e0e0e;
  border: 1px solid #222;
  flex-shrink: 0;
  align-self: center;
}
.casino-body {
  flex: 1;
  min-width: 0;
}
.casino-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.casino-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.casino-flag {
  font-size: 1.1rem;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.casino-stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.casino-rating-num {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-gold);
}
.casino-bonus {
  background: rgba(255, 23, 68, 0.12);
  border: 1px solid rgba(255, 23, 68, 0.25);
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ff6688;
  margin-bottom: 10px;
  display: inline-block;
}
.casino-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.casino-feat {
  background: #1e1e1e;
  border: 1px solid #2c2c2c;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--c-muted);
}
.casino-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.casino-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-providers {
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.casino-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-casino-go {
  background: var(--c-red);
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-casino-go:hover {
  opacity: 0.87;
}
.btn-casino-review {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-casino-review:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.casino-badge-top {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--c-gold);
  color: #111;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.load-more-wrap {
  text-align: center;
  margin-top: 20px;
}
.btn-load-more {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: 11px 28px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
  font-family: inherit;
}
.btn-load-more:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.loader-ring {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #333;
  border-top-color: var(--c-gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-left: 8px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
}
.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.88rem;
}
.info-table th {
  background: #1a1a1a;
  color: var(--c-gold);
  font-weight: 700;
  white-space: nowrap;
  width: 45%;
}
.info-table td {
  color: var(--c-text);
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}
.info-table tr:hover td,
.info-table tr:hover th {
  background: rgba(255, 215, 0, 0.04);
}

.app-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.app-info {
  flex: 1;
  min-width: 260px;
}
.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.btn-store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  min-width: 180px;
}
.btn-store:hover {
  border-color: var(--c-gold);
  background: #1f1f00;
}
.btn-store svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--c-gold);
}
.btn-store-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--c-muted);
}

.demo-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.demo-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
  gap: 10px;
}
.demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--c-border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700 0%, #ff6600 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #111;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.review-stars {
  color: var(--c-gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.review-text {
  color: var(--c-text);
  font-size: 0.88rem;
  line-height: 1.6;
}
.review-form-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 560px;
}
.review-form-block h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  color: var(--c-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.form-input,
.form-textarea {
  width: 100%;
  background: #111;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 11px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--c-gold);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
}
.form-success {
  display: none;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.35);
  border-radius: 8px;
  padding: 14px 18px;
  color: #81c784;
  font-size: 0.9rem;
  margin-top: 14px;
}

.author-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700 0%, #ff8800 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #111;
  flex-shrink: 0;
}
.author-info {
  flex: 1;
  min-width: 0;
}
.author-name {
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 3px;
}
.author-role {
  font-size: 0.8rem;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.author-bio {
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.55;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--c-gold);
  margin-top: 6px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 16px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--c-gold);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--c-gold);
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  display: none;
  padding: 0 20px 16px;
  color: var(--c-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  display: block;
}

.site-footer {
  background: var(--c-header);
  border-top: 1px solid #1e1e1e;
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: var(--c-muted);
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--c-gold);
}
.footer-logo img {
  height: 40px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--c-muted);
  line-height: 1.6;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.pay-badge {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: var(--c-muted);
  font-weight: 600;
}
.footer-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  align-items: center;
}
.trust-badge {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.7rem;
  color: var(--c-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
}
.footer-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #555;
}
.footer-provider img {
  height: 22px;
  opacity: 0.5;
  filter: grayscale(1);
}
.age-badge {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #666;
}

.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, #1a0a00 0%, var(--c-header) 100%);
  border-top: 2px solid var(--c-gold);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.widget-text {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}
.widget-text strong {
  color: var(--c-gold);
}
.btn-widget {
  background: var(--c-red);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: widgetPulse 2.5s infinite;
}
@keyframes widgetPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.35);
  }
  60% {
    box-shadow: 0 0 0 8px rgba(255, 23, 68, 0);
  }
}
.widget-close {
  background: transparent;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  line-height: 1;
  margin-left: 6px;
  font-family: inherit;
}
.widget-close:hover {
  color: #888;
}

.procon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.procon-box {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.procon-box h4 {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.procon-box.pros h4 {
  color: #66bb6a;
}
.procon-box.cons h4 {
  color: #ef5350;
}
.procon-list {
  list-style: none;
  padding: 0;
}
.procon-list li {
  padding: 6px 0;
  font-size: 0.87rem;
  color: var(--c-text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.procon-list li::before {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.75rem;
}
.procon-box.pros .procon-list li::before {
  content: "✓";
  color: #66bb6a;
  font-weight: 900;
}
.procon-box.cons .procon-list li::before {
  content: "✕";
  color: #ef5350;
  font-weight: 900;
}

.content-review h2 {
  font-size: 1.45rem;
  margin: 28px 0 12px;
  color: #fff;
  border-left: 3px solid var(--c-gold);
  padding-left: 12px;
}
.content-review h3 {
  font-size: 1.15rem;
  margin: 22px 0 10px;
  color: var(--c-gold);
}
.content-review p {
  margin-bottom: 1rem;
  color: var(--c-text);
  line-height: 1.75;
}
.content-review ul,
.content-review ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.content-review li {
  margin-bottom: 0.5rem;
  color: var(--c-text);
}
.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  border: 1px solid var(--c-border);
}
.content-review th,
.content-review td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
  font-size: 0.87rem;
}
.content-review th {
  background: #1a1a1a;
  color: var(--c-gold);
  font-weight: 700;
}
.content-review td {
  color: var(--c-text);
}
.content-review a {
  color: var(--c-gold);
}
.content-review strong {
  color: #fff;
  font-weight: 700;
}
.content-review em {
  color: var(--c-muted);
}
.content-review blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 12px 20px;
  background: rgba(255, 215, 0, 0.05);
  margin: 18px 0;
  color: var(--c-muted);
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

.tech-content h2 {
  font-size: 1.35rem;
  margin: 24px 0 12px;
  color: var(--c-gold);
}
.tech-content h3 {
  font-size: 1.05rem;
  margin: 18px 0 9px;
  color: #fff;
}
.tech-content p {
  color: var(--c-text);
  margin-bottom: 0.9rem;
}
.tech-content ul,
.tech-content ol {
  padding-left: 1.3rem;
  margin-bottom: 1rem;
}
.tech-content li {
  color: var(--c-text);
  margin-bottom: 0.4rem;
}

/* MEDIA QUERIES */
@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1000;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    font-size: 1.1rem;
  }

  .header-right .btn-demo,
  .header-right .btn-money {
    display: none;
  }

  .burger {
    display: flex;
    z-index: 1010;
    position: relative;
  }

  .content-area {
    padding: 20px 16px;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: var(--radius);
    border-left: none;
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .procon-grid {
    grid-template-columns: 1fr;
  }
  .casino-card {
    flex-wrap: wrap;
  }
  .casino-logo {
    width: 60px;
    height: 45px;
  }
}

@media (max-width: 600px) {
  .content-area {
    padding: 16px 12px;
  }

  .content-review h2 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
  }

  .content-review h3 {
    font-size: 1rem;
    margin: 16px 0 8px;
  }

  .content-review p {
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    gap: 10px;
  }
  .hero-meta-item {
    padding: 8px 12px;
  }
  .app-block {
    flex-direction: column;
  }
  .app-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.wp-block-group {
  display: block;
}
.wpcf7 {
  display: none;
}
.elementor-widget-container {
  display: block;
}
#wpsl-wrap {
  display: none;
}
.yoast-schema-graph {
  display: none;
}
#query-monitor-main {
  display: none;
}
