:root {
  --c-bg: #0D0A1F;
  --c-bg-alt: #160E30;
  --c-bg-card: #1C1540;
  --c-bg-card2: #211950;
  --c-header: #100A24;
  --c-footer: #0A0718;
  --c-btn-login: #F5C018;
  --c-btn-login-h: #FFDA52;
  --c-btn-reg: #D93025;
  --c-btn-reg-h: #F04035;
  --c-btn-demo: #2ECC71;
  --c-btn-demo-h: #48E68A;
  --c-accent: #FF6BC8;
  --c-accent2: #A855F7;
  --c-text: #F0EBF9;
  --c-text-muted: #9D93BB;
  --c-border: #2B2255;
  --c-link: #F5C018;
  --c-gold: #F5C018;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-card: 0 2px 18px rgba(0,0,0,0.4);
  --trans: 0.25s ease;
  --font: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a { color: var(--c-link); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--c-btn-login-h); }

ul, ol { list-style: none; }

table { border-collapse: collapse; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-accent2); }

.x9k2w { display: none; }
.bv3nz { visibility: hidden; }
.qzw8m { opacity: 0; pointer-events: none; position: absolute; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr7k3 { display: none; }

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.col { flex: 1 1 0; min-width: 0; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.mt1 { margin-top: 8px; }
.mt2 { margin-top: 16px; }
.mb1 { margin-bottom: 8px; }
.mb2 { margin-bottom: 16px; }

.section-gap { padding: 60px 0; }
.section-gap-sm { padding: 40px 0; }

.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-accent));
  border-radius: 2px;
  margin-top: 6px;
}

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

.card-block--alt {
  background: var(--c-bg-card2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--trans);
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--xl { padding: 16px 40px; font-size: 18px; font-weight: 800; }

.btn--login {
  background: var(--c-btn-login);
  color: #1a0a00;
}
.btn--login:hover {
  background: var(--c-btn-login-h);
  color: #1a0a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,192,24,0.4);
}

.btn--register {
  background: var(--c-btn-reg);
  color: #fff;
}
.btn--register:hover {
  background: var(--c-btn-reg-h);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,48,37,0.5);
}

.btn--demo {
  background: var(--c-btn-demo);
  color: #012010;
}
.btn--demo:hover {
  background: var(--c-btn-demo-h);
  color: #012010;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,204,113,0.4);
}

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

.btn--ghost {
  background: rgba(255,255,255,0.07);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.13);
  color: var(--c-text);
}

.btn--bonus {
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  color: #fff;
}
.btn--bonus:hover {
  background: linear-gradient(135deg, #6D28D9, #9333EA);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168,85,247,0.5);
}

.hdr9k2 {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hdr9k2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hdr9k2-logo {
  flex-shrink: 0;
}

.hdr9k2-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.hdr9k2-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--trans);
  white-space: nowrap;
}

.hdr9k2-nav a:hover,
.hdr9k2-nav a.active {
  color: var(--c-text);
  background: rgba(255,255,255,0.07);
}

.hdr9k2-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

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

.online-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: var(--c-btn-demo);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.lang-drop {
  position: relative;
}

.lang-drop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  user-select: none;
}

.lang-drop-btn:hover { background: rgba(255,255,255,0.1); }

.lang-drop-btn .flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; }

.lang-drop-btn .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--trans);
}

.lang-drop.open .chevron { transform: rotate(180deg); }

.lang-drop-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 130px;
  overflow: hidden;
  display: none;
  z-index: 200;
}

.lang-drop.open .lang-drop-menu { display: block; animation: fadeDown 0.18s ease; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-drop-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: var(--c-text);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--trans);
}

.lang-drop-menu a:hover { background: rgba(255,255,255,0.07); color: var(--c-text); }

.lang-drop-menu .flag-img {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--trans);
  flex-shrink: 0;
}

.burger:hover { background: rgba(255,255,255,0.1); }

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.28s ease;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px;
  max-width: 100%;
}

.mobile-nav.open { display: block; animation: slideDown 0.2s ease; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--c-text-muted);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
}

