*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --clr-bg: #0a0a0a;
  --clr-header: #111111;
  --clr-gold: #ffd700;
  --clr-red: #ff1744;
  --clr-text: #e8e8e8;
  --clr-muted: #9e9e9e;
  --clr-border: #2a2a2a;
  --clr-card: #181818;
  --clr-card2: #1e1e1e;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #ffe566;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}
.header-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover {
  background: rgba(255, 215, 0, 0.12);
  color: var(--clr-gold);
}
.header-nav svg {
  flex-shrink: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
.btn-demo {
  background: var(--clr-gold);
  color: #111;
  position: relative;
  overflow: hidden;
}
.btn-demo:hover {
  filter: brightness(1.1);
  color: #111;
}
.btn-money {
  background: var(--clr-red);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.btn-money:hover {
  filter: brightness(1.15);
  color: #fff;
}
.btn-demo::after,
.btn-money::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  animation: shimmer 2.5s infinite;
  pointer-events: none;
}
.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border: 1.5px solid var(--clr-gold);
}
.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--clr-gold);
}
.lang-dropdown {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  transition: background 0.2s;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  min-width: 140px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  z-index: 200;
}
.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--clr-text);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.15s;
}
.lang-menu a:hover {
  background: rgba(255, 215, 0, 0.1);
}
.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-muted);
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
  }
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 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-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
}
.mobile-nav a {
  color: var(--clr-text);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav a:hover {
  background: rgba(255, 215, 0, 0.12);
  color: var(--clr-gold);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-langs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.mobile-nav-langs a {
  font-size: 0.85rem;
  padding: 6px 12px;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/iban.jpeg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.92) 40%,
    rgba(10, 10, 10, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 60px 24px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: var(--clr-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}
.hero h1 span {
  color: var(--clr-gold);
}
.hero-desc {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-btns .btn {
  padding: 13px 28px;
  font-size: 0.9rem;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clr-gold);
}
.hero-stat span {
  font-size: 0.72rem;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

main {
  flex: 1;
  padding: 40px 0 60px;
}
.section {
  margin-bottom: 48px;
}
.section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title svg {
  flex-shrink: 0;
}

.box-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.box-card--alt {
  background: var(--clr-card2);
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.info-table tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.15s;
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table tr:hover {
  background: rgba(255, 215, 0, 0.04);
}
.info-table td {
  padding: 11px 14px;
  vertical-align: middle;
  text-align: left;
}
.info-table td:first-child {
  color: var(--clr-muted);
  font-weight: 600;
  width: 50%;
  white-space: nowrap;
}
.info-table td:last-child {
  color: var(--clr-text);
  font-weight: 700;
}
.info-table .badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: var(--clr-gold);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.78rem;
  font-weight: 700;
}
.info-table .badge-red {
  background: rgba(255, 23, 68, 0.15);
  color: #ff6b87;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.screenshot-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.screenshots-slider {
  display: none;
  position: relative;
  overflow: hidden;
}
.screenshots-slider .slide {
  display: none;
}
.screenshots-slider .slide.active {
  display: block;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active {
  background: var(--clr-gold);
}
.slider-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 8px;
  pointer-events: none;
}
.slider-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s;
}
.slider-btn:hover {
  background: rgba(255, 215, 0, 0.3);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.app-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--clr-border);
  text-align: left;
}
.app-table td:first-child {
  color: var(--clr-muted);
  font-weight: 600;
  width: 45%;
}
.app-table td:last-child {
  font-weight: 700;
  color: var(--clr-text);
}
.app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-card2);
  border: 1.5px solid var(--clr-border);
  border-radius: 10px;
  padding: 10px 18px;
  color: var(--clr-text);
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  min-width: 150px;
}
.app-btn:hover {
  border-color: var(--clr-gold);
  background: rgba(255, 215, 0, 0.07);
  color: var(--clr-text);
}
.app-btn svg {
  flex-shrink: 0;
  color: var(--clr-gold);
}
.app-btn-label {
  display: flex;
  flex-direction: column;
}
.app-btn-label small {
  font-size: 0.68rem;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.app-btn-label strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

.demo-frame-wrap {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: visible;
  background: #000;
  border: 1px solid rgba(255, 215, 0, 0.25);
}
.demo-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: auto;
  touch-action: manipulation;
}
.demo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 23, 68, 0.08);
  border-top: 1px solid rgba(255, 23, 68, 0.2);
  padding: 16px 20px;
  gap: 12px;
  flex-wrap: wrap;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.demo-cta p {
  font-size: 0.9rem;
  color: var(--clr-text);
}
.demo-cta strong {
  color: var(--clr-gold);
}

