
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  margin: 0;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul,
ol {
  list-style: none;
}


:root {
  --bg: #0e0c09;
  --bg-card: #171410;
  --bg-card-2: #1f1b14;
  --accent: #c9973a;
  --accent-h: #e5b04a;
  --accent-bg: rgba(201, 151, 58, 0.14);
  --green: #10b981;
  --green-bg: rgba(16, 185, 129, 0.12);
  --orange: #f59e0b;
  --orange-bg: rgba(245, 158, 11, 0.12);
  --text: #f0e6d3;
  --muted: #9e8e75;
  --border: rgba(201, 151, 58, 0.12);
  --r: 10px;
  --r-sm: 6px;
  --container: 1200px;
}


body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-h);
}
.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-bg);
}
.btn-success {
  background: var(--green);
  color: #fff;
}
.btn-success:hover {
  opacity: 0.9;
}
.btn-outline-primary {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-primary:hover {
  background: var(--accent-bg);
}
.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}
.btn-casino {
  display: block;
  background: var(--accent);
  color: #fff;
  width: 100%;
  padding: 10px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
  border: none;
}
.btn-casino:hover {
  background: var(--accent-h);
}


.header-container {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0e0c09;
  border-bottom: 1px solid var(--border);
}
.header__container {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
  justify-content: space-between;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text-top {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
}
.logo-text-bottom {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo-link .logo-text-top { font-size: 14px; }
.footer-logo-link .logo-text-bottom { font-size: 10px; }

.primary_menu_desktop_ver {
  flex: 1;
  overflow: hidden;
}
.primary_menu_desktop_ver ul {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
}
.primary_menu_desktop_ver ul li a {
  display: block;
  padding: 6px 11px;
  font-size: 13px;
  color: var(--muted);
  border-radius: var(--r-sm);
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.primary_menu_desktop_ver ul li a:hover,
.primary_menu_desktop_ver ul li.current-menu-item a {
  color: var(--text);
  background: var(--bg-card);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-btns {
  display: flex;
  gap: 8px;
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}


.toc_navigation {
  background: #0a0804;
  border-top: 1px solid var(--border);
  padding: 8px 0;
  overflow-x: auto;
}
.toc_navigation .container {
  display: flex;
  align-items: center;
  gap: 14px;
}
.toc_navigation .min-title {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.toc_navigation .items {
  display: flex;
  gap: 4px;
}
.toc_navigation .item a {
  display: block;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--muted);
  border-radius: 4px;
  white-space: nowrap;
  transition: 0.2s;
}
.toc_navigation .item a:hover {
  color: var(--text);
  background: var(--bg-card);
}
.progress-container {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  min-width: 40px;
}
.progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  width: 0;
  transition: width 0.1s;
}


.offcanvas {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-card);
  z-index: 200;
  transition: right 0.3s;
  overflow-y: auto;
  border-left: 1px solid var(--border);
}
.offcanvas.is-open {
  right: 0;
}
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.menu-close-btn {
  font-size: 26px;
  color: var(--muted);
  line-height: 1;
}
.menu-close-btn:hover {
  color: var(--text);
}
.offcanvas-body {
  padding: 20px;
}
.menu-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.mobile-nav li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav li a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  font-size: 14px;
}
.mobile-nav li a:hover {
  color: var(--text);
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 190;
}
.overlay.is-open {
  display: block;
}


.main-content {
  padding: 28px 0 64px;
}


.breadcrumb {
  margin-bottom: 22px;
}
.breadcrumb * li {
  font-size: 16px;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb ol li + li::before {
  content: "›";
  color: rgb(255 255 255);
  margin-right: 6px;
}
.breadcrumb ol li a:hover {
  color: var(--text);
}
.breadcrumb ol li[aria-current="page"] {
  color: var(--text);
}


.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.subsection-title {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 14px;
}


.hero-section {
  margin-bottom: 16px;
}
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.game-title {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.game-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 11px;
  background: var(--accent-bg);
  color: var(--accent-h);
  border-radius: 20px;
  border: 1px solid var(--accent);
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.game-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--r) var(--r) 0 0;
  overflow: hidden;
  background: #0e0c09;
  border: 1px solid var(--border);
}
.game-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.provider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  margin-bottom: 0;
}
.provider-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.provider-name-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  background: var(--accent-bg);
  color: var(--accent-h);
  border-radius: 20px;
  border: 1px solid var(--accent);
}
.live-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.issue-link {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s;
}
.issue-link:hover {
  color: var(--text);
  text-decoration: underline;
}


