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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #09312a;
}
body {
  font-family: "Roboto", sans-serif;
  background: #09312a;
  color: #f0ead6;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #b58f35;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #d4a93f;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  color: #f5e9c8;
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 1rem;
  color: #e0d5be;
}
ul,
ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 0.35rem;
  color: #e0d5be;
}
strong {
  color: #f5e9c8;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem auto;
  display: block;
  overflow-x: auto;
}
table th,
table td {
  text-align: left;
  padding: 0.65rem 0.9rem;
  border: 1px solid #2a6b57;
  color: #e0d5be;
}
table th {
  background: #0d4235;
  color: #f5e9c8;
  font-weight: 600;
}
table tr:nth-child(even) {
  background: rgba(13, 66, 53, 0.45);
}
table tr:hover {
  background: rgba(181, 143, 53, 0.12);
}

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

:root {
  --c-gold: #b58f35;
  --c-gold-light: #d4a93f;
  --c-red: #b2031e;
  --c-dark: #212121;
  --c-bg: #09312a;
  --c-bg2: #0a3c2e;
  --c-bg3: #0d4a38;
  --c-text: #f0ead6;
  --c-text-muted: #b8ad96;
  --c-border: #2a6b57;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: var(--c-red);
  color: #fff;
}
.btn--primary:hover {
  background: #d0031e;
  color: #fff;
}
.btn--secondary {
  background: var(--c-dark);
  color: #f5e9c8;
  border: 1px solid var(--c-gold);
}
.btn--secondary:hover {
  background: #2a2a2a;
  color: #f5e9c8;
}
.btn--gold {
  background: var(--c-gold);
  color: #1a0e00;
}
.btn--gold:hover {
  background: var(--c-gold-light);
  color: #1a0e00;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
}
.btn--outline:hover {
  background: var(--c-gold);
  color: #1a0e00;
}
.btn--sm {
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
}
.btn--lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.header {
  background: var(--c-gold);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1rem;
  flex-wrap: nowrap;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.header-logo-text {
  font-size: 1.15rem;
  font-weight: 900;
  color: #1a0e00;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a0e00;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity 0.2s;
}
.header-nav a:hover {
  opacity: 0.7;
  color: #1a0e00;
}
.header-nav svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-actions .btn {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}
.lang-picker {
  position: relative;
  margin-left: 0.4rem;
}
.lang-picker-btn {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #1a0e00;
  padding: 0.35rem 0.7rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.2s;
}
.lang-picker-btn:hover {
  background: rgba(0, 0, 0, 0.25);
}
.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 5px);
  background: #1a1200;
  border: 1px solid var(--c-gold);
  border-radius: 6px;
  min-width: 120px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: none;
}
.lang-dropdown.open {
  display: block;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  color: #f5e9c8;
  font-size: 0.82rem;
  transition: background 0.15s;
}
.lang-dropdown a:hover {
  background: rgba(181, 143, 53, 0.2);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1010;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a0e00;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.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);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 49, 42, 0.97);
  z-index: 999;
  padding: 80px 1.5rem 2rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu ul a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0;
  color: #f5e9c8;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(181, 143, 53, 0.2);
}
.mobile-menu ul a:hover {
  color: var(--c-gold);
}
.mobile-menu-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.mobile-menu-actions .btn {
  flex: 1;
  min-width: 120px;
}
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #f5e9c8;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1011;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #06201a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/banner.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 32, 26, 0.92) 40%,
    rgba(6, 32, 26, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 3rem 1rem;
}
.hero-badge {
  display: inline-block;
  background: var(--c-gold);
  color: #1a0e00;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}
.hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.hero-title span {
  color: var(--c-gold);
}
.hero-desc {
  font-size: 1rem;
  color: #ddd3b8;
  margin-bottom: 1.5rem;
  max-width: 480px;
  line-height: 1.65;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-meta-item {
  font-size: 0.82rem;
  color: #c9bc9f;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.hero-meta-item strong {
  color: #f5e9c8;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.hero-demo-frame {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  max-width: 42vw;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.hero-demo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  width: 100%;
}
.hero-demo-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--c-gold);
}
.hero-demo-placeholder p {
  color: #c9bc9f;
  font-size: 0.88rem;
}
.hero-demo-placeholder .btn {
  width: 100%;
  max-width: 220px;
}

