@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

:root {
  --c-nav: #362871;
  --c-nav-dark: #261d55;
  --c-nav-light: #4a38a0;
  --c-btn-play: #3b6b1b;
  --c-btn-play-hover: #2e5315;
  --c-btn-bonus: #e76213;
  --c-btn-bonus-hover: #c85210;
  --c-bg: #bc1377;
  --c-bg-dark: #8e0e59;
  --c-bg-light: #d4178a;
  --c-text-light: #fff;
  --c-text-muted: rgba(255,255,255,0.75);
  --c-gold: #f5c518;
  --c-gold-dark: #d4a80f;
  --c-block-bg: rgba(30,18,70,0.92);
  --c-block-border: rgba(245,197,24,0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --trans: 0.25s ease;
}

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

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

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

a { color: var(--c-gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--c-btn-bonus); }

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

.xk9p2 { display: none; }
.rq7a1 { visibility: hidden; position: absolute; left: -9999px; }

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

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

.container--full { max-width: 100%; padding: 0; }

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

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

.col { flex: 1 1 0%; }
.col-auto { flex: 0 0 auto; }
.col-2 { flex: 0 0 calc(50% - 8px); }
.col-3 { flex: 0 0 calc(33.333% - 11px); }
.col-4 { flex: 0 0 calc(25% - 12px); }

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

.mt0 { margin-top: 0; }
.mt1 { margin-top: 8px; }
.mt2 { margin-top: 16px; }
.mt3 { margin-top: 24px; }
.mb1 { margin-bottom: 8px; }
.mb2 { margin-bottom: 16px; }
.mb3 { margin-bottom: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }

.btn--play {
  background: var(--c-btn-play);
  color: #fff;
}
.btn--play:hover { background: var(--c-btn-play-hover); color: #fff; }

.btn--bonus {
  background: var(--c-btn-bonus);
  color: #fff;
}
.btn--bonus:hover { background: var(--c-btn-bonus-hover); color: #fff; }

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

.btn--lg { padding: 14px 32px; font-size: 1.1rem; }
.btn--sm { padding: 7px 14px; font-size: 0.82rem; }

.btn--gold {
  background: linear-gradient(135deg, #f5c518 0%, #e0a800 100%);
  color: #1a1a1a;
  font-weight: 700;
}
.btn--gold:hover { background: linear-gradient(135deg, #ffd740 0%, #f5c518 100%); color: #000; }

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

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

.header-logo a { display: flex; align-items: center; gap: 10px; }

.header-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.header-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.jackpot-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.85rem;
  color: var(--c-gold);
  white-space: nowrap;
}

.jackpot-ticker svg { flex-shrink: 0; }
.jackpot-amount { font-weight: 700; font-size: 1rem; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.header-nav li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
}

.header-nav li a:hover {
  color: var(--c-gold);
  background: rgba(255,255,255,0.08);
}

.header-nav li a svg { width: 16px; height: 16px; }

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text-light);
  border-radius: 2px;
  transition: all var(--trans);
}

.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); }

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-nav-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/wheres-the-gold-hero.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,18,70,0.85) 0%, rgba(188,19,119,0.4) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,0.15);
  border: 1px solid var(--c-gold);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  color: var(--c-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin-bottom: 14px;
}

.hero-title span { color: var(--c-gold); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars { display: flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; fill: var(--c-gold); }

.hero-rating-text { font-size: 0.85rem; color: var(--c-text-muted); }
.hero-rating-score { font-size: 1.1rem; font-weight: 700; color: var(--c-gold); }

.section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

.demo-section {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.demo-frame-wrap {
  flex: 1 1 0%;
  min-width: 0;
}

.demo-frame-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
  flex-wrap: wrap;
}

.demo-label {
  font-size: 0.78rem;
  color: var(--c-gold);
  border: 1px solid rgba(245,197,24,0.4);
  border-radius: 4px;
  padding: 2px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-iframe {
  width: 100%;
  height: 440px;
  border: 2px solid var(--c-gold);
  border-radius: var(--radius);
  background: #000;
  display: block;
}

.game-details-sidebar {
  flex: 0 0 280px;
  min-width: 0;
}

.game-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}

.game-details-table tr {
  border-bottom: 1px solid rgba(245,197,24,0.12);
  transition: background var(--trans);
}

.game-details-table tr:last-child { border-bottom: none; }
.game-details-table tr:hover { background: rgba(255,255,255,0.04); }

.game-details-table td {
  padding: 8px 10px;
  vertical-align: middle;
  text-align: left;
}

.game-details-table td:first-child {
  color: var(--c-text-muted);
  font-size: 0.8rem;
  white-space: nowrap;
  width: 50%;
}

.game-details-table td:first-child .td-inner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.game-details-table td:first-child svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.75;
}

