:root {
  --color-header: #1a0a2e;
  --color-header-dark: #120720;
  --color-bg: #0d0620;
  --color-bg-alt: #1a0d35;
  --color-bg-card: #1e1040;
  --color-accent-green: #00c853;
  --color-accent-green-hover: #00e060;
  --color-accent-red: #e53935;
  --color-accent-red-hover: #ff5252;
  --color-gold: #f5a623;
  --color-gold-light: #ffd166;
  --color-text: #e8e0f5;
  --color-text-muted: #a090c0;
  --color-border: #3a2060;
  --color-border-light: #5a3a8a;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.3;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--green {
  background: var(--color-accent-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,200,83,0.35);
}
.btn--green:hover { background: var(--color-accent-green-hover); color: #fff; box-shadow: 0 6px 20px rgba(0,200,83,0.5); }

.btn--red {
  background: var(--color-accent-red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(229,57,53,0.35);
}
.btn--red:hover { background: var(--color-accent-red-hover); color: #fff; box-shadow: 0 6px 20px rgba(229,57,53,0.5); }

.btn--gold {
  background: linear-gradient(135deg, #f5a623 0%, #ffd166 100%);
  color: #1a0a2e;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.btn--gold:hover { background: linear-gradient(135deg, #ffd166 0%, #f5a623 100%); color: #1a0a2e; box-shadow: 0 6px 22px rgba(245,166,35,0.6); }

.btn--lg { padding: 14px 32px; font-size: 1.05rem; }
.btn--md { padding: 9px 18px; font-size: 0.88rem; }
.btn--sm { padding: 7px 14px; font-size: 0.82rem; }

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}
.btn--outline:hover { background: var(--color-gold); color: #1a0a2e; }

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 24px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent-green);
  margin-top: 8px;
  border-radius: 2px;
}

.tag-xq7b2 { display: none; }
.el-wp8mz { position: absolute; left: -9999px; }

header {
  background: var(--color-header);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.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;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-logo img {
  height: 50px;
  width: auto;
  border-radius: var(--radius-sm);
}

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.header-nav a:hover { background: rgba(255,255,255,0.08); color: var(--color-gold); }
.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.online-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.online-dot {
  width: 8px; height: 8px;
  background: var(--color-accent-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,200,83,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,200,83,0); }
}

.lang-dropdown {
  position: relative;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.82rem;
  font-family: var(--font-body);
  transition: background var(--transition);
}
.lang-toggle:hover { background: rgba(255,255,255,0.14); }
.lang-toggle .flag { font-size: 1rem; }
.lang-toggle svg { width: 12px; height: 12px; transition: transform var(--transition); }
.lang-dropdown.open .lang-toggle svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--color-header-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 140px;
  display: none;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: var(--color-text);
  transition: background var(--transition);
}
.lang-menu a:hover { background: rgba(255,255,255,0.08); }
.lang-menu a.active { color: var(--color-gold); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  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: var(--color-header-dark);
  z-index: 1050;
  padding: 10px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--color-gold); }
.mobile-menu svg { width: 20px; height: 20px; }
.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.mobile-menu-buttons .btn { justify-content: center; }
.mobile-menu-sep { height: 1px; background: var(--color-border); margin: 8px 0; }

.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/sweet-bonanza-1000-hero-img.avif') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,6,32,0.92) 40%, rgba(13,6,32,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 16px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.hero h1 span { color: var(--color-gold); }
.hero-desc { font-size: 1rem; color: var(--color-text-muted); margin-bottom: 28px; line-height: 1.65; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}
.hero-stat-lbl { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 3px; }

.breadcrumbs-bar {
  background: var(--color-header-dark);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.breadcrumbs a { color: var(--color-text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--color-gold); }
.breadcrumbs-sep { color: var(--color-border-light); }
.breadcrumbs-current { color: var(--color-text); }

.main-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px 0 60px;
}
.main-content { flex: 1; min-width: 0; }
.sidebar { width: 280px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--hdr-h, 68px) + 16px); align-self: flex-start; max-height: calc(100vh - var(--hdr-h, 68px) - 32px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--color-border) transparent;}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--color-border-light);
}


.block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toc-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.toc-list li a:hover { background: rgba(245,166,35,0.1); color: var(--color-gold); }
.toc-list li a svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-gold); }
.toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--color-border);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.pros-cons-grid {
  display: flex;
  gap: 20px;
}
.pros-col, .cons-col {
  flex: 1;
  border-radius: var(--radius-md);
  padding: 20px;
}
.pros-col {
  background: rgba(0,200,83,0.07);
  border: 1px solid rgba(0,200,83,0.25);
}
.cons-col {
  background: rgba(229,57,53,0.07);
  border: 1px solid rgba(229,57,53,0.25);
}
.pros-cons-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
}
.pros-cons-title.pros { color: var(--color-accent-green); }
.pros-cons-title.cons { color: var(--color-accent-red); }
.pros-cons-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.pros-cons-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.pros-cons-list li .icon-plus { color: var(--color-accent-green); }
.pros-cons-list li .icon-minus { color: var(--color-accent-red); }

