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

:root {
  --clr-gold: #d0a955;
  --clr-gold-dark: #b8923d;
  --clr-gold-light: #e2c27a;
  --clr-btn-green: #86ad0e;
  --clr-btn-green-hover: #9acb10;
  --clr-btn-teal: #a1bcad;
  --clr-btn-teal-hover: #b8d1c3;
  --clr-bg: #272c0d;
  --clr-bg-card: #1e2209;
  --clr-bg-card2: #31380f;
  --clr-bg-dark: #1a1e07;
  --clr-text: #f0e8d0;
  --clr-text-muted: #b8a87a;
  --clr-text-dark: #272c0d;
  --clr-border: #3e4814;
  --clr-border-gold: #d0a955;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --shadow-gold: 0 2px 16px rgba(208,169,85,.25);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-btn-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold); }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .92rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); }
.btn--play {
  background: var(--clr-btn-green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(134,173,14,.35);
}
.btn--play:hover { background: var(--clr-btn-green-hover); box-shadow: 0 6px 24px rgba(134,173,14,.55); color: #fff; }
.btn--bonus {
  background: var(--clr-gold);
  color: var(--clr-text-dark);
  box-shadow: 0 4px 18px rgba(208,169,85,.3);
}
.btn--bonus:hover { background: var(--clr-gold-light); color: var(--clr-text-dark); box-shadow: 0 6px 24px rgba(208,169,85,.5); }
.btn--demo {
  background: transparent;
  color: var(--clr-btn-teal);
  border: 2px solid var(--clr-btn-teal);
}
.btn--demo:hover { background: var(--clr-btn-teal); color: var(--clr-bg); }
.btn--outline-gold {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
}
.btn--outline-gold:hover { background: var(--clr-gold); color: var(--clr-bg); }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 16px; font-size: .82rem; }
.btn--full { width: 100%; justify-content: center; }
.btn svg { flex-shrink: 0; }

.site-header {
  background: var(--clr-gold);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header-logo img { height: 50px; width: auto; object-fit: contain; }
.header-jackpot {
  flex: 1;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  background: rgba(0,0,0,.12);
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  min-width: 180px;
}
.header-jackpot span { color: var(--clr-bg); font-size: 1.05rem; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover { background: rgba(0,0,0,.12); color: var(--clr-bg-dark); }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-ctas { display: flex; align-items: center; gap: 8px; }
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  background: var(--clr-gold-dark);
  padding: 14px 20px;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(0,0,0,.15); color: var(--clr-bg-dark); }
.mobile-menu .mobile-ctas { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/gonzo-quest-hero.avif');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(39,44,13,.92) 45%, rgba(39,44,13,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 70px 0 70px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-gold);
  color: var(--clr-text-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--clr-gold);
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero h1 em { color: var(--clr-text); font-style: normal; }
.hero p {
  font-size: 1.05rem;
  color: var(--clr-text);
  margin-bottom: 26px;
  line-height: 1.65;
  opacity: .92;
}
.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat strong { font-size: 1.3rem; font-weight: 800; color: var(--clr-gold); }
.hero-stat span { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--clr-text-muted); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.section { padding: 62px 0; }
.section--dark { background: var(--clr-bg-dark); }
.section--card { background: var(--clr-bg-card); }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin-bottom: 8px;
}
.section-head p { font-size: 1rem; color: var(--clr-text-muted); max-width: 560px; margin: 0 auto; }
.divider-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-btn-green), var(--clr-gold));
  border-radius: 2px;
  margin: 10px auto 0;
}

.jackpot-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.jackpot-card {
  flex: 1;
  min-width: 240px;
  max-width: 360px;
  background: var(--clr-bg-card2);
  border: 2px solid var(--clr-border-gold);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.jackpot-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(208,169,85,.4); }
