*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  background: #d99340;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
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;
}
.box {
  border-radius: 12px;
  overflow: hidden;
}
.box-card {
  background: rgba(149, 77, 39, 0.55);
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}
.box-card--dark {
  background: rgba(70, 30, 10, 0.65);
}
.section-gap {
  margin-bottom: 24px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffd166;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 213, 102, 0.2);
}
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.site-header {
  background: #954d27;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-link img {
  height: 84px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 7px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.header-btns {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.online-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
.online-dot {
  width: 7px;
  height: 7px;
  background: #00b862;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 184, 98, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(0, 184, 98, 0);
  }
}
.lang-drop {
  position: relative;
}
.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  padding: 5px 9px;
  color: #fff;
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #6b3018;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  overflow: hidden;
  min-width: 120px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 200;
}
.lang-drop.open .lang-menu {
  display: block;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  font-size: 0.82rem;
  color: #fff;
  transition: background 0.2s;
}
.lang-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  background: #7a3b1a;
  padding: 0;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav ul {
  list-style: none;
  padding: 10px 16px 14px;
}
.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav ul li:last-child a {
  border-bottom: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.btn:active {
  transform: translateY(0);
}
.btn--money {
  background: #762f2d;
  color: #fff;
}
.btn--money:hover {
  filter: brightness(1.12);
}
.btn--bonus,
.btn--green {
  background: #00b862;
  color: #fff;
}
.btn--bonus:hover,
.btn--green:hover {
  filter: brightness(1.1);
}
.btn--demo {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--demo:hover {
  background: rgba(255, 255, 255, 0.25);
}
.btn--sm {
  font-size: 0.78rem;
  padding: 6px 12px;
}
.btn--md {
  font-size: 0.85rem;
  padding: 8px 16px;
}
.btn--lg {
  font-size: 0.95rem;
  padding: 11px 22px;
}
.btn--xl {
  font-size: 1.05rem;
  padding: 13px 28px;
}

.hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #6b2e10 0%, #954d27 50%, #c46a2a 100%);
  overflow: hidden;
  margin-bottom: 28px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(/houseban.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 40px 24px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 209, 102, 0.2);
  border: 1px solid rgba(255, 209, 102, 0.4);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffd166;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
  line-height: 1.55;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-badge {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.8);
}

.content-area {
  padding: 0 0 32px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 300px);
  gap: 22px;
  align-items: start;
}
.content-main {
  min-width: 0;
}
.content-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}
.info-table td {
  padding: 9px 12px;
  font-size: 0.87rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.info-table tr:last-child td {
  border-bottom: none;
}
.info-table td:first-child {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  white-space: nowrap;
  width: 50%;
}
.info-table td:last-child {
  color: #fff;
  font-weight: 700;
}
.info-table tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.1);
}

.provider-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.provider-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.provider-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.provider-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.provider-link {
  font-size: 0.78rem;
  color: #ffd166;
  text-decoration: underline;
}

/* PROS CONS */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros-card,
.cons-card {
  border-radius: 10px;
  padding: 16px;
}
.pros-card {
  background: rgba(0, 184, 98, 0.15);
  border: 1px solid rgba(0, 184, 98, 0.3);
}
.cons-card {
  background: rgba(220, 50, 50, 0.12);
  border: 1px solid rgba(220, 50, 50, 0.25);
}
.pros-card h3,
.cons-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pros-card h3 {
  color: #00e07a;
}
.cons-card h3 {
  color: #ff7070;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.check-list li {
  font-size: 0.83rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e07a;
}
.cons-card .check-list li::before {
  background: #ff7070;
}

/* JACKPOTS */
.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.jackpot-card {
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  border: 1px solid rgba(255, 213, 102, 0.25);
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.jackpot-card:hover {
  transform: translateY(-2px);
}
.jackpot-mini {
  border-color: rgba(200, 200, 200, 0.3);
}
.jackpot-major {
  border-color: rgba(255, 213, 102, 0.4);
}
.jackpot-grand {
  border-color: rgba(255, 150, 50, 0.5);
  background: rgba(255, 150, 50, 0.1);
}
.jackpot-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.jackpot-amount {
  font-family: "Baloo 2", cursive;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffd166;
  margin-bottom: 4px;
}
.jackpot-players {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* WINNERS */
.winners-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
  font-size: 0.84rem;
}
.winners-table th {
  background: rgba(0, 0, 0, 0.25);
  padding: 9px 11px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid rgba(255, 213, 102, 0.2);
}
.winners-table td {
  padding: 8px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.winners-table tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}
.winners-table .rank-1 td {
  color: #ffd166;
  font-weight: 700;
}
.winners-table .rank-2 td {
  color: #c0c0c0;
}
.winners-table .rank-3 td {
  color: #cd7f32;
}
.mult-badge {
  background: rgba(255, 213, 102, 0.15);
  border: 1px solid rgba(255, 213, 102, 0.3);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffd166;
}

/* SCREENSHOTS */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.screenshot-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s;
}
.screenshot-item:hover {
  transform: scale(1.02);
}
.screenshot-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.caption {
  font-size: 0.75rem;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* SLIDER */
.slides-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.slides-track {
  display: flex;
  transition: transform 0.4s ease;
}
.slide {
  min-width: 100%;
  flex-shrink: 0;
}
.slides-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 0;
}
.slides-arrow {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 7px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slides-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}
.slides-nav {
  display: flex;
  gap: 6px;
}
.slides-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.2s;
}
.slides-dot.active {
  background: #ffd166;
}