.mobile-nav a:hover { background: rgba(255,255,255,0.07); color: var(--c-text); }
.mobile-nav a svg { width: 18px; height: 18px; opacity: 0.7; }

.mobile-nav-buttons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
}

.mobile-nav-buttons .btn { flex: 1; justify-content: center; }

.hero-block {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-block-bg {
  position: absolute;
  inset: 0;
  background-image: url('/sugar-rush-1000-hero.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,10,31,0.92) 0%, rgba(13,10,31,0.65) 60%, rgba(13,10,31,0.3) 100%);
  z-index: 1;
}

.hero-block-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(245,192,24,0.15);
  border: 1px solid rgba(245,192,24,0.4);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 16px;
  text-balance: balance;
}

.hero-title span {
  background: linear-gradient(90deg, var(--c-gold), var(--c-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--c-gold);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--c-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumbs-block {
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 0;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-muted);
}

.breadcrumbs-list li { display: flex; align-items: center; gap: 6px; }

.breadcrumbs-list a { color: var(--c-text-muted); font-weight: 600; transition: color var(--trans); }
.breadcrumbs-list a:hover { color: var(--c-gold); }
.breadcrumbs-list .sep { color: var(--c-border); font-size: 12px; }
.breadcrumbs-list .current { color: var(--c-text); font-weight: 700; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.info-table {
  width: 100%;
  min-width: 420px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 15px;
}

.info-table tr { transition: background var(--trans); }
.info-table tr:hover { background: rgba(255,255,255,0.03); }
.info-table tr:nth-child(odd) { background: rgba(255,255,255,0.02); }

.info-table td, .info-table th {
  padding: 11px 16px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  line-height: 1.5;
}

.info-table tr:last-child td { border-bottom: none; }

.info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
  white-space: nowrap;
  width: 42%;
}

.info-table td:last-child {
  color: var(--c-text);
  font-weight: 700;
}

.info-table .badge-rtp {
  display: inline-block;
  background: rgba(46,204,113,0.15);
  color: #2ECC71;
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: 800;
}

.info-table .badge-vol {
  display: inline-block;
  background: rgba(217,48,37,0.15);
  color: #F04035;
  border: 1px solid rgba(217,48,37,0.3);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: 800;
}

.info-table .badge-gold {
  display: inline-block;
  background: rgba(245,192,24,0.15);
  color: var(--c-gold);
  border: 1px solid rgba(245,192,24,0.3);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: 800;
}

.app-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-weight: 700;
  font-size: 15px;
  transition: all var(--trans);
}

.app-btn:hover {
  border-color: var(--c-gold);
  background: rgba(245,192,24,0.07);
  color: var(--c-text);
  transform: translateX(4px);
}

.app-btn svg { width: 28px; height: 28px; flex-shrink: 0; }

.app-btn-text small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-block-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
}

.video-block-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--trans);
  box-shadow: var(--shadow-card);
}

.bonus-card:hover {
  border-color: var(--c-accent2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.bonus-card-head {
  background: linear-gradient(135deg, #1C1048, #2A1860);
  padding: 20px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bonus-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,192,24,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bonus-card-icon svg { width: 24px; height: 24px; }

.bonus-casino-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-text);
}

.bonus-casino-rating {
  font-size: 12px;
  color: var(--c-gold);
  font-weight: 700;
  margin-top: 2px;
}

.bonus-card-body { padding: 20px; }

.bonus-amount {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  color: var(--c-gold);
  margin-bottom: 6px;
  line-height: 1.2;
}

.bonus-desc {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 14px;
  line-height: 1.55;
}

.bonus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.bonus-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(168,85,247,0.15);
  color: #C084FC;
  border: 1px solid rgba(168,85,247,0.25);
}

.bonus-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-sm);
  background: var(--c-btn-reg);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  transition: all var(--trans);
}

.bonus-btn:hover {
  background: var(--c-btn-reg-h);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217,48,37,0.4);
}