.winners-table-wrap { overflow-x: auto; }
.winners-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.winners-table th {
  background: rgba(245,166,35,0.12);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 14px;
  text-align: left;
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}
.winners-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.winners-table tr:last-child td { border-bottom: none; }
.winners-table tr:hover td { background: rgba(255,255,255,0.03); }
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 0.8rem;
}
.rank-1 { background: linear-gradient(135deg, #ffd700, #ffa500); color: #1a0a2e; }
.rank-2 { background: linear-gradient(135deg, #c0c0c0, #a8a8a8); color: #1a0a2e; }
.rank-3 { background: linear-gradient(135deg, #cd7f32, #a0522d); color: #fff; }
.rank-other { background: var(--color-border); color: var(--color-text-muted); }
.winner-amount { color: var(--color-accent-green); font-weight: 700; font-family: var(--font-heading); }
.winner-multiplier { color: var(--color-gold); font-size: 0.8rem; }

.demo-block { text-align: center; }
.demo-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  background: #000;
  margin-bottom: 20px;
}
.demo-frame-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.demo-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.bonuses-grid {
  display: flex;
  gap: 18px;
}
.bonus-card {
  flex: 1;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.bonus-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.bonus-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.bonus-casino-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 6px;
}
.bonus-tag {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--color-gold);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bonus-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-accent-green);
  margin-bottom: 6px;
}
.bonus-desc { font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 14px; flex: 1; line-height: 1.5; }
.bonus-card .btn { width: 100%; text-align: center; }
.bonus-wager { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 6px; }
.bonus-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.bonus-stars svg { width: 14px; height: 14px; color: var(--color-gold); }

.bonuses-slider-dots { display: none; justify-content: center; gap: 6px; margin-top: 14px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--color-gold); }

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
}
.review-author-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}
.review-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 3px;
}
.review-author-bio { font-size: 0.8rem; color: var(--color-text-muted); line-height: 1.4; }
.review-author-link { font-size: 0.78rem; color: var(--color-gold); }
.review-author-link:hover { color: var(--color-gold-light); }

.content-area h2 { font-size: 1.35rem; font-weight: 800; color: var(--color-gold); margin: 28px 0 12px; }
.content-area h3 { font-size: 1.1rem; font-weight: 700; color: var(--color-text); margin: 20px 0 10px; }
.content-area h4 { font-size: 1rem; font-weight: 700; color: var(--color-text); margin: 16px 0 8px; }
.content-area p { margin-bottom: 14px; font-size: 0.93rem; line-height: 1.7; color: var(--color-text); }
.content-area ul, .content-area ol { padding-left: 22px; margin-bottom: 14px; }
.content-area li { margin-bottom: 6px; font-size: 0.93rem; line-height: 1.6; }
.content-area strong, .content-area b { color: var(--color-gold-light); font-weight: 700; }
.content-area em, .content-area i { color: var(--color-text-muted); font-style: italic; }
.content-area a { color: var(--color-gold); border-bottom: 1px solid rgba(245,166,35,0.3); }
.content-area a:hover { color: var(--color-gold-light); border-bottom-color: var(--color-gold-light); }
.content-area blockquote {
  border-left: 4px solid var(--color-gold);
  padding: 12px 16px;
  background: rgba(245,166,35,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--color-text-muted);
}
.content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
  display: table;
}
.content-area table th {
  background: rgba(245,166,35,0.12);
  color: var(--color-gold);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-weight: 700;
}
.content-area table td {
  padding: 9px 14px;
  border: 1px solid var(--color-border);
  vertical-align: top;
}
.content-area table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.content-area img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 12px 0; }
.content-area hr { border: none; border-top: 1px solid var(--color-border); margin: 20px 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--color-gold); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--color-gold); }
.faq-item.open .faq-question { color: var(--color-gold); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 20px 18px; }

.sidebar-block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.sidebar-block-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.game-info-list { display: flex; flex-direction: column; gap: 8px; }
.game-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.game-info-row:last-child { border-bottom: none; }
.game-info-label { color: var(--color-text-muted); }
.game-info-val { color: var(--color-text); font-weight: 600; text-align: right; max-width: 55%; }
.game-info-val.gold { color: var(--color-gold); }
.game-info-val.green { color: var(--color-accent-green); }

.rtp-bar-wrap { margin: 6px 0 0; }
.rtp-bar {
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 6px;
}
.rtp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-green), var(--color-gold));
  border-radius: 3px;
  animation: fill-rtp 1.5s ease forwards;
  width: 0;
}
@keyframes fill-rtp { to { width: 96.71%; } }

