:root {
  --color-header: #cb1213;
  --color-btn-yellow: #e7c800;
  --color-btn-green: #6ff800;
  --color-bg: #650664;
  --color-bg-dark: #4a0449;
  --color-bg-card: rgba(255, 255, 255, 0.06);
  --color-border: rgba(255, 255, 255, 0.12);
  --color-text: #f0e8ff;
  --color-text-muted: #c9b8e8;
  --color-accent: #ff6b35;
  --color-gold: #e7c800;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --transition: 0.25s ease;
  --font-heading: "Oswald", "Montserrat", sans-serif;
  --font-body: "Roboto", "Poppins", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

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

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

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

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: #fff;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
}

p {
  margin-bottom: 0.85em;
}

p:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn--yellow {
  background: var(--color-btn-yellow);
  color: #1a0a00;
}

.btn--green {
  background: var(--color-btn-green);
  color: #0a1a00;
}

.btn--red {
  background: var(--color-header);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.x9a2b {
  display: none;
}

.wp-placeholder-data {
  visibility: hidden;
  position: absolute;
  height: 0;
  overflow: hidden;
}

.site-header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.site-header .container {
  padding-top: 0;
  padding-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  flex-wrap: wrap;
  padding: 8px 0;
}

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

.header-logo img {
  height: 64px;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.03em;
}

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  text-decoration: none;
}

.header-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
}

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

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

.header-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-btn-green);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.lang-select {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.8rem;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 6px 10px;
  transition: background var(--transition);
}

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

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #2d0a2c;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  min-width: 140px;
  box-shadow: var(--shadow);
  z-index: 10;
}

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

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--color-text);
  font-size: 0.82rem;
  transition: background var(--transition);
  text-decoration: none;
}

.lang-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.flag {
  font-size: 1.1em;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

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

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #a00e0f;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #4a0449 0%, #650664 50%, #3d0040 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/sizban.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(40, 0, 40, 0.85) 40%,
    rgba(40, 0, 40, 0.2) 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(231, 200, 0, 0.15);
  border: 1px solid rgba(231, 200, 0, 0.4);
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.15;
}

.hero-title span {
  color: var(--color-gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.hero-stats {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
}

.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs-section {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.2);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

.breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs .current {
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 56px 0;
}

.section--sm {
  padding: 32px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  margin-bottom: 8px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(231, 200, 0, 0.1);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.toc-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.toc-block h3 {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--color-gold);
}

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

.toc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  transition:
    background var(--transition),
    color var(--transition);
  text-decoration: none;
}

.toc-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.toc-item:hover {
  background: rgba(231, 200, 0, 0.1);
  color: #fff;
  text-decoration: none;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(231, 200, 0, 0.3);
}

.casino-card--top1 {
  border-color: #e7c800;
  background: rgba(231, 200, 0, 0.07);
}

.casino-card--top2 {
  border-color: rgba(192, 192, 192, 0.5);
  background: rgba(192, 192, 192, 0.05);
}

.casino-card--top3 {
  border-color: rgba(205, 127, 50, 0.5);
  background: rgba(205, 127, 50, 0.05);
}

.casino-rank {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-header);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-bottom-right-radius: var(--radius-sm);
}

.casino-card--top1 .casino-rank {
  background: #e7c800;
  color: #1a0a00;
}

.casino-card--top2 .casino-rank {
  background: #a0a0a0;
  color: #111;
}

.casino-card--top3 .casino-rank {
  background: #b87333;
  color: #111;
}

.casino-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.casino-logo img {
  width: 80px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 4px;
}

.casino-country {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.casino-country .flag {
  font-size: 1rem;
}

.casino-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.casino-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.casino-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(231, 200, 0, 0.15);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
}

.casino-bonus {
  font-size: 0.92rem;
  color: var(--color-btn-green);
  font-weight: 600;
}

.casino-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.casino-feat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.casino-feat svg {
  width: 12px;
  height: 12px;
}

.casino-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.casino-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  min-width: 120px;
}

.casino-actions .btn {
  font-size: 0.78rem;
  padding: 9px 16px;
  width: 100%;
  justify-content: center;
}

.load-more-wrap {
  text-align: center;
  margin-top: 24px;
}

.casino-hidden {
  display: none;
}

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

.screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid var(--color-border);
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.screenshot-item:hover {
  border-color: var(--color-gold);
  transform: scale(1.02);
}

.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.screenshot-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  padding: 16px 12px 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.slider-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

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

.strategy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

.strategy-img {
  height: 160px;
  background: linear-gradient(135deg, #3d0040 0%, #650664 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.strategy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.strategy-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(231, 200, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategy-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold);
}

.strategy-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.strategy-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}

.strategy-desc {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition);
}

.review-card:hover {
  border-color: rgba(231, 200, 0, 0.35);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-header);
  flex-shrink: 0;
  background: #440044;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
}