.section {
  padding: 3rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #f5e9c8;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--c-gold);
  border-radius: 2px;
}
.section-title p {
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0.8rem auto 0;
}

.rating-block {
  background: rgba(13, 66, 53, 0.6);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--c-border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
}
.rating-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.rating-block.top-1 {
  border-color: #ffd700;
  background: rgba(20, 80, 60, 0.7);
}
.rating-block.top-2 {
  border-color: #c0c0c0;
  background: rgba(15, 70, 53, 0.7);
}
.rating-block.top-3 {
  border-color: #cd7f32;
  background: rgba(13, 60, 47, 0.7);
}
.rating-block.top-1::before,
.rating-block.top-2::before,
.rating-block.top-3::before {
  content: attr(data-rank);
  position: absolute;
  top: -1px;
  left: -1px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius) 0 var(--radius) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}
.rating-block.top-1::before {
  background: #ffd700;
  color: #1a0e00;
}
.rating-block.top-2::before {
  background: #c0c0c0;
  color: #1a0e00;
}
.rating-block.top-3::before {
  background: #cd7f32;
  color: #fff;
}
.casino-num {
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
}
.casino-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.casino-logo {
  flex-shrink: 0;
  width: 90px;
  height: 60px;
  background: #0d3028;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.casino-info {
  flex: 1;
  min-width: 200px;
}
.casino-name {
  font-weight: 700;
  font-size: 1rem;
  color: #f5e9c8;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.casino-flag {
  font-size: 1.1rem;
}
.casino-available {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-weight: 600;
}
.casino-available.yes {
  background: rgba(0, 180, 80, 0.2);
  color: #4dff90;
  border: 1px solid rgba(0, 180, 80, 0.3);
}
.casino-available.no {
  background: rgba(178, 3, 30, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(178, 3, 30, 0.3);
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.3rem 0;
}
.casino-stars {
  color: #ffd700;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.casino-score {
  font-weight: 700;
  color: #f5e9c8;
  font-size: 0.95rem;
}
.casino-bonus {
  background: rgba(181, 143, 53, 0.15);
  border: 1px solid rgba(181, 143, 53, 0.3);
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  margin: 0.4rem 0;
  font-size: 0.88rem;
}
.casino-bonus strong {
  color: var(--c-gold);
}
.casino-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.9rem;
  margin: 0.35rem 0;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.casino-details span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.casino-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
  align-items: center;
}
.casino-tc {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  margin-top: 0.35rem;
}
.casino-tc a {
  color: var(--c-text-muted);
  text-decoration: underline;
}

