:root {
  --bg-main: #0d0e1a;
  --bg-nav: #11122b;
  --bg-card: #181a35;
  --bg-card2: #1e2040;
  --color-accent: #f5a623;
  --color-accent2: #e8410a;
  --color-green: #27ae60;
  --color-text: #e8eaf0;
  --color-muted: #8b8fa8;
  --color-border: #2a2d52;
  --color-gold: #f5c518;
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
}

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

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

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background-color: var(--bg-main);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-gold); }

.x9f2a, .kq81b { display: none; visibility: hidden; }

.wp-block-group { display: block; }
.wp-block-columns { display: flex; flex-wrap: wrap; gap: 1rem; }
.entry-content { line-height: 1.8; }
.elementor-widget-wrap { position: relative; }

.g-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.btn--demo {
  background: rgba(245, 166, 35, 0.12);
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
}
.btn--demo:hover { background: rgba(245,166,35,0.22); color: var(--color-accent); }

.btn--play {
  background: linear-gradient(135deg, #f5a623 0%, #e8410a 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,65,10,0.35);
}
.btn--play:hover { color: #fff; box-shadow: 0 6px 24px rgba(232,65,10,0.55); }

.btn--reg {
  background: linear-gradient(135deg, #27ae60 0%, #1a7a41 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(39,174,96,0.3);
}
.btn--reg:hover { color: #fff; box-shadow: 0 6px 24px rgba(39,174,96,0.5); }

.btn--lg { padding: 14px 34px; font-size: 1.05rem; border-radius: var(--radius-sm); }

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 68px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img { height: 42px; width: auto; border-radius: 6px; }
.logo-text {
  font-family: 'Rajdhani', 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.header-nav a svg { width: 16px; height: 16px; opacity: 0.75; }
.header-nav a:hover { background: rgba(255,255,255,0.07); color: var(--color-gold); }

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

.online-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.76rem;
  color: #4de980;
  font-weight: 700;
  white-space: nowrap;
}
.online-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #27ae60;
  box-shadow: 0 0 6px #27ae60;
  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.85); }
}

.lang-dropdown {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,0.11); }
.lang-btn .flag { font-size: 1rem; }
.lang-btn .chevron { font-size: 0.6rem; opacity: 0.6; transition: transform var(--transition); }
.lang-dropdown.open .chevron { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-card2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  min-width: 130px;
  box-shadow: var(--shadow);
  z-index: 200;
  overflow: hidden;
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  color: var(--color-text);
  font-size: 0.84rem;
  font-weight: 600;
  transition: background var(--transition);
}
.lang-menu a:hover { background: rgba(255,255,255,0.07); }
.lang-menu a .flag { font-size: 1rem; }

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 20px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-nav);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px 16px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.07); }

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-plinko.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,14,26,0.88) 40%, rgba(13,14,26,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 60px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hero-h1 {
  font-family: 'Rajdhani', 'Nunito', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  text-wrap: balance;
}
.hero-h1 span { color: var(--color-gold); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(232,234,240,0.82);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-feat {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(232,234,240,0.9);
}
.hero-feat svg { width: 14px; height: 14px; color: var(--color-accent); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.breadcrumb-bar {
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--color-muted); transition: color var(--transition); }
.breadcrumb-inner a:hover { color: var(--color-accent); }
.breadcrumb-inner .bc-sep { color: var(--color-border); }
.breadcrumb-inner .bc-current { color: var(--color-text); font-weight: 600; }

.main-layout {
  padding: 36px 0 60px;
}

.content-grid {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.content-main { flex: 1; min-width: 0; }
.content-sidebar {
  width: 270px;
  flex-shrink: 0;
  position: sticky;
  top: 88px;
  margin-right: 10px;
}

.block-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.block-card--accent {
  border-color: rgba(245,166,35,0.3);
  background: linear-gradient(135deg, #181a35 0%, #1e1638 100%);
}

.block-title {
  font-family: 'Rajdhani', 'Nunito', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.block-title svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }
.block-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-border), transparent);
  margin-left: 8px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toc-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  border: 1px solid transparent;
}
.toc-list a:hover {
  background: rgba(245,166,35,0.08);
  color: var(--color-accent);
  border-color: rgba(245,166,35,0.18);
}
.toc-list a svg { width: 16px; height: 16px; flex-shrink: 0; }
.toc-num {
  width: 20px; height: 20px;
  background: rgba(245,166,35,0.12);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
}

.info-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.info-table tr { border-bottom: 1px solid var(--color-border); transition: background var(--transition); }
.info-table tr:last-child { border-bottom: none; }
.info-table tr:hover { background: rgba(255,255,255,0.03); }
.info-table td {
  padding: 11px 14px;
  text-align: left;
  vertical-align: middle;
}
.info-table td:first-child {
  color: var(--color-muted);
  font-weight: 600;
  width: 42%;
  white-space: nowrap;
}
.info-table td:last-child { color: var(--color-text); font-weight: 600; }
.info-table .td-val-gold { color: var(--color-gold); }
.info-table .td-val-green { color: var(--color-green); }
.info-table .td-icon { display: inline-flex; align-items: center; gap: 5px; }
.info-table .badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-right: 3px;
}
.info-table .badge-green {
  background: rgba(39,174,96,0.1);
  border-color: rgba(39,174,96,0.25);
  color: #4de980;
}

