@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400&display=swap');

:root {
  --clr-header: #773948;
  --clr-header-dark: #5e2c39;
  --clr-btn-play: #fca565;
  --clr-btn-play-hover: #f48d3e;
  --clr-btn-green: #39762e;
  --clr-btn-green-hover: #2d5e24;
  --clr-bg: #cb8875;
  --clr-bg-light: #d9997e;
  --clr-bg-dark: #b5735f;
  --clr-text-light: #fff8f4;
  --clr-text-dark: #1a0d08;
  --clr-text-muted: #f0d9cf;
  --clr-card: rgba(255,255,255,0.13);
  --clr-card-solid: #8b4a38;
  --clr-border: rgba(255,255,255,0.22);
  --clr-gold: #f5c842;
  --clr-gold-dark: #c89a10;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(60,20,10,0.28);
  --shadow-sm: 0 2px 10px rgba(60,20,10,0.18);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Titillium Web', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-btn-play); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-play-hover); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.28); }
.btn:active { transform: translateY(0); }
.btn-play { background: var(--clr-btn-play); color: #1a0d08; }
.btn-play:hover { background: var(--clr-btn-play-hover); color: #1a0d08; }
.btn-green { background: var(--clr-btn-green); color: #fff; }
.btn-green:hover { background: var(--clr-btn-green-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--clr-text-light); border: 2px solid var(--clr-border); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--clr-text-light); }
.btn-lg { padding: 14px 34px; font-size: 1.08rem; }
.btn-sm { padding: 7px 16px; font-size: 0.85rem; }

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(60,10,20,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-logo img { height: 60px; width: auto; object-fit: contain; }
.header-logo .site-name { font-size: 1.15rem; font-weight: 700; color: var(--clr-text-light); display: none; }

.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a {
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), background var(--transition);
}
.header-nav a:hover { color: var(--clr-text-light); background: rgba(255,255,255,0.1); }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-cta { display: flex; align-items: center; gap: 8px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--clr-text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--clr-header-dark);
  padding: 16px 18px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--clr-text-light); }
.mobile-menu a svg { width: 18px; height: 18px; }

.hero {
  background: var(--clr-header-dark);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero-bg {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.65);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(87,22,38,0.85) 40%, transparent 100%);
  display: flex;
  align-items: center;
}
.hero-content {
  padding: 32px 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--clr-btn-play); }