.bonus-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.bonus-slider {
  display: flex;
  transition: transform 0.35s ease;
  gap: 16px;
}

.bonus-slider .bonus-card {
  min-width: calc(100vw - 60px);
  max-width: 380px;
  flex-shrink: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  transition: all var(--trans);
}

.slider-dot.active {
  background: var(--c-gold);
  transform: scale(1.2);
}

.demo-block {
  position: relative;
}

.demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--c-border);
  box-shadow: var(--shadow);
  background: #000;
}

.demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding: 20px;
  background: var(--c-bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}

.demo-cta-text {
  font-size: 15px;
  color: var(--c-text-muted);
}

.demo-cta-text strong {
  color: var(--c-text);
  font-weight: 800;
}

.review-block {
  line-height: 1.75;
}

.review-block h2 {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800;
  color: var(--c-text);
  margin: 28px 0 14px;
}

.review-block h2:first-child { margin-top: 0; }

.review-block h3 {
  font-size: clamp(17px, 2.8vw, 22px);
  font-weight: 700;
  color: var(--c-text);
  margin: 22px 0 10px;
}

.review-block h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-gold);
  margin: 18px 0 8px;
}

.review-block p {
  color: var(--c-text-muted);
  margin-bottom: 14px;
}

.review-block p:last-child { margin-bottom: 0; }

.review-block a {
  color: var(--c-link);
  text-decoration: underline;
}

.review-block a:hover { color: var(--c-btn-login-h); }

.review-block ul, .review-block ol {
  margin: 12px 0 16px 0;
  padding-left: 20px;
  color: var(--c-text-muted);
}

.review-block ul { list-style: disc; }
.review-block ol { list-style: decimal; }

.review-block li { margin-bottom: 6px; }

.review-block strong { color: var(--c-text); font-weight: 700; }
.review-block em { color: var(--c-accent); }

.review-block blockquote {
  border-left: 4px solid var(--c-gold);
  padding: 12px 20px;
  background: rgba(245,192,24,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  margin: 16px 0;
  font-style: italic;
}

.review-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.review-block table th {
  background: var(--c-bg-alt);
  color: var(--c-text);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
}

.review-block table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  text-align: left;
}

.review-block table tr:hover td { background: rgba(255,255,255,0.03); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--trans);
}

.faq-item:hover { border-color: rgba(245,192,24,0.35); }

.faq-item.open { border-color: rgba(245,192,24,0.5); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
  user-select: none;
  transition: color var(--trans);
  list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover { color: var(--c-gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(245,192,24,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--trans);
}

.faq-item.open .faq-icon { background: rgba(245,192,24,0.2); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.author-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-gold);
  flex-shrink: 0;
}

.author-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 4px;
}

.author-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.author-bio {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.author-socials {
  display: flex;
  gap: 10px;
}

.author-social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--trans);
}

.author-social-link:hover {
  background: rgba(245,192,24,0.1);
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.author-social-link svg { width: 16px; height: 16px; }

.ftr4m {
  background: var(--c-footer);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}

.ftr4m-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-border);
}

.ftr4m-logo { margin-bottom: 14px; }
.ftr4m-logo img { height: 44px; width: auto; }

.ftr4m-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.ftr4m-col-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}

.ftr4m-col-links { display: flex; flex-direction: column; gap: 8px; }

.ftr4m-col-links a {
  font-size: 14px;
  color: var(--c-text-muted);
  font-weight: 600;
  transition: color var(--trans);
}

.ftr4m-col-links a:hover { color: var(--c-gold); }

.ftr4m-payments {
  margin: 28px 0;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}

.ftr4m-payments-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}

.ftr4m-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ftr4m-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.ftr4m-badge svg { width: 16px; height: 16px; }

.ftr4m-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.ftr4m-copy {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.ftr4m-legal {
  font-size: 11px;
  color: rgba(157,147,187,0.6);
  max-width: 560px;
  line-height: 1.6;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #1A0B2E, #2D1B5E);
  border-top: 2px solid var(--c-accent2);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.6);
  transition: transform 0.35s ease;
}