.review-date {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
}

.stars svg {
  width: 16px;
  height: 16px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.review-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  max-width: 560px;
}

.review-form h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-success {
  display: none;
  background: rgba(111, 248, 0, 0.1);
  border: 1px solid rgba(111, 248, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--color-btn-green);
  font-size: 0.9rem;
  margin-top: 14px;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 48px;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-gold);
  flex-shrink: 0;
  background: linear-gradient(135deg, #650664, #cb1213);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.author-bio {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-gold);
  font-size: 0.82rem;
  margin-top: 8px;
}

.author-link:hover {
  text-decoration: underline;
}

.content-area {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 40px;
}

.content-area h2 {
  margin-bottom: 14px;
  color: #fff;
}

.content-area h3 {
  margin-bottom: 10px;
  color: #f5e6ff;
}

.content-area p {
  color: var(--color-text-muted);
  margin-bottom: 1em;
  line-height: 1.7;
}

.content-area ul,
.content-area ol {
  margin: 1em 0 1em 1.4em;
  color: var(--color-text-muted);
}

.content-area li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}

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

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

.content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.88rem;
}

.content-area th {
  background: rgba(203, 18, 19, 0.3);
  color: #fff;
  font-family: var(--font-heading);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--color-border);
}

.content-area td {
  padding: 9px 14px;
  text-align: left;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.content-area tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

.content-area a {
  color: var(--color-gold);
}

.content-area a:hover {
  text-decoration: underline;
}

.game-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.88rem;
}

.game-info-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}

.game-info-table td {
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  vertical-align: top;
}

.game-info-table td:first-child {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  width: 40%;
}

.game-info-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  overflow-x: auto;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  user-select: none;
  gap: 12px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  transition: transform var(--transition);
}

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

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

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

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

.pros-block,
.cons-block {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--color-border);
}

.pros-block {
  border-top: 3px solid var(--color-btn-green);
}

.cons-block {
  border-top: 3px solid var(--color-header);
}

.pros-block h4,
.cons-block h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  font-family: var(--font-heading);
}

.pros-block h4 {
  color: var(--color-btn-green);
}

.cons-block h4 {
  color: #ff6b6b;
}