.hero-content p { font-size: 1.05rem; color: var(--clr-text-muted); margin-bottom: 22px; line-height: 1.65;max-width: 600px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-tiles { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tile {
  background: rgba(255,255,255,0.13);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(4px);
}
.hero-tile .tile-label { font-size: 0.72rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-tile .tile-value { font-size: 1.05rem; font-weight: 700; color: var(--clr-gold); }

.section { padding: 54px 0; }
.section-alt { background: rgba(0,0,0,0.12); }
.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--clr-text-light);
  margin-bottom: 8px;
  line-height: 1.25;
  text-align: center;
}
.section-title span { color: var(--clr-gold); }
.section-sub {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

.jackpots-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.jackpot-card {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  background: var(--clr-card-solid);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.jackpot-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(60,10,20,0.38); }
.jackpot-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 90px; height: 90px;
  border-radius: 50%;
  opacity: 0.25;
}
.jackpot-card.tier-gold::before { background: var(--clr-gold); }
.jackpot-card.tier-silver::before { background: #c0c0c0; }
.jackpot-card.tier-bronze::before { background: #cd7f32; }
.jackpot-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.tier-gold .jackpot-tier { color: var(--clr-gold); }
.tier-silver .jackpot-tier { color: #d0d0d0; }
.tier-bronze .jackpot-tier { color: #cd7f32; }
.jackpot-amount {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--clr-text-light);
  margin-bottom: 14px;
  line-height: 1;
}
.jackpot-players { display: flex; flex-direction: column; gap: 7px; }
.jackpot-player {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--clr-text-muted);
}
.jackpot-player-rank {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--clr-btn-play);
  width: 18px;
}
.jackpot-player-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.jackpot-player-name { flex: 1; font-weight: 600; color: var(--clr-text-light); }
.jackpot-player-win { color: var(--clr-gold); font-weight: 700; }

.winners-wrap { overflow-x: auto; }
.winners-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--clr-card-solid);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.winners-table th {
  background: var(--clr-header);
  color: var(--clr-text-light);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 13px 16px;
  text-align: left;
  border-bottom: 2px solid var(--clr-border);
}
.winners-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  font-size: 0.93rem;
  color: var(--clr-text-light);
  text-align: left;
}
.winners-table tr:last-child td { border-bottom: none; }
.winners-table tr:hover td { background: rgba(255,255,255,0.06); }
.winners-table .rank-1 td:first-child { color: var(--clr-gold); font-weight: 800; }
.winners-table .rank-2 td:first-child { color: #d0d0d0; font-weight: 700; }
.winners-table .rank-3 td:first-child { color: #cd7f32; font-weight: 700; }
.win-amount { color: var(--clr-gold); font-weight: 700; }
.badge-new { background: var(--clr-btn-green); color: #fff; font-size: 0.7rem; padding: 2px 7px; border-radius: 20px; font-weight: 700; margin-left: 6px; }

.demo-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.demo-frame {
  width: 100%;
  max-width: 820px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--clr-border);
  aspect-ratio: 16/9;
  background: #0f0a0a;
}
.demo-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.demo-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.similar-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.similar-card {
  background: var(--clr-card-solid);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.similar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.similar-card-img {
  width: 120px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--clr-gold);
  border: 2px solid var(--clr-border);
}
.similar-card-name { font-weight: 700; font-size: 0.97rem; color: var(--clr-text-light); }
.similar-card-desc { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.5; flex: 1; }
.similar-card-btns { display: flex; gap: 7px; justify-content: center; }

.review-content {
  background: var(--clr-card-solid);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  margin: 0 auto;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--clr-border);
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-btn-play);
  flex-shrink: 0;
}
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.author-name { font-weight: 700; font-size: 1.05rem; color: var(--clr-text-light); }
.author-title { font-size: 0.82rem; color: var(--clr-text-muted); }
.review-body { color: var(--clr-text-light); line-height: 1.7; }
.review-body h2, .review-body h3, .review-body h4 { color: var(--clr-gold); margin: 20px 0 10px; font-weight: 700; }
.review-body p { margin-bottom: 14px; }
.review-body ul, .review-body ol { margin: 10px 0 16px 20px; }
.review-body li { margin-bottom: 7px; line-height: 1.6; }
.review-body table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.review-body table th { background: var(--clr-header); color: var(--clr-text-light); padding: 10px 14px; text-align: left; font-weight: 700; border: 1px solid var(--clr-border); }
.review-body table td { padding: 9px 14px; text-align: left; border: 1px solid var(--clr-border); color: var(--clr-text-light); }
.review-body a { color: var(--clr-btn-play); }
.review-body strong { color: var(--clr-gold); font-weight: 700; }

.faq-list {  margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--clr-card-solid);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  color: var(--clr-text-light);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,0.05); }
.faq-q svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--clr-btn-play); transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.22s;
  padding: 0 20px;
  color: var(--clr-text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 16px; }

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.testimonial-card {
  background: var(--clr-card-solid);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); }
.tc-header { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-btn-play);
  flex-shrink: 0;
}
.tc-name { font-weight: 700; font-size: 0.97rem; color: var(--clr-text-light); }
.tc-stars { color: var(--clr-gold); font-size: 0.87rem; letter-spacing: 1px; }
.tc-text { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.6; }

.review-form-wrap {
  max-width: 560px;
  margin: 40px auto 0;
  background: var(--clr-card-solid);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
}
.review-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--clr-text-light); margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.87rem; font-weight: 600; color: var(--clr-text-muted); }
.form-group input, .form-group textarea {
  background: rgba(0,0,0,0.22);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--clr-text-light);
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--clr-btn-play); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-success {
  display: none;
  background: var(--clr-btn-green);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: center;
  font-weight: 600;
  font-size: 0.97rem;
  margin-top: 10px;
}