.pagination-wrap {
  text-align: center;
  margin-top: 1.5rem;
}
#load-more-btn {
  min-width: 180px;
}
.hidden {
  display: none !important;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.pros-card,
.cons-card {
  background: rgba(13, 66, 53, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--c-border);
}
.pros-card {
  border-top: 3px solid #00c853;
}
.cons-card {
  border-top: 3px solid var(--c-red);
}
.pros-card h3 {
  color: #4dff90;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cons-card h3 {
  color: #ff6b6b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pros-card ul,
.cons-card ul {
  padding-left: 0;
  list-style: none;
}
.pros-card ul li,
.cons-card ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pros-card ul li::before {
  content: "✓";
  color: #4dff90;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.cons-card ul li::before {
  content: "✗";
  color: #ff6b6b;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.winners-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
}
.winners-table th {
  background: #0d4235;
  color: #f5e9c8;
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--c-gold);
}
.winners-table td {
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(42, 107, 87, 0.4);
  font-size: 0.88rem;
  color: #e0d5be;
  vertical-align: middle;
}
.winners-table tr:nth-child(even) {
  background: rgba(13, 66, 53, 0.35);
}
.winners-table tr:hover {
  background: rgba(181, 143, 53, 0.1);
}
.winners-table .rank-1 {
  color: #ffd700;
  font-weight: 700;
}
.winners-table .rank-2 {
  color: #c0c0c0;
  font-weight: 700;
}
.winners-table .rank-3 {
  color: #cd7f32;
  font-weight: 700;
}
.winners-table .win-amount {
  color: #4dff90;
  font-weight: 700;
}
.winner-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a0e00;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.screenshot-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.screenshot-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.screenshot-item:hover .screenshot-overlay {
  opacity: 1;
}
.screenshot-overlay svg {
  width: 36px;
  height: 36px;
  color: #fff;
}
.screenshots-swiper {
  display: none;
}
.swiper-container {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}
.swiper-wrapper {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.swiper-slide {
  min-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.8rem;
}
.swiper-btn {
  background: var(--c-gold);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a0e00;
  transition: background 0.2s;
}
.swiper-btn:hover {
  background: var(--c-gold-light);
}
.swiper-dots {
  display: flex;
  gap: 0.4rem;
}
.swiper-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(181, 143, 53, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.swiper-dot.active {
  background: var(--c-gold);
}

.content-review {
  background: rgba(13, 66, 53, 0.4);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--c-border);
}
.content-review h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f5e9c8;
}
.content-review h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #e8d9ad;
  margin-top: 1.2rem;
}
.content-review h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #d4bf8a;
  margin-top: 1rem;
}
.content-review p {
  line-height: 1.75;
  color: #ddd3b8;
  margin-bottom: 0.85rem;
}
.content-review ul,
.content-review ol {
  margin-bottom: 0.85rem;
  padding-left: 1.4rem;
}
.content-review li {
  margin-bottom: 0.4rem;
  color: #ddd3b8;
  line-height: 1.6;
}
.content-review a {
  color: var(--c-gold);
  text-decoration: underline;
}
.content-review a:hover {
  color: var(--c-gold-light);
}
.content-review strong {
  color: #f5e9c8;
}
.content-review em {
  color: #d4bf8a;
  font-style: italic;
}
.content-review table {
  display: table;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 1rem 0;
}
.content-review table th {
  background: #0d4235;
  padding: 0.6rem 0.8rem;
  text-align: left;
  border: 1px solid var(--c-border);
  color: #f5e9c8;
}
.content-review table td {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--c-border);
  color: #e0d5be;
  vertical-align: top;
}
.content-review blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 0.6rem 1rem;
  margin: 1rem 0;
  background: rgba(181, 143, 53, 0.08);
  color: #d4bf8a;
  font-style: italic;
  border-radius: 0 6px 6px 0;
}
.content-review img {
  border-radius: 6px;
  margin: 1rem 0;
  border: 1px solid var(--c-border);
}
.content-review hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 1.5rem 0;
}
.content-review code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-size: 0.85em;
  color: #b9f6ca;
}
.content-review pre {
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 1rem;
}
.content-review pre code {
  background: none;
  padding: 0;
}

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(13, 66, 53, 0.5);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--c-border);
  margin-top: 1.5rem;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a0e00;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 1rem;
  color: #f5e9c8;
  margin-bottom: 0.2rem;
}
.author-info p {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin: 0;
}
.author-info a {
  color: var(--c-gold);
  font-size: 0.82rem;
}

.similar-games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.game-card {
  background: rgba(13, 66, 53, 0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #0a2820;
}
.game-card-body {
  padding: 0.85rem;
}
.game-card-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #f5e9c8;
  margin-bottom: 0.3rem;
}
.game-card-desc {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-bottom: 0.7rem;
  line-height: 1.45;
}
.game-card-actions {
  display: flex;
  gap: 0.4rem;
}
.game-card-actions .btn {
  flex: 1;
  font-size: 0.75rem;
  padding: 0.35rem 0.5rem;
  text-align: center;
}