.demo-frame-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  min-height: 400px;
}
.demo-frame-wrap iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}
.demo-play-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.demo-note {
  font-size: 0.82rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.demo-note svg { width: 14px; height: 14px; }

.jackpots-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.jackpot-card {
  flex: 1;
  min-width: 200px;
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.jackpot-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.5); }
.jackpot-card--gold {
  background: linear-gradient(135deg, #2a1f00 0%, #3d2c00 100%);
  border: 1px solid rgba(245,197,24,0.4);
}
.jackpot-card--silver {
  background: linear-gradient(135deg, #1a1d2e 0%, #232640 100%);
  border: 1px solid rgba(180,190,210,0.3);
}
.jackpot-card--bronze {
  background: linear-gradient(135deg, #1f1410 0%, #2d1e14 100%);
  border: 1px solid rgba(205,127,50,0.3);
}
.jackpot-medal {
  font-size: 2rem;
  margin-bottom: 6px;
  display: block;
}
.jackpot-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.jackpot-amount {
  font-family: 'Rajdhani', 'Nunito', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.jackpot-card--gold .jackpot-amount { color: var(--color-gold); }
.jackpot-card--silver .jackpot-amount { color: #b0c4de; }
.jackpot-card--bronze .jackpot-amount { color: #cd7f32; }
.jackpot-currency { font-size: 0.78rem; color: var(--color-muted); margin-bottom: 14px; }

.jackpot-players { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 12px; }
.jackpot-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 5px 0;
  font-size: 0.8rem;
}
.jackpot-player-name { display: flex; align-items: center; gap: 5px; color: var(--color-text); font-weight: 600; }
.jackpot-player-name .av {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #c0392b);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.jackpot-player-win { color: var(--color-green); font-weight: 700; }

.review-content {
  line-height: 1.75;
  color: var(--color-text);
}
.review-content h2 {
  font-family: 'Rajdhani', 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 28px 0 12px;
}
.review-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 22px 0 10px;
}
.review-content p { margin-bottom: 14px; }
.review-content ul, .review-content ol {
  margin: 0 0 14px 20px;
}
.review-content ul li, .review-content ol li { margin-bottom: 6px; }
.review-content strong { color: var(--color-gold); }
.review-content em { color: var(--color-accent); }
.review-content a { color: var(--color-accent); border-bottom: 1px solid rgba(245,166,35,0.3); }
.review-content a:hover { color: var(--color-gold); }
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}
.review-content table th, .review-content table td {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  text-align: left;
}
.review-content table th { background: var(--bg-card2); color: var(--color-gold); font-weight: 700; }
.review-content blockquote {
  border-left: 3px solid var(--color-accent);
  margin: 16px 0;
  padding: 10px 16px;
  background: rgba(245,166,35,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: rgba(232,234,240,0.85);
}
.review-content img {max-width: 450px; margin: 20px auto; border-radius: 10px;}

.author-box {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card2);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin-top: 20px;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-name {
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.author-name a { color: var(--color-accent); }
.author-desc { font-size: 0.8rem; color: var(--color-muted); line-height: 1.5; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(245,166,35,0.4); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  user-select: none;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-q .faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-q .faq-icon svg { width: 12px; height: 12px; color: var(--color-accent); transition: transform var(--transition); }
.faq-item.open .faq-q .faq-icon { background: var(--color-accent); }
.faq-item.open .faq-q .faq-icon svg { transform: rotate(45deg); color: #fff; }
.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: rgba(232,234,240,0.82);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
}
.faq-item.open .faq-a { display: block; }
.faq-a-inner { padding-top: 14px; }

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-card-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.sidebar-game-logo {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.sidebar-btn-group { display: flex; flex-direction: column; gap: 8px; }
.sidebar-btn-group .btn { justify-content: center; width: 100%; }
.sidebar-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.84rem;
}
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat-label { color: var(--color-muted); }
.sidebar-stat-val { font-weight: 700; color: var(--color-text); }
.sidebar-stat-val.gold { color: var(--color-gold); }
.sidebar-stat-val.green { color: var(--color-green); }

.site-footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--color-border);
  padding: 40px 0 0;
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-wrap img { height: 38px; width: auto; border-radius: 6px; }
.footer-desc { font-size: 0.84rem; color: var(--color-muted); line-height: 1.6; max-width: 280px; }

.footer-nav-group { min-width: 150px; }
.footer-nav-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--color-muted);
  margin-bottom: 12px;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-nav-list a {
  color: rgba(232,234,240,0.7);
  font-size: 0.86rem;
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--color-accent); }

.footer-payments {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.footer-payments-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-muted);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.footer-logos-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.f-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(232,234,240,0.65);
  transition: background var(--transition), color var(--transition);
}
.f-logo-badge:hover { background: rgba(255,255,255,0.09); color: var(--color-text); }
.f-logo-badge svg { width: 16px; height: 16px; }

.footer-provider {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-provider span { font-size: 0.82rem; color: var(--color-muted); }
.footer-provider img { height: 28px; width: auto; opacity: 0.8; }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-legal {
  font-size: 0.77rem;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 700px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--color-muted);
  white-space: nowrap;
}
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(232,65,10,0.15);
  border: 1.5px solid rgba(232,65,10,0.4);
  color: #e8410a;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.widget-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0f1020 0%, #1a0d30 100%);
  border-top: 1px solid rgba(245,166,35,0.3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.widget-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.widget-bonus-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.widget-bonus-text strong { color: var(--color-gold); font-size: 1rem; }
.widget-bonus-sub { font-size: 0.75rem; color: var(--color-muted); }
.widget-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.widget-close {
  background: none;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.widget-close:hover { color: var(--color-text); }

body { padding-bottom: 72px; }

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

.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(232,65,10,0.35); }
  50% { box-shadow: 0 4px 32px rgba(232,65,10,0.7); }
}

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

@media (max-width: 900px) {
  .content-sidebar { display: none; }
  .content-grid { display: block; }
  .jackpots-grid { flex-direction: column; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger-btn { display: flex; }
  .online-badge .ob-text { display: none; }
  .hero-section { min-height: 380px; }
  .hero-content { padding: 40px 0; }
  .lang-menu { right: 0; }
  .demo-frame-wrap iframe { height: 380px; }
  .demo-frame-wrap {background: transparent;}
  .footer-top { gap: 20px; }
  .widget-bonus-text { font-size: 0.8rem; }
  .review-content img {max-width: 350px;}
}

@media (max-width: 580px) {
.review-content img {max-width: 250px; margin: 15px auto; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .block-card { padding: 16px; }
  .jackpot-card { min-width: 100%; }
  .footer-bottom { flex-direction: column; }
  .header-right .btn--demo {display: none;}

}

.d82hf { color: transparent; font-size: 0; height: 0; overflow: hidden; position: absolute; }
.wp-admin-bar { display: none !important; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.has-global-padding { padding-right: var(--wp--style--global--content-size,calc((100% - 1240px)/2)); padding-left: var(--wp--style--global--content-size,calc((100% - 1240px)/2)); }
.is-layout-flex { display: flex; flex-wrap: wrap; }