.vol-bar { display: flex; gap: 3px; margin-top: 6px; }
.vol-seg {
  flex: 1;
  height: 6px;
  border-radius: 2px;
  background: var(--color-border);
}
.vol-seg.active { background: var(--color-accent-red); }

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  margin-top: 8px;
}
.provider-logo img { height: 36px; width: auto; object-fit: contain; }

.similar-games-list { display: flex; flex-direction: column; gap: 8px; }
.similar-game-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  transition: background var(--transition);
  color: var(--color-text);
  font-size: 0.85rem;
}
.similar-game-item:hover { background: rgba(245,166,35,0.08); color: var(--color-gold); }
.similar-game-item svg { width: 16px; height: 16px; color: var(--color-gold); flex-shrink: 0; }

footer {
  background: var(--color-header-dark);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-top {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.footer-brand { flex: 0 0 200px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo a {display: block; width: fit-content;}
.footer-logo img { height: 40px; }
.footer-tagline { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.5; }
.footer-nav { flex: 1; display: flex; gap: 32px; flex-wrap: wrap; justify-content: space-evenly;}
.footer-nav-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-nav-list a { font-size: 0.83rem; color: var(--color-text-muted); transition: color var(--transition); }
.footer-nav-list a:hover { color: var(--color-gold); }

.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.footer-logos-row-label { font-size: 0.75rem; color: var(--color-text-muted); margin-right: 4px; }
.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.footer-logo-badge svg { width: 18px; height: 18px; margin-right: 5px; }
.footer-provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.6; }
.footer-legal { font-size: 0.75rem; color: var(--color-text-muted); max-width: 600px; line-height: 1.55; }
.footer-legal strong { color: var(--color-accent-red); }


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.pulse-anim { animation: pulse-btn 2.5s infinite; }
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,200,83,0.35); }
  50% { box-shadow: 0 4px 28px rgba(0,200,83,0.7); }
}

.shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.0) 100%);
  background-size: 200% 100%;
  animation: shimmer-anim 2s infinite;
}
@keyframes shimmer-anim { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.p3f8x { opacity: 0.01; position: absolute; pointer-events: none; user-select: none; }
.wc-block-z9x { display: none !important; }

.scroll-to-top {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 800;
  width: 42px; height: 42px;
  background: var(--color-gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
}
.scroll-to-top.visible { opacity: 1; transform: translateY(0); }
.scroll-to-top svg { width: 20px; height: 20px; color: #1a0a2e; }

@media (max-width: 1220px) {
  .main-layout {gap: 14px;}
  .sidebar-block {padding: 15px}
  .block {padding: 28px 20px;}
}

@media (max-width: 1024px) {
  .main-layout { flex-direction: column; }
  .bonuses-grid { flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 14px; }
  .bonus-card { flex: 0 0 240px; scroll-snap-align: start; }
  .bonuses-slider-dots { display: flex; }
  .header-nav a {padding: 4px 8px;}
  .main-layout {flex-direction: column;}
  .sidebar {width: 100%;flex-direction: row;flex-wrap: wrap;gap: 16px;position: static;max-height: none;overflow-y: visible;align-self: auto;}
  .sidebar-block {display: block; flex: 1 1 calc(50% - 8px); min-width: 240px;}
  .sidebar-block:first-child {flex: 1 1 100%;}
  .main-content {min-width: 0;max-width: 100%;overflow: hidden;}
  .content-area table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .block { min-width: 0; max-width: 100%;  }
  .demo-frame-wrap { aspect-ratio: 16/9; width: 100%; max-width: 100%;}
  .pros-cons-grid { flex-direction: column; }
}
@media (max-width: 800px) {
  .header-nav {display: none;}
  .burger { display: flex; }
}
@media (max-width: 768px) {
  .online-count { display: none; }
  .header-inner { padding: 10px 14px; }
  .hero { min-height: 340px; }
  .hero-content { margin-left: 0; padding: 40px 16px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-stats { gap: 16px; }
  .pros-cons-grid { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-nav { gap: 20px; }
  .footer-bottom { flex-direction: column; }
  .lang-menu { right: 0; }
  .block { padding: 18px; }
  .section-title { font-size: 1.35rem; }
  .widget-bar { padding: 8px 12px; gap: 8px; }
  .widget-bar-text { font-size: 0.8rem;}
  .sidebar {flex-direction: column; }
  .sidebar-block { display: none;flex: none; }
  .sidebar-block:first-child { display: block; }
}

@media (max-width: 500px) {
.header-buttons .btn--outline {display: none;}
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-btns .btn { font-size: 0.85rem; padding: 10px 18px; }
  .block { padding: 14px; border-radius: var(--radius-md); }
  .footer-logos-row { gap: 10px; }
  .footer-logo-badge { font-size: 0.68rem; padding: 5px 8px; }
  .sidebar { flex-direction: column; }
  .header-inner {padding: 10px; gap: 8px;}
}

.wp-block-iq9v { display: none; }
.elementor-r3x { display: none; }
.entry-meta-p5w { display: none; }