.site-footer {
  background: var(--clr-header-dark);
  padding: 44px 0 24px;
  margin-top: 8px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 24px;
}
.footer-logo-col { display: flex; flex-direction: column; gap: 10px; }
.footer-logo-col-link {display: block;width: fit-content;}
.footer-logo img { height: 60px; width: auto; object-fit: contain; }
.footer-nav-col { flex: 1; min-width: 180px; }
.footer-nav-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-text-muted); margin-bottom: 12px; font-weight: 700; }
.footer-nav-col a { display: block; color: var(--clr-text-muted); font-size: 0.88rem; padding: 4px 0; transition: color var(--transition); }
.footer-nav-col a:hover { color: var(--clr-btn-play); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 6px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-text-muted);
}
.trust-badge svg { width: 14px; height: 14px; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 10px; }
.pay-icon {
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.03em;
}
.footer-socials { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 10px; }
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.22); }
.social-link svg { width: 16px; height: 16px; color: var(--clr-text-muted); }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--clr-text-muted); line-height: 1.55; margin-bottom: 8px; }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.5; max-width: 820px; margin: 10px auto 0; }
.footer-flag { height: 20px;width: auto; }
.provider-logo img { height: 32px; width: auto; object-fit: contain; opacity: 0.75; }

.sticky-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: var(--clr-header);
  border: 2px solid var(--clr-btn-play);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
  animation: widgetPop 0.5s 1.2s both;
}
@keyframes widgetPop {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.widget-logo img { width: 44px; height: 44px; border-radius: var(--radius-sm); object-fit: cover; }
.widget-text .widget-name { font-weight: 700; font-size: 0.88rem; color: var(--clr-text-light); }
.widget-text .widget-bonus { font-size: 0.78rem; color: var(--clr-gold); font-weight: 600; }
.widget-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--clr-header-dark);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  transition: background var(--transition);
  line-height: 1;
}
.widget-close:hover { background: rgba(255,255,255,0.2); }

.info-page { padding: 50px 0; max-width: 820px; margin: 0 auto; }
.info-page h1 { font-size: 2rem; font-weight: 800; color: var(--clr-text-light); margin-bottom: 28px; }
.info-page h2 { font-size: 1.3rem; font-weight: 700; color: var(--clr-gold); margin: 24px 0 10px; }
.info-page p { color: var(--clr-text-muted); line-height: 1.7; margin-bottom: 14px; }
.info-page ul, .info-page ol { margin: 10px 0 16px 20px; }
.info-page li { color: var(--clr-text-muted); margin-bottom: 7px; line-height: 1.6; }
.info-page a { color: var(--clr-btn-play); }

.d-none-mb { display: none; }
.wp-content-dummy { display: none; visibility: hidden; pointer-events: none; height: 0; overflow: hidden; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .hero-content h1 { font-size: 1.65rem; }
  .section-title { font-size: 1.45rem; }
  .jackpot-card { min-width: 220px; }
}
@media (max-width: 600px) {
  
  .hero-content { padding: 22px 14px; }
  .hero-content h1 { font-size: 1.35rem; }
  .hero-btns { gap: 8px; }
  .btn-lg { padding: 11px 22px; font-size: 0.97rem; }
  .jackpots-grid { flex-direction: column; align-items: center; }
  .jackpot-card { max-width: 100%; }
  .similar-card { min-width: 160px; max-width: 48%; }
  .sticky-widget { right: 10px; bottom: 12px; padding: 10px 12px; gap: 9px; }
  .review-content { padding: 20px 16px; }
  .review-form-wrap { padding: 20px 16px; }
  .footer-top { flex-direction: column; }
  .section { padding: 36px 0; }
}
@media (max-width: 480px) {
.hero-bg { height: 700px; }
}
@media (min-width: 901px) {
  .header-cta { display: flex; }
}

.spin-anim { animation: spinOnce 1.2s linear; }
@keyframes spinOnce { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.fade-in { animation: fadeIn 0.7s both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.pulse-glow { animation: pulseGlow 2.5s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252,165,101,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(252,165,101,0); }
}

.section-divider { width: 60px; height: 3px; background: var(--clr-btn-play); border-radius: 2px; margin: 0 auto 28px; }

.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 0.83rem; color: var(--clr-text-muted); padding: 10px 0; }
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-btn-play); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.rtp-bar-wrap { width: 100%; max-width: 360px; }
.rtp-bar-track { background: rgba(0,0,0,0.28); border-radius: 20px; height: 9px; overflow: hidden; margin-top: 5px; }
.rtp-bar-fill { height: 100%; border-radius: 20px; background: linear-gradient(90deg, var(--clr-btn-green), var(--clr-gold)); width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1) 0.3s; }

.xb4r2 { display: none; }
.qz9w1-hidden { visibility: hidden; position: absolute; top: -9999px; left: -9999px; }