.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.87rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pros-list svg {
  color: var(--color-btn-green);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.cons-list svg {
  color: #ff6b6b;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.site-footer {
  background: var(--color-header);
  margin-top: auto;
  padding: 48px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-payments {
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

.trust-badge svg {
  width: 14px;
  height: 14px;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-provider span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-provider img {
  height: 28px;
  width: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(135deg, #4a0449 0%, #cb1213 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform var(--transition);
}

.sticky-widget.hidden {
  transform: translateY(100%);
}

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

.widget-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.widget-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.widget-btn-group {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.widget-close:hover {
  color: #fff;
}

.widget-close svg {
  width: 18px;
  height: 18px;
}

.game-demo-wrapper {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
}

.game-demo-poster {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3d0040 0%, #650664 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.game-demo-poster img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.game-demo-poster h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.4rem;
}

.game-demo-poster p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.game-demo-buttons {
  display: flex;
  gap: 12px;
}

.technical-content h2 {
  margin: 28px 0 12px;
  font-size: 1.3rem;
}

.technical-content h3 {
  margin: 20px 0 8px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.technical-content p {
  color: var(--color-text-muted);
  margin-bottom: 1em;
  line-height: 1.7;
}

.technical-content ul,
.technical-content ol {
  margin: 0.8em 0 0.8em 1.4em;
  color: var(--color-text-muted);
}

.technical-content li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}

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

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

.technical-content a {
  color: var(--color-gold);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

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

.advantage-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition);
}

.advantage-item:hover {
  transform: translateY(-3px);
}

.advantage-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(231, 200, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
}

.advantage-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

.advantage-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

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

.text-gold {
  color: var(--color-gold);
}

.text-green {
  color: var(--color-btn-green);
}

.text-muted {
  color: var(--color-text-muted);
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 32px 0;
}

.section-divider {
  height: 60px;
  overflow: hidden;
  position: relative;
}

.section-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

.wp-content-placeholder {
  display: none !important;
}

#wpadminbar {
  display: none !important;
}

.elementor-invisible {
  visibility: hidden;
  position: absolute;
  height: 0;
  overflow: hidden;
}

.yoast-seo-data {
  display: none;
}

.wpcf7-hidden {
  display: none;
}

.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 997;
  background: var(--color-header);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    transform var(--transition);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: #a00e0f;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.demo-section-zx9k4m7p {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgba(74, 4, 73, 0.4) 0%,
    rgba(101, 6, 100, 0.6) 100%
  );
}

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

.section-title-qz9m3k7p {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.demo-wrapper-lv8k3m2p {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.demo-description-mx7k9p4t {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.demo-iframe-container-nz5k2m8p {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: linear-gradient(145deg, #2d1b5e 0%, #3e2875 100%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

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

.demo-overlay-px2k8m5t {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 16px;
}

.demo-px2k8m5t {
  margin-top: 24px;
}

.btn-demo-play-kz9m3p7x {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-btn-yellow);
  color: #1a0a00;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.btn-demo-play-kz9m3p7x:hover {
  background: #ffe092;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.fixed-widget-bottom-zx9k4m2p {
  pointer-events: none;
}

.fixed-widget-bottom-zx9k4m2p * {
  pointer-events: auto;
}

.demo-iframe-container-nz5k2m8p {
  touch-action: manipulation;
}

.demo-iframe-qx7k4m9p {
  pointer-events: auto;
  touch-action: manipulation;
}

.demo-overlay-px2k8m5t {
  pointer-events: none;
}

.demo-px2k8m5t {
  pointer-events: auto;
  position: relative;
  z-index: 5;
}

@media (max-width: 1024px) {
  .casino-card {
    grid-template-columns: 80px 1fr;
  }

  .casino-actions {
    flex-direction: row;
    align-items: center;
    grid-column: 1 / -1;
  }

  .casino-actions .btn {
    width: auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .section-title-qz9m3k7p {
    font-size: 1.8rem;
  }

  .demo-description-mx7k9p4t {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .hero-section {
    min-height: 380px;
  }

  .hero-content {
    padding: 40px 0;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .slider-dots {
    display: flex;
  }

  .screenshot-item {
    display: none;
  }

  .screenshot-item.active {
    display: block;
  }

  .strategies-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .casino-card {
    grid-template-columns: 70px 1fr;
    gap: 14px;
  }

  .casino-card .casino-actions {
    flex-direction: row;
    grid-column: 1 / -1;
  }

  .sticky-widget {
    padding: 10px 14px;
  }

  .toc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .author-block {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .demo-section-zx9k4m7p {
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow-x: hidden;
  }

  .demo-section-zx9k4m7p > .container-fluid.vh8p3k1x {
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: 18px 12px 20px;
    box-sizing: border-box;
  }

  .section-title-qz9m3k7p {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 4px;
  }

  .demo-wrapper-lv8k3m2p {
    flex: 1;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
  }

  .demo-description-mx7k9p4t {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    margin-bottom: 18px;
    padding: 0 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .demo-iframe-container-nz5k2m8p {
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
    min-height: 0;
    border-radius: 12px;
    position: relative;
  }

  .demo-px2k8m5t {
    margin-top: 16px;
    padding: 0 4px;
    width: 100%;
    box-sizing: border-box;
  }

  .btn-demo-play-kz9m3p7x {
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: clamp(1rem, 4vw, 1.1rem);
  }

  .container,
  .container-fluid {
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  span,
  div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .header-right .btn--outline {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .toc-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .casino-meta {
    display: none;
  }

  .widget-text span {
    display: none;
  }

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

  .demo-section-zx9k4m7p > .container-fluid.vh8p3k1x {
    padding: 14px 10px 16px;
  }

  .section-title-qz9m3k7p {
    font-size: 1.2rem;
  }

  .demo-description-mx7k9p4t {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .demo-iframe-container-nz5k2m8p {
    border-radius: 10px;
  }

  .btn-demo-play-kz9m3p7x {
    padding: 12px 16px;
    font-size: 1rem;
  }
}
.game-demo-wrapper {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
}

.game-demo-poster {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3d0040 0%, #650664 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 20px;
}

.game-demo-poster img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.game-demo-poster h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  margin: 0;
}

.game-demo-poster p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}

.game-demo-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .game-demo-wrapper {
    aspect-ratio: auto;
    min-height: 480px;
  }

  .game-demo-poster {
    gap: 14px;
    padding: 24px 16px;
  }

  .game-demo-poster img {
    width: 100px;
    height: 100px;
  }

  .game-demo-poster h3 {
    font-size: 1.5rem;
  }

  .game-demo-poster p {
    font-size: 0.88rem;
  }

  .game-demo-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 10px;
  }

  .game-demo-buttons .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .game-demo-wrapper {
    min-height: 420px;
    border-radius: var(--radius-sm);
  }

  .game-demo-poster {
    gap: 12px;
    padding: 20px 12px;
  }

  .game-demo-poster img {
    width: 80px;
    height: 80px;
  }

  .game-demo-poster h3 {
    font-size: 1.3rem;
  }

  .game-demo-poster p {
    font-size: 0.82rem;
    padding: 0 8px;
  }

  .game-demo-buttons {
    max-width: 280px;
  }

  .game-demo-buttons .btn {
    padding: 11px 20px;
    font-size: 0.9rem;
  }
}
