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

:root {
  --c-nav: #362871;
  --c-bg: #bc1377;
  --c-green: #3b6b1b;
  --c-orange: #e76213;
  --c-gold: #f5c842;
  --c-white: #ffffff;
  --c-text-light: #e8e0ff;
  --c-text-muted: #9a8fc0;
  --c-card-bg: rgba(30,20,70,.85);
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.5);
  --container: 1200px;
  --font: 'Oswald', sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-white);
  line-height: 1.6;
  animation: bg-pulse 10s ease-in-out infinite alternate;
  -webkit-font-smoothing: antialiased;
}

@keyframes bg-pulse {
  0%   { background-color: #bc1377; }
  50%  { background-color: #a01063; }
  100% { background-color: #c91885; }
}

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

a { color: var(--c-orange); transition: color .2s; }
a:hover { color: var(--c-gold); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1rem; }

.btn {
  display: inline-block;
  padding: .65rem 1.6rem;
  border-radius: var(--border-radius);
  font-family: var(--font);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, filter .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.12); box-shadow: 0 6px 24px rgba(0,0,0,.35); }
.btn:active { transform: translateY(0); filter: brightness(.95); }
.btn-green { background: var(--c-green); color: var(--c-white); }
.btn-orange { background: var(--c-orange); color: var(--c-white); }
.btn-gold { background: var(--c-gold); color: #1a0a00; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-lg { padding: .9rem 2rem; font-size: 1.1rem; }

.section { padding: 5rem 0; }
.section-alt { background: rgba(0,0,0,.2); }
.section-dark { background: rgba(54,40,113,.4); }

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
  color: var(--c-white);
}
.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-orange));
  margin: .8rem auto 0;
  border-radius: 2px;
}

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

.site-header {
  background: var(--c-nav);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .7rem;padding-bottom: .7rem;
  gap: 1rem;
  min-height: 64px;
}
.header-logo a { display: flex; align-items: center; text-decoration: none; }
.header-logo img { height: 44px; width: auto; object-fit: contain; }
.header-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  color: var(--c-text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: .4rem .65rem;
  border-radius: 5px;
  transition: color .2s, background .2s;
  display: flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--c-gold); background: rgba(255,255,255,.08); }