.play-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(90deg, #2a1e08, #4a3210, #2a1e08);
  border: 1px solid rgba(201, 151, 58, 0.35);
  border-radius: var(--r);
  padding: 18px 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.play-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.play-cta-text strong {
  font-size: 16px;
  font-weight: 700;
}
.play-cta-text span {
  font-size: 13px;
  color: var(--muted);
}


.casinos-section {
  margin-bottom: 40px;
}
.casinos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.casino-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
}
.casino-logo {
  height: 80px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-card-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.casino-stars {
  color: var(--orange);
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
}
.casino-bonus {
  text-align: center;
}
.bonus-main {
  font-weight: 700;
  font-size: 16px;
}
.bonus-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.casino-payments {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.pay-tag {
  font-size: 11px;
  padding: 2px 7px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
}
.casino-review-link {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
.casino-review-link a:hover {
  color: var(--accent-h);
}
.casino-pay-img {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.casino-pay-img:hover {
  opacity: 1;
}


.game-info-section {
  margin-bottom: 36px;
}
.game-info-layout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  gap: 32px;
}
.game-info-image {
  flex-shrink: 0;
  align-self: stretch;
}
.game-cover {
  width: 160px;
  height: 100%;
  min-height: 200px;
  border-radius: var(--r-sm);
  overflow: hidden;
}
.game-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-info-table {
  flex: 1;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 5px;
  gap: 10px;
}
.info-row:nth-child(4n + 1),
.info-row:nth-child(4n + 2) {
  background: var(--bg-card-2);
}
.info-label {
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
}
.info-value {
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}
.badge-green {
  color: var(--green);
  background: var(--green-bg);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge-orange {
  color: var(--orange);
  background: var(--orange-bg);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}


.calculator-section {
  margin-bottom: 36px;
}
.calc-header {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r) var(--r) 0 0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.calc-params {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.calc-params strong {
  color: var(--text);
}
.calc-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
}
.calc-table {
  width: 100%;
  min-width: 580px;
  font-size: 13px;
}
.calc-table th {
  background: var(--bg-card-2);
  padding: 10px 14px;
  text-align: left;
  color: var(--muted);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid var(--border);
}
.calc-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.calc-table tbody tr:last-child td {
  border-bottom: none;
}
.calc-table tbody tr:nth-child(odd) td {
  background: var(--bg-card);
}
.calc-table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.15);
}
.calc-table td:first-child {
  font-weight: 600;
}


.rating-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  margin-bottom: 36px;
}
.rating-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}
.rating-chart-col {
  flex-shrink: 0;
  background: #1f1b14;
  border-radius: var(--r);
  padding: 10px;
  line-height: 0;
}
.rating-chart-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 6px;
}
.rating-data-col {
  flex: 1;
  min-width: 0;
}
.rating-overall-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.rating-score-big {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-h);
  letter-spacing: -2px;
}
.rating-stars-row {
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 3px;
  margin-bottom: 5px;
}
.rating-score-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.rating-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rating-cat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cat-name {
  font-size: 13px;
  color: var(--muted);
  min-width: 180px;
  flex-shrink: 0;
}
.cat-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-card-2);
  border-radius: 3px;
  overflow: hidden;
}
.cat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-h));
  border-radius: 3px;
}
.cat-score {
  font-size: 13px;
  font-weight: 600;
  min-width: 36px;
  text-align: right;
}


.reviews-section {
  margin-bottom: 36px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.reviewer-name {
  font-weight: 600;
  font-size: 14px;
}
.review-stars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 1px;
}
.review-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.review-date {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.6;
}


.similar-section {
  margin-bottom: 36px;
}
.similar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.similar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 10px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.similar-card:hover {
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-2px);
}
.similar-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 8px;
  background: #1f1b14;
}
.similar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.similar-thumb::after {
  content: 'PLAY';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: var(--r-sm);
}
.similar-card:hover .similar-thumb img {
  transform: scale(1.06);
}
.similar-card:hover .similar-thumb::after {
  opacity: 1;
}
.similar-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
  line-height: 1.3;
}
.similar-provider {
  font-size: 11px;
  color: var(--muted);
}