.game-details-table td:last-child {
  font-weight: 500;
  color: #fff;
}

.game-details-table .td-gold { color: var(--c-gold); font-weight: 700; }

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.advantage-tile {
  flex: 1 1 calc(33.333% - 10px);
  min-width: 200px;
  background: rgba(54,40,113,0.7);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}

.advantage-tile:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  box-shadow: 0 8px 24px rgba(245,197,24,0.15);
}

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

.advantage-icon svg { width: 22px; height: 22px; fill: var(--c-gold); }

.advantage-text h3 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.advantage-text p { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.5; }

.leaderboard-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.leaderboard-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.leaderboard-table thead th {
  background: rgba(245,197,24,0.12);
  color: var(--c-gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid rgba(245,197,24,0.25);
}

.leaderboard-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--trans);
}

.leaderboard-table tbody tr:hover { background: rgba(255,255,255,0.05); }

.leaderboard-table tbody td {
  padding: 10px 14px;
  font-size: 0.9rem;
  vertical-align: middle;
  text-align: left;
}

.lb-rank {
  font-weight: 700;
  width: 40px;
}

.lb-rank.gold { color: #FFD700; }
.lb-rank.silver { color: #C0C0C0; }
.lb-rank.bronze { color: #CD7F32; }

.lb-nick { font-weight: 600; color: #fff; }
.lb-amount { color: var(--c-gold); font-weight: 700; }
.lb-game { font-size: 0.8rem; color: var(--c-text-muted); }

.lb-bar-wrap { width: 100px; background: rgba(255,255,255,0.08); border-radius: 4px; height: 6px; }
.lb-bar { height: 6px; border-radius: 4px; background: linear-gradient(90deg, var(--c-gold), var(--c-btn-bonus)); }

.strategies-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.strategy-tile {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 240px;
  background: rgba(54,40,113,0.7);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}

.strategy-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(245,197,24,0.2);
}

.strategy-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: brightness(0.85);
}

.strategy-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.strategy-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-gold);
  border: 1px solid rgba(245,197,24,0.4);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.strategy-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.strategy-desc { font-size: 0.83rem; color: var(--c-text-muted); line-height: 1.55; flex: 1; margin-bottom: 14px; }

.review-block {
  background: rgba(30,18,70,0.85);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: var(--radius);
  padding: 32px;
}

.review-block h2, .review-block h3, .review-block h4 {
  color: var(--c-gold);
  margin: 20px 0 10px;
  line-height: 1.3;
}

.review-block h2 { font-size: 1.5rem; }
.review-block h3 { font-size: 1.25rem; }
.review-block h4 { font-size: 1.05rem; }

.review-block p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.review-block ul, .review-block ol {
  margin: 12px 0 16px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.review-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
  text-align: left;
}

.review-block table th {
  background: rgba(245,197,24,0.12);
  color: var(--c-gold);
  padding: 10px 14px;
  border: 1px solid rgba(245,197,24,0.25);
}

.review-block table td {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}

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

.review-block strong { color: #fff; font-weight: 700; }

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

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

.faq-item {
  background: rgba(54,40,113,0.6);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: background var(--trans);
}

.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-question.active { color: var(--c-gold); }

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

.faq-question.active .faq-icon { transform: rotate(45deg); background: rgba(245,197,24,0.25); }

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.faq-answer.open { display: block; }

.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: rgba(54,40,113,0.6);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius);
  padding: 24px;
}

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

.author-info { flex: 1; }
.author-name { font-size: 1.15rem; font-weight: 700; color: var(--c-gold); margin-bottom: 2px; }
.author-title { font-size: 0.85rem; color: var(--c-text-muted); margin-bottom: 8px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 10px; }

.author-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.author-meta-item svg { width: 13px; height: 13px; opacity: 0.7; }
.author-bio { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 12px; }
.author-links { display: flex; flex-wrap: wrap; gap: 8px; }

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--c-gold);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: 50px;
  padding: 3px 12px;
  transition: all var(--trans);
}

.author-link:hover { background: rgba(245,197,24,0.15); color: var(--c-gold); }