.jackpot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(208,169,85,.12) 0%, transparent 70%);
  pointer-events: none;
}
.jackpot-tier {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  display: inline-block;
}
.jackpot-card--gold .jackpot-tier { background: var(--clr-gold); color: var(--clr-text-dark); }
.jackpot-card--silver .jackpot-tier { background: #9ea9a3; color: var(--clr-text-dark); }
.jackpot-card--bronze .jackpot-tier { background: #c07840; color: #fff; }
.jackpot-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-gold);
  margin: 6px 0 14px;
  letter-spacing: -.02em;
}
.jackpot-card--silver .jackpot-amount { color: #c5cfc8; }
.jackpot-card--bronze .jackpot-amount { color: #e09060; }
.jackpot-players { margin-top: 14px; border-top: 1px solid var(--clr-border); padding-top: 14px; }
.jackpot-players h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--clr-text-muted); margin-bottom: 10px; }
.jackpot-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .82rem;
}
.jackpot-player-rank { color: var(--clr-gold); font-weight: 700; width: 20px; }
.jackpot-player-name { flex: 1; text-align: left; padding: 0 8px; color: var(--clr-text); }
.jackpot-player-amount { color: var(--clr-btn-green); font-weight: 700; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: .9rem;
}
thead th {
  background: var(--clr-gold);
  color: var(--clr-text-dark);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
tbody tr { transition: background var(--transition); }
tbody tr:nth-child(even) { background: rgba(255,255,255,.03); }
tbody tr:hover { background: rgba(208,169,85,.08); }
tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
}
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 800;
  font-size: .82rem;
  background: var(--clr-bg-card2);
  color: var(--clr-text-muted);
}
.rank-badge--1 { background: var(--clr-gold); color: var(--clr-text-dark); }
.rank-badge--2 { background: #9ea9a3; color: var(--clr-text-dark); }
.rank-badge--3 { background: #c07840; color: #fff; }
.win-amount { color: var(--clr-btn-green); font-weight: 700; }
.country-flag { font-size: 1.2rem; }

.demo-wrap {
  background: var(--clr-bg-dark);
  border: 2px solid var(--clr-border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 20px;
  background: var(--clr-bg-card2);
  border-bottom: 1px solid var(--clr-border-gold);
}
.demo-toolbar h3 { font-size: 1rem; font-weight: 700; color: var(--clr-gold); }
.demo-iframe-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}
.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-note {
  background: var(--clr-bg-card2);
  padding: 12px 20px;
  font-size: .8rem;
  color: var(--clr-text-muted);
  text-align: center;
}

.bonus-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.bonus-card {
  flex: 1;
  min-width: 260px;
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card:hover { transform: translateY(-4px); border-color: var(--clr-gold); box-shadow: var(--shadow-gold); }
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-btn-green), var(--clr-gold));
}
.bonus-casino {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-text-muted);
}
.bonus-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-gold);
}
.bonus-desc { font-size: .88rem; color: var(--clr-text); line-height: 1.55; }
.bonus-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.bonus-badge {
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(134,173,14,.18);
  color: var(--clr-btn-green);
  border: 1px solid rgba(134,173,14,.3);
}
.bonus-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--clr-gold);
}
.bonus-rating .stars { letter-spacing: 1px; }
.bonus-slider-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.bonus-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-border);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}
.bonus-dot.active { background: var(--clr-gold); }

.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--clr-border);
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--clr-text-dark);
  flex-shrink: 0;
}
.author-info strong { font-size: .92rem; font-weight: 700; color: var(--clr-gold); display: block; }
.author-info span { font-size: .78rem; color: var(--clr-text-muted); }
.review-dates { font-size: .76rem; color: var(--clr-text-muted); margin-left: auto; }
.content-block { background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 34px; }
.content-block h1, .content-block h2, .content-block h3, .content-block h4, .content-block h5, .content-block h6 {
  color: var(--clr-gold);
  margin: 1.4em 0 .5em;
  line-height: 1.3;
}
.content-block h1 { font-size: 1.9rem; margin-top: 0; }
.content-block h2 { font-size: 1.55rem; }
.content-block h3 { font-size: 1.25rem; }
.content-block h4 { font-size: 1.05rem; }
.content-block p { margin-bottom: 1em; line-height: 1.7; }
.content-block ul, .content-block ol { padding-left: 24px; margin-bottom: 1em; }
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li { margin-bottom: .4em; line-height: 1.6; }
.content-block a { color: var(--clr-btn-teal); text-decoration: underline; }
.content-block a:hover { color: var(--clr-gold); }
.content-block strong { color: var(--clr-gold-light); }
.content-block em { color: var(--clr-text-muted); }
.content-block blockquote {
  border-left: 4px solid var(--clr-gold);
  padding: 12px 20px;
  margin: 1.2em 0;
  background: var(--clr-bg-card2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--clr-text-muted);
}
.content-block table { margin: 1.2em 0; }
.content-block thead th { font-size: .8rem; }
.content-block tbody td { font-size: .88rem; }
.content-block hr { border: none; border-top: 1px solid var(--clr-border); margin: 1.5em 0; }
.content-block img { border-radius: var(--radius-sm); margin: 1em 0; }
.content-block pre { background: var(--clr-bg-dark); padding: 16px; border-radius: var(--radius-sm); overflow-x: auto; font-size: .85rem; margin: 1em 0; }
.content-block code { background: var(--clr-bg-dark); padding: 2px 6px; border-radius: 4px; font-size: .88em; }