.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  margin-bottom: 36px;
}
.content-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.content-block p:last-child {
  margin-bottom: 0;
}
.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4 {
  color: var(--text);
  line-height: 1.3;
  margin-top: 28px;
  margin-bottom: 12px;
}
.content-block h1 { font-size: 1.7rem; margin-top: 0; }
.content-block h2 { font-size: 1.35rem; }
.content-block h3 { font-size: 1.1rem; }
.content-block h4 { font-size: 1rem; }
.content-block ul,
.content-block ol {
  list-style: revert;
  padding-left: 24px;
  margin-bottom: 18px;
  color: var(--muted);
}
.content-block ul { list-style-type: disc; }
.content-block ol { list-style-type: decimal; }
.content-block li {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 6px;
}
.content-block li:last-child { margin-bottom: 0; }
.content-block ul ul,
.content-block ol ol,
.content-block ul ol,
.content-block ol ul {
  margin-top: 6px;
  margin-bottom: 6px;
}
.content-block strong,
.content-block b {
  color: var(--text);
  font-weight: 600;
}
.content-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-block a:hover {
  opacity: 0.8;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
}
.content-block table th,
.content-block table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.content-block table th {
  color: var(--text);
  font-weight: 600;
  background: var(--bg);
}
.content-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.content-text p:last-child {
  margin-bottom: 0;
}
.content-text strong {
  color: var(--text);
}


.biggest-wins-section {
  margin-bottom: 36px;
}
.biggest-wins-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.win-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 20px;
  transition: border-color 0.2s;
}
.win-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
}
.win-rank {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-h);
  min-width: 28px;
}
.win-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.win-player {
  font-size: 14px;
  font-weight: 600;
}
.win-date {
  font-size: 11px;
  color: var(--muted);
}
.win-right {
  text-align: right;
}
.win-multiplier {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-h);
}
.win-amount {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}
.share-win-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.share-win-box p {
  font-size: 14px;
  color: var(--muted);
}


.paytable-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin: 16px 0 0;
}
.paytable-table {
  width: 100%;
  min-width: 380px;
  font-size: 13px;
}
.paytable-table th {
  background: var(--bg-card-2);
  padding: 10px 16px;
  text-align: left;
  color: var(--muted);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid var(--border);
}
.paytable-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.paytable-table tbody tr:last-child td {
  border-bottom: none;
}
.paytable-table tbody tr:nth-child(odd) td {
  background: var(--bg-card);
}
.paytable-table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.12);
}
.paytable-table td:first-child {
  font-weight: 600;
}
.paytable-table td:not(:first-child) {
  color: var(--accent-h);
  font-weight: 600;
}


.faq-section {
  margin-bottom: 40px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--bg-card-2);
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-bg);
  color: var(--accent-h);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.25s;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
  padding: 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  border-top: 0px solid var(--border);
}
.faq-answer p {
  margin-bottom: 10px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer strong {
  color: var(--text);
}
.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding: 14px 20px 18px;
  border-top-width: 1px;
}


.author-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.author-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-h));
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-body {
  flex: 1;
  min-width: 0;
}
.author-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.author-name {
  font-size: 16px;
  font-weight: 700;
}
.author-verified {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.author-role {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 600px;
}
.author-stats {
  display: flex;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;
}
.author-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 22px;
  border-right: 1px solid var(--border);
  background: var(--bg-card-2);
  gap: 2px;
}
.author-stat:last-child {
  border-right: none;
}
.author-stat strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-h);
  line-height: 1;
}
.author-stat span {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.author-link {
  font-size: 13px;
  color: var(--accent-h);
  display: inline-block;
}
.author-link:hover {
  text-decoration: underline;
}


.footer {
  background: #0a0804;
  border-top: 1px solid var(--border);
  padding: 44px 0 0;
  margin-top: 12px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.footer-logo-link img {
  height: 28px;
  width: auto;
}
.footer-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--muted);
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card);
}
.footer-top-btns {
  display: flex;
  gap: 8px;
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-bottom: 44px;
}
.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-nav-col ul li {
  margin-bottom: 10px;
}
.footer-nav-col ul li a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav-col ul li a:hover {
  color: var(--text);
}
.footer-badges-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 28px;
}
.footer-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-badge-img {
  height: 28px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.2s, filter 0.2s;
}
.footer-badge-img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.5;
  line-height: 1.8;
  margin-bottom: 8px;
  text-align: center;
}
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  text-align: center;
}
.copyright {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.4;
}