.article-dates {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.article-dates span { display: flex; align-items: center; gap: 5px; }

.site-footer {
  background: var(--c-nav);
  border-top: 2px solid var(--c-gold);
  margin-top: auto;
  padding: 40px 0 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(245,197,24,0.15);
}

.footer-col { flex: 1 1 180px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 54px; width: auto; }
.footer-logo-link {display: block;width: fit-content;}
.footer-logo-name { font-size: 1rem; font-weight: 700; color: var(--c-gold); letter-spacing: 1px; margin-top: 6px; }

.footer-desc { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 12px; }

.footer-nav-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-gold);
  margin-bottom: 12px;
}

.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-nav-list li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--trans);
}
.footer-nav-list li a:hover { color: var(--c-gold); }

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

.social-links { display: flex; flex-wrap: wrap; gap: 8px; }

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}

.social-link:hover { background: var(--c-gold); border-color: var(--c-gold); }
.social-link:hover svg { fill: #000; }
.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.75); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}

.trust-badge svg { width: 12px; height: 12px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
}

.footer-copyright { font-size: 0.78rem; color: var(--c-text-muted); }

.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  max-width: 700px;
  margin: 12px 0;
  text-align: center;
  width: 100%;
}

.footer-flag { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.footer-flag img{height: 20px; width: auto;}
.sticky-widget {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 990;
  background: var(--c-nav);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  animation: slideInRight 0.5s ease 1s both;
}

@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.widget-logo { width: auto; height: 44px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }

.widget-body { flex: 1; min-width: 0; }
.widget-title { font-size: 0.82rem; font-weight: 700; color: var(--c-gold); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.widget-bonus { font-size: 0.72rem; color: rgba(255,255,255,0.75); margin-bottom: 6px; }

.widget-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--c-btn-bonus);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  line-height: 1;
}

.section-wrap {
  padding: 32px 0;
}

.section-wrap:first-child { padding-top: 24px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  padding: 12px 0;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb span { opacity: 0.5; }

.tag-rtp { color: var(--c-gold); font-weight: 700; font-size: 1.1rem; }

.lazy-fade { opacity: 0; transition: opacity 0.5s ease; }
.lazy-fade.loaded { opacity: 1; }

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
}

.pulse-anim { animation: pulseGold 2s infinite; }

@keyframes countUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.count-anim { animation: countUp 0.6s ease both; }

.wp-block-spacer { display: block; }
.wp-caption { max-width: 100%; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
#wpadminbar { display: none !important; }
.elementor-invisible { visibility: hidden; }
.elementor-widget-container { position: relative; }
.wp-site-blocks { padding: 0; }
#page.site { min-height: 100vh; }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}

.mobile-overlay.active { display: block; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--c-nav-dark);
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--trans);
}

.mobile-nav.active {
  display: flex;
  transform: translateX(0);
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 24px;
  line-height: 1;
}

.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; width: 100%; }
.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
}

.mobile-nav ul li a:hover { background: rgba(255,255,255,0.08); color: var(--c-gold); }
.mobile-nav ul li a svg { width: 18px; height: 18px; }
.mobile-nav-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .demo-section { flex-direction: column; }
  .game-details-sidebar { flex: 1 1 100%; }
  .game-iframe { height: 340px; }
  .col-3 { flex: 0 0 calc(50% - 8px); }
  .advantage-tile { flex: 1 1 calc(50% - 8px); }
  .strategy-tile { flex: 1 1 calc(50% - 8px); }
  .jackpot-ticker {display: none;}
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .jackpot-ticker { display: none; }

  .hero-content { padding: 40px 0; }
  .hero-title { font-size: 1.8rem; }

  .col-2, .col-3, .col-4 { flex: 1 1 100%; }
  .advantage-tile { flex: 1 1 100%; }
  .strategy-tile { flex: 1 1 100%; }

  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-links { justify-content: center; }
  .author-meta { justify-content: center; }
  .article-dates { justify-content: center; }

  .sticky-widget { bottom: 12px; right: 10px; left: 10px; max-width: none; }

  .footer-top { flex-direction: column; gap: 24px; }

  .review-block { padding: 20px; }

  .box { padding: 16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .game-iframe { height: 260px; }
  .btn--lg { padding: 12px 22px; font-size: 1rem; }
  .header-cta .btn:not(.btn--play):not(.btn--bonus) { display: none; }
}