.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: var(--clr-gold); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--clr-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--clr-gold); }
.faq-item.is-open .faq-question { color: var(--clr-gold); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 700;
  transition: transform var(--transition);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
}
.faq-answer a { color: var(--clr-btn-teal); }
.faq-item.is-open .faq-answer { display: block; }

.reviews-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.review-card {
  flex: 1;
  min-width: 260px;
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), border-color var(--transition);
}
.review-card:hover { transform: translateY(-3px); border-color: var(--clr-gold); }
.rc-header { display: flex; align-items: center; gap: 12px; }
.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--clr-text-dark);
  font-size: 1rem;
}
.rc-name { font-weight: 700; font-size: .92rem; color: var(--clr-text); }
.rc-date { font-size: .72rem; color: var(--clr-text-muted); }
.rc-stars { color: var(--clr-gold); font-size: 1rem; letter-spacing: 1px; }
.rc-text { font-size: .87rem; line-height: 1.62; color: var(--clr-text-muted); }
.rc-game { font-size: .72rem; font-weight: 700; color: var(--clr-btn-green); text-transform: uppercase; letter-spacing: .05em; }

.review-form-wrap {
  max-width: 600px;
  margin: 40px auto 0;
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.review-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--clr-gold); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--clr-text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  background: var(--clr-bg-dark);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: inherit;
  font-size: .92rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--clr-gold); }
.form-control::placeholder { color: var(--clr-border); }
textarea.form-control { min-height: 110px; resize: vertical; }
.form-rating { display: flex; gap: 6px; }
.form-rating-star {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--clr-border);
  transition: color var(--transition), transform var(--transition);
  padding: 0;
}
.form-rating-star:hover, .form-rating-star.active { color: var(--clr-gold); transform: scale(1.15); }
.form-success {
  display: none;
  background: rgba(134,173,14,.12);
  border: 1px solid rgba(134,173,14,.35);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .9rem;
  color: var(--clr-btn-green);
  text-align: center;
  margin-top: 14px;
}
.form-success.visible { display: block; }

.site-footer {
  background: var(--clr-gold);
  color: var(--clr-text-dark);
  padding: 44px 0 0;
  margin-top: auto;
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 240px; }
.footer-brand-link {display: block;width: fit-content;}
.footer-brand img { height: 50px; width: auto; object-fit: contain; }
.footer-brand p { font-size: .8rem; line-height: 1.6; opacity: .8; }
.footer-col { flex: 1; min-width: 150px; }
.footer-col h4 { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; color: var(--clr-text-dark); }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col li a {
  font-size: .82rem;
  color: rgba(39,44,13,.8);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-col li a:hover { color: var(--clr-text-dark); }
.footer-col-link {display: block;width: fit-content;}
.footer-contact { font-size: .85rem; }
.footer-contact a { color: rgba(39,44,13,.8); font-weight: 600; }
.footer-contact a:hover { color: var(--clr-text-dark); }
.footer-middle {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-logos img {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: .7;
  transition: opacity var(--transition);
}
.footer-logos img:hover { opacity: 1; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(0,0,0,.1);
  color: rgba(39,44,13,.85);
  border: 1px solid rgba(0,0,0,.15);
  text-decoration: none;
  transition: background var(--transition);
}
.trust-badge:hover { background: rgba(0,0,0,.18); color: var(--clr-text-dark); }
.trust-badge svg { width: 14px; height: 14px; }
.footer-social { display: flex; gap: 10px; align-items: center; justify-content: center; margin: 16px 0; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-dark);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.social-link:hover { background: rgba(0,0,0,.22); transform: translateY(-2px); color: var(--clr-text-dark); }
.social-link svg { width: 18px; height: 18px; }
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: .75rem;
  color: rgba(39,44,13,.75);
  line-height: 1.7;
  background: rgba(0,0,0,.06);
}
.footer-bottom strong { color: var(--clr-text-dark); }
.footer-bottom a { color: rgba(39,44,13,.8); text-decoration: underline; }
.footer-bottom a:hover { color: var(--clr-text-dark); }
.flag-au {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .78rem;
  margin-top: 6px;
}
.flag-au img {height: 20px;width: auto;}
.provider-wrap { display: flex; align-items: center; gap: 8px; justify-content: flex-start; margin: 10px 0; }
.provider-wrap img { height: 24px; opacity: .8; filter: brightness(0) saturate(100%); }

.sticky-widget {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 998;
  background: var(--clr-bg-card2);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  max-width: 300px;
  animation: widget-float 3.5s ease-in-out infinite;
}
@keyframes widget-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.widget-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-text-muted);
  border: none;
  color: var(--clr-bg);
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition);
}
.widget-close:hover { background: var(--clr-gold); }
.widget-logo img { width: auto; height: 48px; border-radius: var(--radius-sm); object-fit: cover; }
.widget-info { flex: 1; }
.widget-info strong { display: block; font-size: .82rem; color: var(--clr-gold); font-weight: 700; }
.widget-info span { font-size: .72rem; color: var(--clr-text-muted); display: block; margin-bottom: 6px; }