.demo-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  border: 2px solid rgba(255, 213, 102, 0.25);
  background: #000;
}
.demo-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* AUTHOR */
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 213, 102, 0.4);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}
.author-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.author-bio {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin-bottom: 10px;
}
.author-socials a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #ffd166;
  border: 1px solid rgba(255, 213, 102, 0.3);
  border-radius: 6px;
  padding: 4px 10px;
}
.author-socials a:hover {
  background: rgba(255, 213, 102, 0.1);
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.review-card {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #762f2d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-author-name {
  font-weight: 700;
  font-size: 0.88rem;
}
.review-date {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.5);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.review-stars svg {
  width: 13px;
  height: 13px;
}
.review-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  transition: background 0.2s;
  user-select: none;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.06);
}
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  display: flex;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 15px 13px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* SIDEBAR BONUS */
.side-bonus-card {
  background: linear-gradient(135deg, #00b862 0%, #007a42 100%);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.side-bonus-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.side-bonus-amount {
  font-family: "Baloo 2", cursive;
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffd166;
  margin-bottom: 4px;
}
.side-bonus-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
}
.side-bonus-card .btn {
  width: 100%;
  margin-bottom: 8px;
}
.side-bonus-terms {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

/* SIDE INFO */
.side-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.side-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.83rem;
}
.side-stat-label {
  color: rgba(255, 255, 255, 0.6);
}
.side-stat-val {
  font-weight: 700;
  color: #ffd166;
}

/* CONTENT RAW (обзор) */
.raw-content h2 {
  font-family: "Baloo 2", cursive;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffd166;
  margin: 20px 0 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 213, 102, 0.2);
}
.raw-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 14px 0 6px;
}
.raw-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 10px;
}
.raw-content ul,
.raw-content ol {
  padding-left: 20px;
  margin-bottom: 10px;
}
.raw-content li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 4px;
}
.raw-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.85rem;
  overflow-x: auto;
  display: block;
}
.raw-content table th {
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 10px;
  text-align: left;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.raw-content table td {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.raw-content a {
  color: #ffd166;
  text-decoration: underline;
}
.raw-content strong {
  color: #fff;
  font-weight: 700;
}

.site-footer {
  background: #954d27;
  margin-top: auto;
  padding: 30px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand {
}
.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}
.footer-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}
.footer-nav h4,
.footer-trust h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav ul a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.footer-nav ul a:hover {
  color: #ffd166;
}
.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pay-badge {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 0.72rem;
  color: #fff;
  font-weight: 700;
}
.footer-bottom {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copyright {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-provider {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.footer-18 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
}

/* BOTTOM WIDGET */
.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #762f2d, #8a3532);
  border-top: 2px solid rgba(255, 213, 102, 0.3);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bottom-widget-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.bottom-widget-bonus {
  font-size: 0.82rem;
  color: #ffd166;
  font-weight: 700;
}
.widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.widget-close:hover {
  color: rgba(255, 255, 255, 0.8);
}
body.widget-closed .bottom-widget {
  display: none;
}
body {
  padding-bottom: 60px;
}
body.widget-closed {
  padding-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 10px 0 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #ffd166;
}
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}
.breadcrumb-current {
  color: rgba(255, 255, 255, 0.85);
}

.technical-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 0;
}
.technical-content h2 {
  font-family: "Baloo 2", cursive;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffd166;
  margin: 20px 0 8px;
}
.technical-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 14px 0 5px;
}
.technical-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 10px;
}
.technical-content ul,
.technical-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.technical-content li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 4px;
}
.technical-content a {
  color: #ffd166;
  text-decoration: underline;
}

.xb4r9 {
  display: inline;
}
.k7m2p {
  position: relative;
}
.q3t8w {
  overflow: hidden;
}
.r5n1j {
  will-change: transform;
}
.v9x4c {
  backface-visibility: hidden;
}
.d2l6s {
  transform: translateZ(0);
}
.h8f3a {
  isolation: isolate;
}
.e4g7b {
  contain: layout;
}
.n6c0m {
  display: contents;
}
.p1y5k {
  pointer-events: none;
  position: absolute;
  opacity: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .jackpots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .lang-drop {
    display: none;
  }
  .online-badge {
    display: none;
  }
  .jackpots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .jackpot-amount {
    font-size: 1.1rem;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .content-side {
    grid-template-columns: 1fr;
  }
  .bottom-widget {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .hero-content {
    padding: 28px 14px;
  }
  .jackpots-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .demo-actions {
    flex-direction: column;
  }
  .demo-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .slides-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    max-width: 100%;
  }

  .slides-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide img {
    width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
    max-height: 220px;
  }

  .slides-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
  }

  .slides-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 209, 102, 0.4);
    background: rgba(255, 209, 102, 0.15);
    color: #ffd166;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .slides-arrow:active {
    transform: scale(0.9);
    background: rgba(255, 209, 102, 0.25);
  }

  .slides-nav {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .slides-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 209, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .slides-dot.active {
    background: #ffd166;
    width: 11px;
    height: 11px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

#burger-btn {
  position: relative;
  z-index: 1001;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

#burger-btn span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(122, 59, 26, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 80px;
}

.mobile-nav.open {
  display: block;
  transform: translateX(0);
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.mobile-nav ul {
  list-style: none;
  padding: 20px 16px;
}

.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
  margin-bottom: 4px;
}

.mobile-nav ul li a:active {
  background: rgba(255, 209, 102, 0.15);
  color: #ffd166;
}

.mobile-nav ul li:last-child a {
  border-bottom: none;
}

@media (max-width: 768px) {
  #burger-btn {
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .slides-wrap {
    max-width: 600px;
    margin: 0 auto;
  }

  .slide img {
    max-height: 300px;
  }
}

*:focus-visible {
  outline: 2px solid #ffd166;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  a,
  button,
  .slides-dot,
  .slides-arrow {
    min-height: 44px;
    min-width: 44px;
  }
}