.sticky-widget.hidden { transform: translateY(100%); }

.widget-text {
  display: flex;
  flex-direction: column;
}

.widget-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-text);
}

.widget-sub {
  font-size: 13px;
  color: var(--c-accent);
  font-weight: 700;
}

.widget-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.widget-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--c-text-muted);
  cursor: pointer;
  transition: all var(--trans);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.widget-close:hover { background: rgba(255,255,255,0.15); color: var(--c-text); }
.widget-close svg { width: 14px; height: 14px; }

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.shimmer-border {
  position: relative;
}

.shimmer-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(90deg, var(--c-gold), var(--c-accent), var(--c-accent2), var(--c-gold));
  background-size: 300% 100%;
  animation: shimmer-border 4s linear infinite;
  z-index: -1;
}

@keyframes shimmer-border {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
}

.provider-badge img { height: 20px; width: auto; filter: brightness(1.2); }

.similar-games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.similar-game-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: #C084FC;
  transition: all var(--trans);
}

.similar-game-tag:hover {
  background: rgba(168,85,247,0.2);
  color: #C084FC;
}

.divider {
  height: 1px;
  background: var(--c-border);
  margin: 8px 0;
}

.wp-block-group { display: block; }
.wp-block-paragraph { display: block; }
.has-text-align-center { text-align: center; }
.aligncenter { margin: 0 auto; display: block; }
.wp-caption { max-width: 100%; }
.screen-reader-text { position: absolute; left: -9999px; }
.entry-content { display: block; }
.site-content { display: block; }
.primary-navigation { display: block; }
.no-js-menu { display: none; }
.skip-link { position: absolute; left: -9999px; }
.wp-site-blocks { display: block; }
.wp-element-caption { display: block; }

@media (max-width: 1024px) {
  .hdr9k2-nav { display: none; }
  .burger { display: flex; }
  .bonuses-grid { display: none; }
  .bonus-slider-wrapper { display: block; }
  .ftr4m-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-block { min-height: 420px; }
  .hero-block-overlay {
    background: linear-gradient(180deg, rgba(13,10,31,0.88) 0%, rgba(13,10,31,0.75) 100%);
  }
  .hero-block-content { padding: 60px 0 80px; max-width: 100%; }
  .app-block { grid-template-columns: 1fr; }
  .author-block { flex-direction: column; align-items: center; text-align: center; }
  .author-socials { justify-content: center; }
  .ftr4m-top { grid-template-columns: 1fr; }
  .ftr4m-bottom { flex-direction: column; }
  .sticky-widget { padding: 10px 14px; gap: 10px; }
  .widget-title { font-size: 13px; }
  .widget-sub { font-size: 12px; }
  .section-gap { padding: 44px 0; }
  .card-block { padding: 20px; }
  .demo-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .info-table td, .info-table th { padding: 9px 12px; font-size: 13px; }
  .hdr9k2-right .online-counter { display: none; }
}

@media (min-width: 1025px) {
  .bonus-slider-wrapper { display: none; }
  .bonuses-grid { display: grid; }
}
@media (max-width: 480px) {
  /* ... существующие стили ... */

  .table-scroll {
    overflow-x: visible;
  }

  .info-table {
    min-width: unset;
    width: 100%;
  }

  .info-table tr {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--c-border);
  }

  .info-table tr:last-child {
    border-bottom: none;
  }

  .info-table td {
    display: block;
    width: 100% !important;
    border-bottom: none;
    padding: 6px 12px;
  }

  .info-table td:first-child {
    padding-bottom: 2px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;
  }

  .info-table td:last-child {
    padding-top: 2px;
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============ DEMO MOBILE FIX ============ */
@media (max-width: 768px) {
  .demo-frame-wrap {
    padding-top: 0;
    height: 620px;
  }
}

@media (max-width: 480px) {
  .demo-frame-wrap {
    height: 580px;
  }
}

@media (max-width: 380px) {
  .demo-frame-wrap {
    height: 540px;
  }
}