.footer {
  background: var(--c-gold);
  color: #1a0e00;
  padding: 2.5rem 0 1rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer-brand .footer-logo {
  margin-bottom: 0.8rem;
}
.footer-brand .footer-logo img {
  height: 44px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(26, 14, 0, 0.75);
  line-height: 1.55;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
  color: #1a0e00;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.3rem;
}
.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(26, 14, 0, 0.8);
  transition: opacity 0.2s;
}
.footer-col ul a:hover {
  opacity: 0.6;
  color: #1a0e00;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.payment-badge {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a0e00;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.social-link:hover {
  background: rgba(0, 0, 0, 0.28);
}
.social-link svg {
  width: 16px;
  height: 16px;
  color: #1a0e00;
  fill: currentColor;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: center;
}
.trust-badge {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a0e00;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 1rem 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(26, 14, 0, 0.7);
  line-height: 1.5;
}
.footer-flags {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.footer-flags img {
  height: 22px;
  border-radius: 2px;
}
.footer-provider-logo {
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-provider-logo:hover {
  opacity: 1;
}
.footer-provider-logo img {
  height: 28px;
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(26, 14, 0, 0.65);
  line-height: 1.55;
  margin-top: 0.5rem;
  max-width: 900px;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a0e00;
  color: #b58f35;
  font-weight: 900;
  font-size: 0.7rem;
  border: 2px solid #b58f35;
}

.sticky-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 280px;
  transition: width 0.3s;
}
.sticky-widget.collapsed {
  width: 50px;
}
.widget-toggle {
  background: var(--c-gold);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  transition: background 0.2s;
  flex-shrink: 0;
  color: #1a0e00;
}
.widget-toggle:hover {
  background: var(--c-gold-light);
}
.widget-body {
  background: rgba(9, 49, 42, 0.97);
  border: 1px solid var(--c-gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.widget-header {
  background: var(--c-gold);
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.widget-header h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a0e00;
  margin: 0;
}
.widget-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid rgba(42, 107, 87, 0.4);
}
.widget-item:last-child {
  border-bottom: none;
}
.widget-item-logo {
  width: 40px;
  height: 28px;
  background: #0d3028;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.widget-item-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.widget-item-info {
  flex: 1;
  min-width: 0;
}
.widget-item-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #f5e9c8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget-item-bonus {
  font-size: 0.7rem;
  color: var(--c-gold);
}
.widget-item .btn {
  font-size: 0.72rem;
  padding: 0.3rem 0.55rem;
  flex-shrink: 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(13, 66, 53, 0.45);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  color: #f5e9c8;
  font-size: 0.95rem;
  gap: 0.5rem;
  transition: background 0.2s;
}
.faq-q:hover {
  background: rgba(181, 143, 53, 0.1);
}
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: var(--c-gold);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 1.2rem 0.9rem;
  color: #ddd3b8;
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  padding: 0.7rem 0;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--c-gold);
}
.breadcrumb span {
  color: var(--c-text-muted);
}

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
  margin: 1rem 0;
}
.game-info-item {
  background: rgba(13, 66, 53, 0.5);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.game-info-label {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.game-info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f5e9c8;
}

.demo-section {
  background: rgba(6, 32, 26, 0.8);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
  margin: 1.5rem 0;
}
.demo-header {
  background: rgba(13, 66, 53, 0.7);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.demo-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #f5e9c8;
}
.demo-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
  background: #000;
}
.demo-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url("/img/banner.png") center/cover no-repeat;
  position: relative;
  cursor: pointer;
}
.demo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.demo-placeholder-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.demo-placeholder-content svg {
  width: 64px;
  height: 64px;
  color: var(--c-gold);
  margin-bottom: 0.7rem;
}
.demo-placeholder-content p {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.demo-placeholder-content .btn {
  margin: 0 auto;
}

.section-alt {
  background: rgba(6, 32, 26, 0.6);
}
.card-block {
  background: rgba(13, 66, 53, 0.45);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.section-heading {
  padding: 2.5rem 0 0.5rem;
}
.section-heading h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: #f5e9c8;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-heading h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: var(--c-gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.wp-nonce-field {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(181, 143, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(181, 143, 53, 0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-fade-up {
  animation: fadeInUp 0.5s both;
}
.btn--primary {
  animation: none;
}
.btn--primary:focus {
  animation: pulse 0.6s 1;
}

.hidden-wp-meta {
  display: none;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: -9999px;
}
.wp-block-spacer {
  height: 2rem;
}
.entry-meta {
  display: none;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-demo-frame {
    display: none;
  }
  .hero-content {
    max-width: 100%;
    padding: 2rem 0;
  }
  .screenshots-grid {
    display: none;
  }
  .screenshots-swiper {
    display: block;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
  .casino-row {
    flex-direction: column;
  }
  .casino-logo {
    width: 80px;
    height: 52px;
  }
  .game-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .similar-games {
    grid-template-columns: repeat(2, 1fr);
  }
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
  .sticky-widget {
    width: calc(100% - 2rem);
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
  }
  .sticky-widget.collapsed {
    width: 46px;
    right: 1rem;
    left: auto;
  }
  .game-info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 420px;
  }
}

.wc-block-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.wp-block-cover {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.woocommerce-page .content-area {
  max-width: 100%;
}