@media (max-width: 1024px) {
  .casinos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .similar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-nav-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
  }
}

@media (max-width: 768px) {
  .primary_menu_desktop_ver {
    display: none;
  }
  .lang-switcher{
    display: none;
  }
  .header-btns .btn {
    font-size: 12px;
    padding: 6px 10px;
  }
  .logo-text {
    display: none;
  }
  .mobile-menu-button {
    display: flex;
  }
  .game-info-layout {
    flex-direction: column;
  }
  .game-info-image {
    align-self: center;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .rating-inner {
    flex-direction: column;
    gap: 24px;
  }
  .rating-chart-col {
    align-self: center;
  }
  .cat-name {
    min-width: 150px;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .similar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-top-right {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .casinos-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .game-title {
    font-size: 21px;
  }
  .section-title {
    font-size: 18px;
  }
  .rating-section {
    padding: 20px;
  }
  .content-block {
    padding: 20px;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-badges-row {
    gap: 14px;
  }
  .footer-badge-img {
    height: 24px;
  }
  .faq-accordion {
    gap: 6px;
  }
  .faq-question {
    padding: 14px 16px;
    font-size: 14px;
    gap: 10px;
  }
  .faq-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .faq-item.is-open .faq-answer {
    padding: 0 16px 14px;
  }
  .faq-answer p {
    font-size: 13px;
  }
}
.content-block table {
  display: block !important;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: transparent;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}

thead,
tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 600px;
}

tr {
  display: flex;
  width: 100%;
  transition: background-color 0.2s ease;
}

tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

table th,
table td {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 15px;
  color: var(--muted);
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
  min-width: 110px;
}

table th:first-child,
table td:first-child {
  justify-content: flex-start;
  text-align: left;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: none;
}

table thead th {
  background: var(--bg-card-2);
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
table tbody td {
  border-bottom: 1px solid var(--border);
}
.content-block img {
  max-width: 800px;
  margin: 20px auto;
  width: 100%;
  display: block;
  max-height: 800px;
  height: 100%;
  object-fit: contain;
}
.content-block figure {
  margin: 24px 0;
  text-align: center;
}
.content-block figure img {
  margin: 0 auto;
  border-radius: var(--r);
}
.content-block figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.2s;
}
.faq-item.is-open {
  border-color: rgba(124, 58, 237, 0.4);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question span {
  flex: 1;
  min-width: 0;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s ease, color 0.2s;
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}
.faq-item.is-open .faq-answer {
  max-height: 800px;
  padding: 0 20px 16px;
}
.faq-answer p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.lang-current:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.lang-current svg { flex-shrink: 0; transition: transform 0.2s; }
.lang-switcher.is-open .lang-current svg { transform: rotate(180deg); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.lang-switcher.is-open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.lang-dropdown a:hover { background: var(--bg); color: var(--text); }
.lang-dropdown a.active { color: var(--accent); font-weight: 600; }
.lang-flag { font-size: 16px; line-height: 1; }

/* Mobile lang block */
.mobile-lang-block {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.lang-mobile-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.lang-mobile-item:hover { color: var(--text); border-color: var(--accent); }
.lang-mobile-item.lang-mobile-active {
  color: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
}
.lang-mobile-item span { font-size: 12px; }

/* Fix menu-close-btn */
.menu-close-btn {
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
}

/* Content CTA buttons */
.content-cta {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.content-cta .btn {
  color: #fff !important;
  text-decoration: none !important;
  min-width: 140px;
  text-align: center;
  font-size: 15px;
  padding: 10px 24px;
}
@media (max-width: 480px) {
  .content-cta { flex-direction: column; align-items: center; }
  .content-cta .btn { color: #fff !important; text-decoration: none !important; width: 100%; }
}

/* Demo iframe */
.demo-iframe-wrap {
  width: 100%;
  margin: 20px 0;
}
.demo-iframe-wrap iframe {
  display: block;
}

