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

:root {
  --c-navy: #0d4071;
  --c-navy-dark: #092e54;
  --c-navy-light: #1558a0;
  --c-orange: #e47d19;
  --c-orange-hover: #cc6e12;
  --c-green: #27762c;
  --c-green-hover: #1f5e23;
  --c-bg: #f1edb3;
  --c-bg-dark: #e8e39a;
  --c-text: #1a1a1a;
  --c-text-light: #ffffff;
  --c-text-muted: #555555;
  --c-border: #d4c97a;
  --c-gold: #f0c040;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(13,64,113,0.15);
  --transition: all 0.3s ease;
}

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

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

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

a { color: var(--c-orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--c-orange-hover); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-navy);
}

p { line-height: 1.7; margin-bottom: 1rem; }

.xk7b2 { display: none; }
.wp-block-hidden { display: none; }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-play { background: var(--c-green); color: #fff; }
.btn-play:hover { background: var(--c-green-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(39,118,44,0.4); }
.btn-bonus { background: var(--c-orange); color: #fff; }
.btn-bonus:hover { background: var(--c-orange-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(228,125,25,0.4); }
.btn-outline { background: transparent; color: var(--c-navy); border: 2px solid var(--c-navy); }
.btn-outline:hover { background: var(--c-navy); color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 1.1rem; }
.btn-sm { padding: 7px 16px; font-size: 0.85rem; }

.box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  padding: 0;
}

.section-title {
  font-size: 1.8rem;
  color: var(--c-navy);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 10px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--c-orange);
  border-radius: 2px;
}
.section-title.center { text-align: center; }
.section-title.center::after { left: 50%; transform: translateX(-50%); }

/* ===================== HEADER ===================== */
.site-header {
  background: var(--c-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(13,64,113,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo img { height: 52px; width: auto; object-fit: contain; }
.header-logo-text { font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.2; }
.header-logo-text span { color: var(--c-gold); }

.header-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.header-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.header-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-nav a:hover { color: #fff; background: rgba(255,255,255,0.12); }

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

.jackpot-ticker {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #fff;
  white-space: nowrap;
}
.jackpot-ticker .jt-label { color: var(--c-gold); font-weight: 600; }
.jackpot-ticker .jt-amount { font-weight: 700; color: var(--c-gold); font-size: 1rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.burger span { display: block; width: 24px; height: 3px; background: #fff; border-radius: 2px; transition: var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero-banner {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-navy-dark);
}
.hero-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/banner.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.hero-banner-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1.1;
}
.hero-title span { color: var(--c-gold); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 600px; margin-bottom: 28px; line-height: 1.6; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-intro { padding: 40px 0 10px; }
.hero-intro-inner { display: grid; grid-template-columns: 1fr; gap: 24px; }
.hero-intro-text { font-size: 1.05rem; color: var(--c-text); line-height: 1.7; }
.hero-intro-text h2 { font-size: 1.5rem; margin-bottom: 12px; }

.info-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.info-tile {
  background: var(--c-navy);
  color: #fff;
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
  transition: var(--transition);
}
.info-tile:hover { transform: translateY(-3px); background: var(--c-navy-light); }
.info-tile .tile-label { font-size: 0.7rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-tile .tile-val { font-size: 1.1rem; font-weight: 700; color: var(--c-gold); }

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs-wrap { padding: 12px 0; }
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.85rem;
  background: #fff;
  border-radius: 7px;
  padding: 10px 18px;
  box-shadow: 0 1px 6px rgba(13,64,113,0.08);
}
.breadcrumbs a { color: var(--c-navy); font-weight: 500; }
.breadcrumbs a:hover { color: var(--c-orange); }
.breadcrumbs .bc-sep { color: var(--c-text-muted); }
.breadcrumbs .bc-current { color: var(--c-text-muted); }

/* ===================== CONTENT WRAPPER ===================== */
.content-wrap { padding: 0 0 40px; }
.content-section { margin-bottom: 28px; }

/* ===================== TABLE OF CONTENTS ===================== */
.toc-block {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 28px;
}
.toc-block .section-title { color: #fff; }
.toc-block .section-title::after { background: var(--c-gold); }
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 7px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}
.toc-item:hover { background: rgba(255,255,255,0.2); color: #fff; text-decoration: none; transform: translateX(4px); }
.toc-item svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.8; }
.toc-num {
  min-width: 22px;
  height: 22px;
  background: var(--c-gold);
  color: var(--c-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===================== DEMO GAME ===================== */
.demo-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  margin: 18px 0;
  border: 3px solid var(--c-navy);
}
.demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,64,113,0.97) 0%, rgba(9,46,84,0.97) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.3s ease;
}
.demo-overlay img { width: 180px; max-width: 50%; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.6); }
.demo-overlay p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.demo-overlay.hidden { opacity: 0; pointer-events: none; }
.demo-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 12px; }

/* ===================== JACKPOTS ===================== */
.jackpots-block {
  background: linear-gradient(135deg, #092e54 0%, #0d4071 60%, #1558a0 100%);
  border-radius: var(--radius);
  padding: 36px 28px;
  margin-bottom: 28px;
  color: #fff;
}
.jackpots-block .section-title { color: #fff; }
.jackpots-block .section-title::after { background: var(--c-gold); }
.jackpots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 24px; }
.jackpot-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.jackpot-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.jackpot-card.gold-tier { border-color: #f0c040; background: rgba(240,192,64,0.1); }
.jackpot-card.silver-tier { border-color: #c0c0c0; background: rgba(192,192,192,0.08); }
.jackpot-card.bronze-tier { border-color: #cd7f32; background: rgba(205,127,50,0.08); }
.jackpot-tier-icon { font-size: 2.5rem; margin-bottom: 8px; }
.jackpot-tier-name { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.7; margin-bottom: 6px; }
.jackpot-amount { font-size: 2rem; font-weight: 700; color: var(--c-gold); margin-bottom: 16px; text-shadow: 0 0 20px rgba(240,192,64,0.4); }
.jackpot-winners { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; margin-bottom: 10px; }
.winner-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; }
.winner-row:last-child { border-bottom: none; }
.winner-nick { color: rgba(255,255,255,0.85); }
.winner-amt { color: var(--c-gold); font-weight: 700; }

/* ===================== REVIEWS ===================== */
.reviews-block { background: #fff; border-radius: var(--radius); padding: 36px 28px; margin-bottom: 28px; box-shadow: var(--shadow); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin: 24px 0; }
.review-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 20px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: 0 6px 20px rgba(13,64,113,0.12); transform: translateY(-2px); }
.review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-gold);
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta .r-name { font-weight: 700; color: var(--c-navy); font-size: 0.95rem; }
.review-meta .r-date { font-size: 0.75rem; color: var(--c-text-muted); }
.review-stars { display: flex; gap: 3px; margin-top: 2px; }
.review-stars svg { width: 14px; height: 14px; }
.review-text { font-size: 0.88rem; color: var(--c-text); line-height: 1.6; }

.review-form { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: 10px; padding: 24px; margin-top: 24px; }
.review-form h3 { font-size: 1.2rem; color: var(--c-navy); margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--c-navy); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--c-border);
  border-radius: 7px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--c-text);
  background: #fff;
  transition: border-color 0.2s ease;
  outline: none;
}
.form-control:focus { border-color: var(--c-navy); }
textarea.form-control { min-height: 100px; resize: vertical; }
.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #27762c;
  color: #155724;
  border-radius: 7px;
  padding: 12px 16px;
  font-weight: 600;
  margin-top: 14px;
  font-size: 0.95rem;
}
.form-success.visible { display: block; animation: fadeInUp 0.4s ease; }

/* ===================== BONUSES ===================== */
.bonuses-block { background: #fff; border-radius: var(--radius); padding: 36px 28px; margin-bottom: 28px; box-shadow: var(--shadow); }
.bonuses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 24px; }
.bonus-card {
  border: 2px solid var(--c-border);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
}
.bonus-card:hover { border-color: var(--c-orange); box-shadow: 0 8px 24px rgba(228,125,25,0.15); transform: translateY(-4px); }
.bonus-card-head { background: var(--c-navy); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.bonus-casino-logo { width: 48px; height: 48px; border-radius: 8px; object-fit: contain; background: #fff; padding: 4px; }
.bonus-casino-name { color: #fff; font-weight: 700; font-size: 1rem; }
.bonus-card-body { padding: 20px; }
.bonus-amount { font-size: 1.7rem; font-weight: 700; color: var(--c-orange); margin-bottom: 4px; }
.bonus-type { font-size: 0.82rem; font-weight: 600; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.bonus-features { list-style: none; padding: 0; margin: 0 0 16px; }
.bonus-features li { font-size: 0.88rem; color: var(--c-text); padding: 4px 0; border-bottom: 1px solid var(--c-bg); display: flex; align-items: center; gap: 8px; }
.bonus-features li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--c-green); flex-shrink: 0; }
.bonus-rating { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; margin-bottom: 14px; }
.bonus-rating .br-score { font-weight: 700; color: var(--c-navy); font-size: 1rem; }

/* ===================== CONTENT / REVIEW TEXT ===================== */
.review-content-block { background: #fff; border-radius: var(--radius); padding: 36px 28px; margin-bottom: 28px; box-shadow: var(--shadow); }
.review-content-block .content-inner h2 { font-size: 1.5rem; color: var(--c-navy); margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--c-bg-dark); }
.review-content-block .content-inner h2:first-child { margin-top: 0; }
.review-content-block .content-inner h3 { font-size: 1.2rem; color: var(--c-navy); margin: 20px 0 10px; }
.review-content-block .content-inner h4 { font-size: 1rem; color: var(--c-navy); margin: 16px 0 8px; font-weight: 600; }
.review-content-block .content-inner p { font-size: 0.97rem; color: var(--c-text); margin-bottom: 14px; line-height: 1.75; }
.review-content-block .content-inner ul,
.review-content-block .content-inner ol { padding-left: 24px; margin-bottom: 14px; }
.review-content-block .content-inner li { margin-bottom: 6px; font-size: 0.97rem; line-height: 1.65; }
.review-content-block .content-inner table { width: 100%; border-collapse: collapse; margin: 20px auto; font-size: 0.9rem; overflow-x: auto; display: block; }
.review-content-block .content-inner table th { background: var(--c-navy); color: #fff; text-align: left; padding: 10px 14px; font-weight: 600; }
.review-content-block .content-inner table td { padding: 9px 14px; border: 1px solid var(--c-border); background: #fff; color: var(--c-text); }
.review-content-block .content-inner table tr:nth-child(even) td { background: var(--c-bg); }
.review-content-block .content-inner blockquote { border-left: 4px solid var(--c-orange); padding: 12px 18px; background: var(--c-bg); border-radius: 0 7px 7px 0; margin: 18px 0; font-style: italic; color: var(--c-text-muted); }
.review-content-block .content-inner a { color: var(--c-orange); text-decoration: underline; }
.review-content-block .content-inner strong { color: var(--c-navy); }
.review-content-block .content-inner img { border-radius: 8px; margin: 12px auto; box-shadow: var(--shadow); }

/* ===================== AUTHOR ===================== */
.author-block { background: #fff; border-radius: var(--radius); padding: 32px 28px; margin-bottom: 28px; box-shadow: var(--shadow); border-left: 5px solid var(--c-navy); }
.author-inner { display: flex; gap: 24px; align-items: flex-start; }
.author-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--c-navy); background: var(--c-bg); }
.author-body { flex: 1; }
.author-name { font-size: 1.3rem; color: var(--c-navy); margin-bottom: 4px; }
.author-title { font-size: 0.85rem; color: var(--c-orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.author-bio { font-size: 0.9rem; color: var(--c-text); line-height: 1.65; margin-bottom: 14px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 0.82rem; color: var(--c-text-muted); margin-bottom: 14px; }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-meta svg { width: 14px; height: 14px; }
.author-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.author-socials a {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--c-navy);
  color: #fff;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.author-socials a:hover { background: var(--c-navy-light); color: #fff; }
.article-dates { display: flex; gap: 16px; font-size: 0.8rem; color: var(--c-text-muted); margin-top: 12px; flex-wrap: wrap; }
.article-dates span { display: flex; align-items: center; gap: 4px; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--c-navy-dark); color: rgba(255,255,255,0.8); padding: 0; margin-top: auto; }
.footer-top { padding: 48px 0 32px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 32px; }
.footer-brand { }
.footer-logo img { height: 52px; object-fit: contain; margin-bottom: 12px; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }
.footer-contact a { color: rgba(255,255,255,0.7); font-size: 0.85rem; display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.footer-contact a:hover { color: var(--c-gold); }
.footer-contact svg { width: 14px; height: 14px; }

.footer-col h4 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--c-gold); padding-left: 4px; }

.footer-mid { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-payments { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-payments-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-right: 4px; text-transform: uppercase; letter-spacing: 1px; }
.payment-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.75); padding: 5px 12px; border-radius: 5px; font-size: 0.8rem; font-weight: 600; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-icon:hover { background: var(--c-orange); border-color: var(--c-orange); }
.social-icon svg { width: 16px; height: 16px; fill: #fff; }

.footer-trust { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}
.trust-badge:hover { background: rgba(255,255,255,0.14); color: #fff; }
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.age-badge { background: var(--c-orange); color: #fff; border-color: var(--c-orange); font-size: 0.85rem; font-weight: 800; }
.au-flag { width: 22px; height: 16px; border-radius: 2px; overflow: hidden; display: inline-block; }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.legal-text { font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 900px; text-align: center; }
.footer-provider { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-provider img { height: 24px; object-fit: contain; opacity: 0.7; filter: brightness(10); }

/* ===================== STICKY WIDGET ===================== */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--c-navy-dark) 0%, var(--c-navy) 100%);
  border-top: 2px solid var(--c-orange);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(13,64,113,0.4);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.sticky-widget.hidden { transform: translateY(100%); }
.sw-text { color: #fff; font-size: 0.9rem; font-weight: 500; }
.sw-text strong { color: var(--c-gold); }
.sw-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sw-close { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; padding: 4px; font-size: 1.2rem; line-height: 1; transition: var(--transition); }
.sw-close:hover { color: #fff; }

/* ===================== MOBILE NAV ===================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-navy-dark);
  z-index: 998;
  flex-direction: column;
  padding: 80px 24px 24px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav a svg { width: 20px; height: 20px; }
.mobile-nav-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.fade-in { animation: fadeInUp 0.5s ease forwards; }
.pulse-btn { animation: pulse 2.5s ease-in-out infinite; }

.jackpot-amount {
  background: linear-gradient(90deg, #f0c040, #ffda6e, #f0c040);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ===================== SECTION DIVIDER ===================== */
.section-divider { height: 2px; background: linear-gradient(90deg, transparent, var(--c-border), transparent); margin: 8px 0 28px; }

/* ===================== SLIDERS ===================== */
.slider-wrap { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.4s ease; }
.slider-track .bonus-card { flex: 0 0 100%; max-width: 100%; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-border); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--c-navy); transform: scale(1.3); }
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.slider-prev { left: 4px; }
.slider-next { right: 4px; }
.slider-prev:hover, .slider-next:hover { background: var(--c-navy); border-color: var(--c-navy); }
.slider-prev:hover svg, .slider-next:hover svg { stroke: #fff; }
.slider-prev svg, .slider-next svg { width: 18px; height: 18px; stroke: var(--c-navy); }

/* ===================== RESPONSIVE ===================== */
@media (min-width: 768px) {
  .slider-prev, .slider-next, .slider-dots { display: none; }
}
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .header-nav { display: none; }
  .header-actions .btn { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }
  .jackpot-ticker { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-banner { min-height: 320px; }
  .hero-title { font-size: 1.8rem; }
  .info-tiles { grid-template-columns: repeat(2, 1fr); }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .jackpots-grid, .reviews-grid, .bonuses-grid { grid-template-columns: 1fr; }
  .author-inner { flex-direction: column; align-items: center; text-align: center; }
  .author-socials, .article-dates, .author-meta { justify-content: center; }
  .sticky-widget .sw-text { display: none; }
  .bonus-card { margin-bottom: 0; }
  .toc-grid { grid-template-columns: 1fr; }
  .demo-actions { flex-direction: column; }
  .demo-actions .btn { width: 100%; }
}
@media (max-width: 479px) {
  .info-tiles { grid-template-columns: repeat(2, 1fr); }
  .hero-btns .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-btns { flex-direction: column; }
  .header-actions { gap: 5px; }
  .btn { padding: 9px 14px; font-size: 0.88rem; }
}

/* ============ WP DECOYS (never affect layout) ============ */
.elementor-invisible { display: none !important; }
.wp-block-query-no-results { visibility: hidden; height: 0; overflow: hidden; }