.content-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.content-text h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin: 24px 0 12px;
}
.content-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 20px 0 10px;
}
.content-text p {
  margin-bottom: 14px;
  line-height: 1.75;
  color: #ccc;
  font-size: 0.9rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.content-text ul,
.content-text ol {
  margin: 12px 0 16px 20px;
  color: #ccc;
  font-size: 0.9rem;
}
.content-text li {
  margin-bottom: 8px;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
  display: block;
  overflow-x: auto;
}
.content-text table th {
  background: rgba(255, 215, 0, 0.12);
  color: var(--clr-gold);
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--clr-border);
}
.content-text table td {
  padding: 9px 12px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
}
.content-text table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.content-text a {
  color: var(--clr-gold);
  word-break: break-word;
}
.content-text strong {
  color: var(--clr-text);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-text);
  transition: background 0.2s;
  gap: 10px;
}
.faq-q:hover {
  background: rgba(255, 215, 0, 0.06);
}
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--clr-gold);
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 16px;
}
.faq-a p {
  padding: 0 18px 4px;
  color: #bbb;
  font-size: 0.87rem;
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), #ff8f00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #111;
  flex-shrink: 0;
}
.review-meta strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.review-meta span {
  font-size: 0.75rem;
  color: var(--clr-muted);
}
.review-stars {
  display: flex;
  gap: 3px;
}
.review-star {
  color: var(--clr-gold);
  font-size: 1rem;
}
.review-star.empty {
  color: #444;
}
.review-text {
  font-size: 0.85rem;
  color: #bbb;
  line-height: 1.65;
}
.review-game-badge {
  font-size: 0.72rem;
  color: var(--clr-muted);
  border-top: 1px solid var(--clr-border);
  padding-top: 10px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros-list,
.cons-list {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--clr-border);
}
.pros-list h3 {
  color: #4caf50;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cons-list h3 {
  color: #ff6b87;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.5;
}
.pc-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.casino-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.casino-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}
.casino-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.casino-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.casino-rating {
  background: rgba(255, 215, 0, 0.15);
  color: var(--clr-gold);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.casino-bonus {
  background: rgba(255, 23, 68, 0.08);
  border: 1px solid rgba(255, 23, 68, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
}
.casino-bonus-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--clr-muted);
  margin-bottom: 4px;
}
.casino-bonus-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ff6b87;
}
.casino-btn {
  background: var(--clr-red);
  color: #fff;
  text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: filter 0.2s;
}
.casino-btn:hover {
  filter: brightness(1.15);
  color: #fff;
}
.casino-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.casino-tag {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--clr-muted);
  padding: 3px 8px;
  border-radius: 4px;
}

.author-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-gold);
  flex-shrink: 0;
}
.author-info h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.author-info .author-title {
  font-size: 0.8rem;
  color: var(--clr-gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.author-info p {
  font-size: 0.85rem;
  color: #bbb;
  line-height: 1.65;
  margin-bottom: 12px;
}
.author-socials {
  display: flex;
  gap: 10px;
}
.author-social {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.author-social:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.site-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  margin-top: 40px;
}
.footer-main {
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--clr-muted);
  line-height: 1.65;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 0.83rem;
  color: var(--clr-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--clr-gold);
}
.footer-payments {
  padding: 20px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.footer-payments-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-muted);
  height: 36px;
}
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.78rem;
  color: var(--clr-muted);
}
.footer-copyright a {
  color: var(--clr-muted);
}
.footer-copyright a:hover {
  color: var(--clr-gold);
}
.footer-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-badge {
  font-size: 0.72rem;
  color: var(--clr-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  padding: 4px 10px;
  border-radius: 4px;
}
.footer-legal {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, #111 0%, #1a1a1a 100%);
  border-top: 2px solid rgba(255, 23, 68, 0.4);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.3s;
}
.sticky-widget.hidden {
  transform: translateY(100%);
}
.widget-text {
  display: flex;
  flex-direction: column;
}
.widget-text strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}
.widget-text span {
  font-size: 0.75rem;
  color: var(--clr-gold);
  font-weight: 600;
}
.widget-btn {
  background: var(--clr-red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
  text-decoration: none;
  transition:
    filter 0.15s,
    transform 0.15s;
}
.widget-btn:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
  color: #fff;
}
.widget-close {
  background: none;
  border: none;
  color: var(--clr-muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
}
.widget-bonus-val {
  font-size: 0.82rem;
  background: rgba(255, 23, 68, 0.12);
  border: 1px solid rgba(255, 23, 68, 0.3);
  color: #ff6b87;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-muted);
  padding: 12px 0;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--clr-muted);
}
.breadcrumb a:hover {
  color: var(--clr-gold);
}
.breadcrumb-sep {
  color: #555;
}