.header-nav svg { width: 14px; height: 14px; flex-shrink: 0; }
.header-ctas { display: flex; gap: .5rem; align-items: center; flex-shrink: 0; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
  flex-shrink: 0;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--c-white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.jackpot-ticker {
  background: linear-gradient(90deg, #2a1e5c 0%, #3d2e80 50%, #2a1e5c 100%);
  padding: .35rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .88rem;
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.ticker-live {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}
.ticker-dot {
  width: 8px;
  height: 8px;
  background: #00e676;
  border-radius: 50%;
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.25;} }
.ticker-label { color: var(--c-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .78rem; }
.ticker-value { color: var(--c-white); font-weight: 700; font-size: 1.05rem; letter-spacing: .5px; }
.ticker-sub { color: var(--c-text-muted); font-size: .75rem; margin-left: auto; }

.hero {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url('/img/wheres-the-gold-game-hero.webp') center 30%/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,10,50,.72) 0%, rgba(54,40,113,.78) 45%, rgba(0,0,0,.88) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  max-width: 960px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--c-gold);
  color: #1a0a00;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  text-shadow: 2px 4px 12px rgba(0,0,0,.6);
}
.hero h1 .gold { color: var(--c-gold); }
.hero-subtitle {
  font-size: 1.05rem;
  color: #d8cff5;
  margin-bottom: 2.5rem;
  max-width: 620px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.hero-tile {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(245,200,66,.35);
  border-radius: 10px;
  padding: .7rem 1.2rem;
  backdrop-filter: blur(6px);
  min-width: 120px;
  flex: 1;
  max-width: 160px;
  transition: transform .25s, border-color .25s;
}
.hero-tile:hover { transform: translateY(-3px); border-color: var(--c-gold); }
.hero-tile-label { font-size: .65rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-gold); display: block; margin-bottom: .25rem; font-weight: 700; }
.hero-tile-value { font-size: 1.25rem; font-weight: 700; color: var(--c-white); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.jackpot-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.jackpot-card {
  background: linear-gradient(145deg, #241a52 0%, #362871 100%);
  border: 2px solid var(--c-gold);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(245,200,66,.12);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.jackpot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,.55), 0 0 70px rgba(245,200,66,.22);
}
.jackpot-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245,200,66,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.jackpot-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}
.jackpot-card-mini::after { background: #4a9eff; }
.jackpot-card-major::after { background: var(--c-orange); }
.jackpot-card-mega::after { background: linear-gradient(90deg, var(--c-gold), #ff8c00); }
.jackpot-badge {
  display: inline-block;
  padding: .28rem .85rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.badge-mini  { background: #4a9eff; color: #fff; }
.badge-major { background: var(--c-orange); color: #fff; }
.badge-mega  { background: var(--c-gold); color: #1a0500; }
.jackpot-name { font-size: 1.5rem; font-weight: 700; margin-bottom: .35rem; text-transform: uppercase; letter-spacing: 1px; }
.jackpot-amount {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(245,200,66,.4);
  font-variant-numeric: tabular-nums;
}
.jackpot-winners-hd {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-text-muted);
  margin-bottom: .75rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: .75rem;
}
.jackpot-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.jackpot-winner:last-child { border-bottom: none; }
.winner-nick { color: var(--c-text-light); }
.winner-sum { color: var(--c-gold); font-weight: 600; }

.table-scroll { overflow-x: auto; border-radius: 14px; box-shadow: var(--shadow-lg); }
.table-scroll::-webkit-scrollbar { height: 5px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--c-orange); border-radius: 3px; }
.winners-table { width: 100%; border-collapse: collapse; background: rgba(20,12,55,.82); font-size: .9rem; min-width: 580px; }
.winners-table th {
  background: var(--c-nav);
  color: var(--c-gold);
  padding: 1rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: .75rem;
  text-align: left;
  white-space: nowrap;
  border-bottom: 2px solid rgba(245,200,66,.3);
}
.winners-table td { padding: .85rem 1.2rem; border-bottom: 1px solid rgba(255,255,255,.07); color: var(--c-text-light); white-space: nowrap; }
.winners-table tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.winners-table tr:hover td { background: rgba(245,200,66,.07); transition: background .2s; }
.rank { font-weight: 700; color: var(--c-gold); }
.rank-1 { color: #ffd700; font-size: 1.1rem; }
.rank-2 { color: #c0c0c0; }
.rank-3 { color: #cd7f32; }
.w-amount { font-weight: 700; color: #7dff9e; }

.demo-inner { max-width: 840px; margin: 0 auto; }
.demo-frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,.65);
  background: #120830;
  margin-bottom: 2rem;
  border: 2px solid rgba(245,200,66,.25);
}
.demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #120830 0%, #362871 100%);
  padding: 2rem;
  text-align: center;
}
.demo-fallback img { height: 64px; object-fit: contain; margin: 0 auto; }
.demo-fallback p { color: var(--c-text-muted); font-size: .9rem; }
.demo-cta-bar { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.demo-cta-bar p { color: var(--c-text-muted); font-size: .95rem; }

.bonus-slider { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: .75rem; }
.bonus-slider::-webkit-scrollbar { height: 5px; }
.bonus-slider::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 3px; }
.bonus-track { display: flex; gap: 1.5rem; }
.bonus-card {
  background: linear-gradient(145deg, #241a52 0%, #362871 100%);
  border: 2px solid rgba(245,200,66,.35);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  flex: 1 0 280px;
  max-width: 380px;
  box-shadow: var(--shadow);
  transition: transform .3s, border-color .3s;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover { transform: translateY(-5px); border-color: var(--c-gold); box-shadow: var(--shadow-lg), 0 0 40px rgba(245,200,66,.15); }
.bonus-casino { font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-gold); margin-bottom: .5rem; }
.bonus-offer { font-size: .95rem; color: var(--c-text-light); line-height: 1.55; margin-bottom: 1rem; }
.bonus-stars { display: flex; align-items: center; gap: .2rem; margin-bottom: 1rem; }
.star { color: var(--c-gold); font-size: 1.1rem; }
.star.half { color: var(--c-text-muted); }
.bonus-rating-text { font-size: .8rem; color: var(--c-text-muted); margin-left: .4rem; }
.bonus-btn-wrap { margin-top: auto; padding-top: 1rem; }
.bonus-disclaimer { font-size: .68rem; color: var(--c-text-muted); margin-top: .75rem; line-height: 1.5; }

.review-wrap {
  background: rgba(0,0,0,.28);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.07);
}
.review-content { line-height: 1.8; color: #ddd5ff; font-weight: 400; font-size: 1rem; }
.review-content h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; color: var(--c-gold); margin: 2.5rem 0 .8rem; text-transform: uppercase; letter-spacing: 1.5px; padding-bottom: .5rem; border-bottom: 2px solid rgba(245,200,66,.2); }
.review-content h3 { font-size: 1.25rem; font-weight: 600; color: #c8b8ff; margin: 2rem 0 .6rem; }
.review-content h4 { font-size: 1.05rem; font-weight: 600; color: var(--c-text-light); margin: 1.5rem 0 .5rem; }
.review-content p { margin-bottom: 1.2rem; }
.review-content ul, .review-content ol { margin: .75rem 0 1.2rem 1.75rem; }
.review-content li { margin-bottom: .5rem; padding-left: .25rem; }
.review-content table { width: 100%; border-collapse: collapse; margin: 1.75rem 0; font-size: .92rem; overflow: hidden; border-radius: 8px; }
.review-content table th { background: rgba(54,40,113,.8); padding: .8rem 1rem; text-align: left; border: 1px solid rgba(245,200,66,.25); color: var(--c-gold); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
.review-content table td { padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.09); }
.review-content table tr:nth-child(even) td { background: rgba(255,255,255,.04); }
.review-content a { color: var(--c-orange); font-weight: 600; }
.review-content a:hover { color: var(--c-gold); }
.review-content blockquote { border-left: 4px solid var(--c-gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: rgba(245,200,66,.06); border-radius: 0 8px 8px 0; color: #c8b8ff; font-style: italic; font-size: 1.05rem; }
.review-content strong { color: var(--c-gold); font-weight: 700; }
.review-content em { color: #c8b8ff; }
.review-content hr { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 2rem 0; }

.faq-list { display: flex; flex-direction: column; gap: .6rem; margin: 0 auto; }
.faq-item {
  background: rgba(25,15,65,.75);
  border: 1px solid rgba(245,200,66,.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.is-open { border-color: rgba(245,200,66,.5); }
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .98rem;
  color: var(--c-text-light);
  gap: 1rem;
  user-select: none;
  list-style: none;
  transition: color .2s;
}
.faq-question:hover { color: var(--c-gold); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: transform .3s;
  color: var(--c-gold);
  line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer-wrap { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.is-open .faq-answer-wrap { max-height: 500px; }
.faq-answer { padding: 0 1.5rem 1.25rem; color: #b8abdf; line-height: 1.75; font-weight: 400; font-size: .95rem; }

.author-card {
  margin: 0 auto;
  background: linear-gradient(145deg, #241a52 0%, #362871 100%);
  border: 1px solid rgba(245,200,66,.3);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-lg);
}
.author-avatar {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--c-white);
  flex-shrink: 0;
  border: 3px solid var(--c-gold);
  letter-spacing: -1px;
}
.author-info { flex: 1; min-width: 0; }
.author-name { font-size: 1.55rem; font-weight: 700; color: var(--c-gold); margin-bottom: .25rem; }
.author-title { font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; color: #c8b8ff; margin-bottom: 1.1rem; }
.author-bio { color: var(--c-text-light); line-height: 1.75; margin-bottom: 1.1rem; font-size: .95rem; font-weight: 400; }
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  font-size: .82rem;
  color: var(--c-text-muted);
  margin-bottom: 1.25rem;
}
.author-meta-item { display: flex; align-items: center; gap: .4rem; }
.author-links { display: flex; gap: .75rem; flex-wrap: wrap; }
.author-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--c-text-light);
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .82rem;
  transition: background .2s, border-color .2s, color .2s;
}
.author-link:hover { background: rgba(245,200,66,.15); border-color: var(--c-gold); color: var(--c-gold); }

.site-footer {
  background: var(--c-nav);
  color: #b8abdf;
  padding: 4rem 0 2.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand { flex: 2; min-width: 200px; }
.footer-logo { height: 46px; object-fit: contain; margin-bottom: 1.25rem; }
.footer-email { font-size: .88rem; margin-top: .5rem; }
.footer-col { flex: 1; min-width: 130px; }
.footer-col h4 {
  color: var(--c-gold);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col a { display: block; color: #b8abdf; text-decoration: none; font-size: .88rem; margin-bottom: .5rem; transition: color .2s; }
.footer-col a:hover { color: var(--c-gold); }
.footer-section-label { color: var(--c-gold); font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: .75rem; font-weight: 700; margin-top: 1.5rem; }
.footer-section-label:first-child { margin-top: 0; }
.footer-payments { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.payment-badge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 4px; padding: .28rem .65rem; font-size: .72rem; font-weight: 700; letter-spacing: .5px; color: #d8cfff; }
.footer-socials { display: flex; gap: .65rem; margin-bottom: 1rem; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8abdf;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.social-btn:hover { background: var(--c-orange); color: #fff; border-color: var(--c-orange); }
.social-btn svg { width: 16px; height: 16px; }
.footer-provider-logo { height: 34px; object-fit: contain; opacity: .75; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-provider-link {display: block;width: fit-content;}
.footer-trust { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.trust-badge { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 4px; padding: .25rem .6rem; font-size: .68rem; font-weight: 700; letter-spacing: .5px; color: #9a8fc0; white-space: nowrap; }
.trust-badge.t-18 { background: rgba(231,98,19,.15); border-color: var(--c-orange); color: var(--c-orange); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 2.5rem 0 2rem; }
.footer-bottom { text-align: center; }
.footer-copyright { font-size: .85rem; color: #7a6fa0; margin-bottom: .75rem; }
.footer-legal { font-size: .75rem; color: #5a5080; line-height: 1.65; max-width: 820px; margin: 0 auto; }

.sticky-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--c-nav);
  border: 2px solid rgba(245,200,66,.45);
  border-radius: var(--border-radius-lg);
  padding: 1.1rem 1.25rem 1.25rem;
  box-shadow: 0 8px 35px rgba(0,0,0,.55);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 210px;
  transform: translateY(140%);
  transition: transform .55s cubic-bezier(.34,1.56,.64,1);
}
.sticky-widget.is-visible { transform: translateY(0); }
.sticky-widget.is-hidden { display: none; }
.widget-close {
  position: absolute;
  top: .5rem;
  right: .75rem;
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  transition: color .2s;
  padding: .2rem;
}
.widget-close:hover { color: var(--c-white); }
.widget-logo { height: 36px; object-fit: contain; }
.widget-bonus { font-size: .9rem; color: var(--c-gold); font-weight: 700; line-height: 1.3; }

.info-page { max-width: 860px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.info-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--c-gold); margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 2px; border-bottom: 2px solid rgba(245,200,66,.3); padding-bottom: 1rem; }
.info-content { background: rgba(0,0,0,.25); border-radius: var(--border-radius-lg); padding: 2.5rem; line-height: 1.8; color: var(--c-text-light); font-weight: 400; }
.info-content h2 { font-size: 1.45rem; color: var(--c-gold); margin: 2rem 0 .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.info-content h3 { font-size: 1.15rem; color: #c8b8ff; margin: 1.5rem 0 .5rem; }
.info-content p { margin-bottom: 1.1rem; }
.info-content ul, .info-content ol { margin: .75rem 0 1.1rem 1.75rem; }
.info-content li { margin-bottom: .45rem; }
.info-content a { color: var(--c-orange); }
.info-content strong { color: var(--c-gold); }
.info-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.info-content table th { background: rgba(54,40,113,.8); padding: .75rem 1rem; border: 1px solid rgba(245,200,66,.25); color: var(--c-gold); text-align: left; }
.info-content table td { padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.1); }

.wp-block-group,.wp-block-columns,.wp-block-column,.elementor-widget,.elementor-section,.elementor-container { display: contents; }
.wp-site-blocks { display: block; }
.wp-singular-header { display: none; }
.x5k9pL2m,.r7nQwP04,.b2mZxK1j { visibility: visible; }
.j4vRtN8s { color: transparent; font-size: 0; }
.pY6gKs3d,.wQ2nJr8x { position: relative; }

@media (max-width: 960px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2a1e5c;
    padding: 1rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .header-nav.is-open { display: flex; }
  .header-nav a { width: 100%; padding: .6rem .75rem; }
  .burger { display: flex; }
  .author-card { flex-direction: column; }
  .author-avatar { width: 80px; height: 80px; font-size: 2rem; }
}
@media (max-width: 768px) {
  .jackpot-cards { flex-direction: column; align-items: center; }
  .jackpot-card { max-width: 100%; }
  .hero-tiles .hero-tile { min-width: 110px; }
  .bonus-card { flex: 0 0 85vw; max-width: 85vw; }
  .review-wrap { padding: 1.75rem 1.25rem; }
  .footer-grid { flex-direction: column; gap: 1.75rem; }
}
@media (max-width: 600px) {
  .section { padding: 3rem 0; }
  .hero { min-height: 75vh; }
  .hero-inner { padding: 2.5rem 1.1rem; }
  .header-main { padding-top: .6rem;padding-bottom: .6rem; }
  .header-logo img { height: 36px; }
  .btn { padding: .55rem 1.2rem; font-size: .85rem; }
  .btn-lg { padding: .75rem 1.5rem; font-size: 1rem; }
  .sticky-widget { bottom: 1rem; right: 1rem; width: 192px; }
  .info-page { padding: 2.5rem 1rem; }
  .info-content { padding: 1.5rem 1rem; }
}
@media (max-width: 420px) {

.header-ctas .btn-orange {display: none;}
}