.info-hero {
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-bg-card2) 100%);
  padding: 50px 0 38px;
  border-bottom: 1px solid var(--clr-border-gold);
}
.info-hero h1 { font-size: 2rem; font-weight: 800; color: var(--clr-gold); }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--clr-text-muted); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: var(--clr-btn-teal); }
.breadcrumb span { opacity: .5; }
.info-content { padding: 44px 0; }
.info-content h2 { color: var(--clr-gold); font-size: 1.4rem; margin: 1.5em 0 .6em; }
.info-content h3 { color: var(--clr-gold-light); font-size: 1.15rem; margin: 1.2em 0 .5em; }
.info-content p { margin-bottom: 1em; line-height: 1.72; color: var(--clr-text); }
.info-content ul { padding-left: 22px; list-style: disc; margin-bottom: 1em; }
.info-content ul li { margin-bottom: .4em; color: var(--clr-text); line-height: 1.6; }
.info-content a { color: var(--clr-btn-teal); text-decoration: underline; }
.info-content strong { color: var(--clr-gold-light); }
.info-card { background: var(--clr-bg-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 24px 22px; margin-bottom: 16px; }

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

@media (max-width: 900px) {
  .hero h1 { font-size: 2rem; }
  .jackpot-grid { flex-direction: column; align-items: stretch; }
  .jackpot-card { max-width: 100%; }
  .header-nav a {padding: 5px 9px;}
  .header-inner {gap: 10px;}
} 
@media (max-width: 800px) {
  .header-nav a:first-child {display: none;}
} 
@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger-btn { display: flex; }
  .hero { min-height: 420px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-content { padding: 50px 0; }
  .section { padding: 44px 0; }
  .section-head h2 { font-size: 1.55rem; }
  .bonus-grid { flex-direction: column; }
  .bonus-slider-nav { display: flex; }
  .reviews-grid { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 22px; }
  .footer-brand { max-width: 100%; }
  .sticky-widget { max-width: calc(100vw - 40px); right: 16px; bottom: 16px; }
  .review-form-wrap { padding: 22px 16px; }
  .content-block { padding: 22px 16px; }
  .footer-top {flex-direction: column;}
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.45rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .header-ctas .btn--bonus { display: none; }
  .demo-toolbar { flex-direction: column; align-items: flex-start; }
  .header-inner {padding: 10px 16px;}
  .container {padding: 0 16px;}
}

.wp-block-separator { border: none; border-top: 1px solid var(--clr-border); margin: 1.5em 0; }
.entry-content p:last-child { margin-bottom: 0; }
.has-text-align-center { text-align: center; }
.aligncenter { display: block; margin: 1em auto; }
.size-full { max-width: 100%; height: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { text-align: center; font-size: .82rem; color: var(--clr-text-muted); }
.widget_nav_menu ul { list-style: none; padding: 0; }
.textwidget p { margin-bottom: .8em; }
.yoast-seo-hidden { display: none; }
.et_pb_row { width: 100%; }
.elementor-widget-text-editor p { margin-bottom: 1em; }
.elementor-heading-title { line-height: 1.3; }
.wp-block-group { margin-bottom: 1.5em; }
.gvr7x2 { font-size: .001px; position: absolute; visibility: hidden; }
.k9mw1x { height: 0; overflow: hidden; }
.q4nz8p { color: transparent; user-select: none; }