.tech-content {
  padding: 32px 0 60px;
}
.tech-content h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin: 24px 0 12px;
}
.tech-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 18px 0 9px;
}
.tech-content p {
  color: #bbb;
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.tech-content ul,
.tech-content ol {
  color: #bbb;
  font-size: 0.88rem;
  margin: 12px 0 16px 20px;
}
.tech-content li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.game-header-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.game-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: contain;
  border: 1px solid var(--clr-border);
  background: #222;
  padding: 6px;
}
.game-title-block h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.game-title-block p {
  font-size: 0.83rem;
  color: var(--clr-muted);
}
.game-rtp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--clr-gold);
  font-weight: 700;
  margin-top: 8px;
}

#wpadminbar {
  display: none;
}
.wp-caption {
  display: none;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.fade-in-up.d1 {
  animation-delay: 0.1s;
}
.fade-in-up.d2 {
  animation-delay: 0.2s;
}
.fade-in-up.d3 {
  animation-delay: 0.3s;
}
.fade-in-up.d4 {
  animation-delay: 0.4s;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.related-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.related-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}
.related-card span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-top: 8px;
}
.related-card small {
  font-size: 0.72rem;
  color: var(--clr-muted);
}
.game-icon-placeholder {
  width: 60px;
  height: 60px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.section-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-border),
    transparent
  );
  margin: 16px 0;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .online-count {
    display: none;
  }
  .lang-dropdown {
    display: none;
  }
  .burger {
    display: flex;
  }
  .screenshots-grid {
    display: none;
  }
  .screenshots-slider {
    display: block;
  }
  .hero {
    min-height: 400px;
  }
  .hero-content {
    padding: 40px 16px;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-socials {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .demo-frame-wrap iframe {
    height: 500px;
  }
  .hero-stats {
    gap: 16px;
  }
  .casinos-grid {
    grid-template-columns: 1fr;
  }
  .box-card {
    padding: 16px;
  }
  .content-text {
    font-size: 0.88rem;
  }
  .info-table td:first-child {
    white-space: normal;
  }
  .btn-demo::after,
  .btn-money::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero-btns .btn {
    padding: 11px 18px;
    font-size: 0.82rem;
  }
  .app-buttons {
    flex-direction: column;
  }
  .demo-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-payments-inner {
    gap: 10px;
  }
  .sticky-widget {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .widget-bonus-val {
    display: none;
  }
  .box-card {
    padding: 14px;
  }
  .content-text h2 {
    font-size: 1.05rem;
  }
  .content-text h3 {
    font-size: 0.95rem;
  }
  .content-text p,
  .content-text li {
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .demo-frame-wrap iframe {
    height: 450px;
  }
}
.demo-frame-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 215, 0, 0.25);
}

.demo-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: none;
}

.demo-mobile-overlay {
  display: none;
}

@media (max-width: 768px) {
  .demo-frame-wrap {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .demo-frame-wrap iframe {
    display: none;
  }

  .demo-mobile-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--clr-gold);
    color: #111;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: filter 0.2s;
  }

  .demo-mobile-overlay:hover {
    filter: brightness(1.1);
  }
}
