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

:root {
  --clr-nav: #362871;
  --clr-nav-dark: #271e55;
  --clr-btn-orange: #e76213;
  --clr-btn-orange-h: #c95510;
  --clr-btn-green: #3b6b1b;
  --clr-btn-green-h: #2e5314;
  --clr-bg: #bc1377;
  --clr-bg-dark: #9e0f64;
  --clr-text-light: #ffffff;
  --clr-text-muted: #f3d0e8;
  --clr-gold: #f5c518;
  --clr-gold-light: #fde98a;
  --clr-block-bg: rgba(54, 40, 113, 0.92);
  --clr-block-bg2: rgba(20, 12, 55, 0.88);
  --clr-border: rgba(245, 197, 24, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 6px 32px rgba(0,0,0,0.38);
  --shadow-gold: 0 0 18px rgba(245,197,24,0.28);
  --font: 'Oswald', sans-serif;
  --transition: 0.26s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; background: var(--clr-bg); }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text-light);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-light); }
ul { list-style: none; }

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

.box {
  background: var(--clr-block-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.box2 {
  background: var(--clr-block-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.section-title svg { flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-play {
  background: linear-gradient(135deg, var(--clr-btn-green), #4e8f24);
  color: #fff;
  box-shadow: 0 4px 18px rgba(59,107,27,0.45);
}
.btn-play:hover {
  background: linear-gradient(135deg, var(--clr-btn-green-h), var(--clr-btn-green));
  box-shadow: 0 6px 24px rgba(59,107,27,0.6);
  color: #fff;
  transform: translateY(-2px);
}

.btn-bonus {
  background: linear-gradient(135deg, var(--clr-btn-orange), #f07a30);
  color: #fff;
  box-shadow: 0 4px 18px rgba(231,98,19,0.45);
}
.btn-bonus:hover {
  background: linear-gradient(135deg, var(--clr-btn-orange-h), var(--clr-btn-orange));
  box-shadow: 0 6px 24px rgba(231,98,19,0.6);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
  padding: 9px 22px;
}
.btn-outline:hover {
  background: var(--clr-gold);
  color: #1a0a2e;
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
#xh9k3-header {
  background: var(--clr-nav);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 18px rgba(0,0,0,0.5);
  border-bottom: 2px solid var(--clr-gold);
}

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

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--clr-gold);
  background: rgba(245,197,24,0.1);
}

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

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

.header-nav-buttons {
  display: none;
}

.jackpot-ticker {
  background: rgba(245,197,24,0.15);
  border: 1px solid var(--clr-gold);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulseGold 2.4s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 6px rgba(245,197,24,0.3); }
  50% { box-shadow: 0 0 18px rgba(245,197,24,0.7); }
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
#xh9k3-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 28px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/wheres-the-gold-banner.png');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,10,55,0.88) 0%, rgba(188,19,119,0.55) 60%, rgba(22,10,55,0.25) 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,197,24,0.18);
  border: 1px solid var(--clr-gold);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

.hero-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 480px;
}

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

.stars { color: var(--clr-gold); font-size: 1.3rem; letter-spacing: 2px; }

.hero-rating-text {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
}
.hero-rating-text strong { color: #fff; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== CONTENT SECTION ===== */
.content-section { padding: 10px 0 32px; }

/* ===== TABLE OF CONTENTS ===== */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,197,24,0.07);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
}

.toc-item:hover {
  background: rgba(245,197,24,0.18);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.toc-num {
  background: var(--clr-gold);
  color: #1a0a2e;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== DEMO GAME BLOCK ===== */
.demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--clr-border);
  background: #0d0820;
  margin-bottom: 16px;
}

.demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(135deg, #0d0820 0%, #1a0a2e 100%);
  cursor: pointer;
}

.demo-placeholder-icon {
  width: 80px;
  height: 80px;
  background: rgba(245,197,24,0.12);
  border: 2px solid var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseGold 2.4s ease-in-out infinite;
}

.demo-placeholder-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}

.demo-money-btn { margin-top: 8px; text-align: center; }

/* ===== GAME INFO TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.info-table th,
.info-table td {
  padding: 11px 14px;
  border: 1px solid var(--clr-border);
  text-align: left;
  line-height: 1.5;
}

.info-table th {
  background: rgba(245,197,24,0.12);
  color: var(--clr-gold);
  font-weight: 600;
  white-space: nowrap;
  width: 42%;
}

.info-table td { color: var(--clr-text-muted); }
.info-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

.table-scroll { overflow-x: auto; width: 100%; }

/* ===== MOBILE APP BLOCK ===== */
.app-block-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.phone-mockup {
  flex-shrink: 0;
  width: 180px;
  position: relative;
}

.phone-frame {
  width: 180px;
  height: 360px;
  border: 5px solid var(--clr-nav);
  border-radius: 32px;
  background: #0d0820;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(245,197,24,0.3);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 6px;
  background: var(--clr-nav);
  border-radius: 3px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-info { flex: 1; min-width: 240px; }

.app-download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  color: var(--clr-text-light);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}

.download-btn:hover {
  background: rgba(245,197,24,0.15);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.download-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ===== WINNERS BLOCK ===== */
.winners-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.winners-table th {
  background: rgba(245,197,24,0.15);
  color: var(--clr-gold);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--clr-gold);
  white-space: nowrap;
}

.winners-table td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--clr-text-muted);
}

.winners-table tr:hover td { background: rgba(245,197,24,0.05); color: #fff; }

.winner-rank {
  font-weight: 700;
  color: var(--clr-gold);
  width: 40px;
  text-align: center;
}

.winner-rank.rank-1 { color: #ffd700; }
.winner-rank.rank-2 { color: #c0c0c0; }
.winner-rank.rank-3 { color: #cd7f32; }

.winner-amount { color: #6dff8a; font-weight: 600; }

.winners-live-dot {
  width: 8px; height: 8px;
  background: #6dff8a;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.4s infinite;
  margin-right: 6px;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ===== REVIEW CONTENT BLOCK ===== */
.review-content { line-height: 1.7; }

.review-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 26px 0 12px;
  text-transform: uppercase;
}

.review-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-text-light);
  margin: 20px 0 10px;
}

.review-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  margin: 16px 0 8px;
}

.review-content p {
  color: var(--clr-text-muted);
  margin-bottom: 14px;
  font-size: 1rem;
}

.review-content ul,
.review-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.review-content ul { list-style: disc; }
.review-content ol { list-style: decimal; }

.review-content li {
  color: var(--clr-text-muted);
  margin-bottom: 6px;
  font-size: 1rem;
}

.review-content a {
  color: var(--clr-btn-orange);
  text-decoration: underline;
}

.review-content a:hover { color: var(--clr-gold); }

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px auto;
}

.review-content table th,
.review-content table td {
  border: 1px solid var(--clr-border);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.95rem;
}

.review-content table th {
  background: rgba(245,197,24,0.12);
  color: var(--clr-gold);
  font-weight: 600;
}

.review-content table td { color: var(--clr-text-muted); }

.review-content strong { color: #fff; }
.review-content em { color: var(--clr-gold-light); font-style: italic; }

.review-content blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 10px 18px;
  margin: 18px 0;
  background: rgba(245,197,24,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}

.review-content img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 14px auto;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--clr-gold); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  background: rgba(245,197,24,0.05);
  transition: background var(--transition);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-light);
  gap: 12px;
}

.faq-question:hover { background: rgba(245,197,24,0.1); color: var(--clr-gold); }

.faq-item.open .faq-question { background: rgba(245,197,24,0.12); color: var(--clr-gold); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--clr-gold);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 16px 20px;
  color: var(--clr-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  border-top: 1px solid var(--clr-border);
  background: rgba(0,0,0,0.18);
}

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

/* ===== AUTHOR BLOCK ===== */
.author-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.author-photo-wrap { flex-shrink: 0; }

.author-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-gold);
  box-shadow: var(--shadow-gold);
}

.author-details { flex: 1; min-width: 220px; }

.author-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.author-title {
  font-size: 0.9rem;
  color: var(--clr-btn-orange);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.author-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.author-meta-item svg { width: 15px; height: 15px; color: var(--clr-gold); flex-shrink: 0; }

.author-bio {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.author-links { display: flex; gap: 10px; flex-wrap: wrap; }

.author-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.author-link:hover { background: rgba(245,197,24,0.15); border-color: var(--clr-gold); color: var(--clr-gold); }
.author-link svg { width: 16px; height: 16px; }

.article-dates {
  margin-top: 12px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.article-date {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-date svg { width: 14px; height: 14px; color: var(--clr-gold); }

/* ===== FOOTER ===== */
#xh9k3-footer {
  background: var(--clr-nav);
  border-top: 2px solid var(--clr-gold);
  padding: 40px 0 24px;
  margin-top: 32px;
}

.footer-top {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: space-between;
}

.footer-logo img { height: 44px; width: auto; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-nav a {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--clr-gold); }

.footer-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-logo-item {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.8) grayscale(0.3);
  transition: filter var(--transition);
  opacity: 0.85;
}

.footer-logo-item:hover { filter: brightness(1) grayscale(0); opacity: 1; }

.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-light);
  transition: border-color var(--transition), color var(--transition);
}

.provider-badge:hover { border-color: var(--clr-gold); color: var(--clr-gold); }

.payment-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.social-link:hover { background: var(--clr-gold); border-color: var(--clr-gold); color: #1a0a2e; }
.social-link svg { width: 17px; height: 17px; }

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: border-color var(--transition), color var(--transition);
}

.trust-badge:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.trust-badge svg { width: 14px; height: 14px; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 18px 0;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(243,208,232,0.5);
  line-height: 1.7;
  text-align: center;
}

.footer-legal a { color: rgba(243,208,232,0.7); text-decoration: underline; }
.footer-legal a:hover { color: var(--clr-gold); }

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-top: 12px;
}

.au-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-top: 8px;
}

/* ===== STICKY WIDGET ===== */
#xh9k3-widget {
  position: fixed;
  bottom: 22px;
  right: 20px;
  z-index: 997;
  animation: slideInWidget 0.6s ease-out both;
}

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

.widget-inner {
  background: var(--clr-nav);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  min-width: 160px;
  text-align: center;
  position: relative;
}

.widget-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 2px;
  transition: color var(--transition);
}

.widget-close:hover { color: var(--clr-gold); }

.widget-logo { height: 36px; width: auto; object-fit: contain; }

.widget-bonus {
  font-size: 0.78rem;
  color: var(--clr-gold);
  font-weight: 600;
  line-height: 1.35;
}

/* ===== PROS/CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pros, .cons {
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.pros { background: rgba(109,255,138,0.07); border: 1px solid rgba(109,255,138,0.25); }
.cons { background: rgba(255,80,80,0.07); border: 1px solid rgba(255,80,80,0.25); }

.pros-title { color: #6dff8a; font-weight: 700; margin-bottom: 10px; font-size: 0.95rem; text-transform: uppercase; }
.cons-title { color: #ff7070; font-weight: 700; margin-bottom: 10px; font-size: 0.95rem; text-transform: uppercase; }

.pros li, .cons li {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 7px;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pros li::before { content: '+'; position: absolute; left: 0; color: #6dff8a; font-weight: 700; }
.cons li::before { content: '–'; position: absolute; left: 0; color: #ff7070; font-weight: 700; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  padding: 12px 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ===== ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ===== WORDPRESS DECOYS ===== */
.wp-block-group { display: block; }
.wp-block-columns { display: flex; flex-wrap: wrap; }
.has-text-align-center { text-align: center; }
.wp-caption { max-width: 100%; margin: 0 auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.aligncenter { margin: 0 auto; display: block; }
.wp-image-generic { display: block; }
.entry-content { display: block; }
.post-template-default { display: block; }
.elementor-section { display: block; }
.e-con-inner { display: block; }
.elementor-widget-wrap { display: flex; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-nav-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px;
    overflow-y: auto;
    z-index: 998;
    gap: 4px;
  }

  .header-nav.active { display: flex; }

  .header-nav a {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
  }

  .header-buttons-btn { display: none; }

  .header-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .header-nav-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .burger-btn { display: flex; }

  .jackpot-ticker { display: none; }

  .hero-content { padding: 32px 0; }

  .pros-cons { grid-template-columns: 1fr; }

  .app-block-inner { flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
  .box { padding: 18px 14px; }
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.3rem; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .author-inner { flex-direction: column; align-items: center; text-align: center; }
  .author-links, .author-meta, .article-dates { justify-content: center; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .header-buttons .btn { padding: 8px 12px; font-size: 0.82rem; }
  #xh9k3-widget { bottom: 12px; right: 10px; }
}

/* ===== INFO PAGE ===== */
.info-page-content {
  max-width: 860px;
  margin: 0 auto;
}

.info-page-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 24px 0 10px;
  text-transform: uppercase;
}

.info-page-content p {
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.info-page-content ul, .info-page-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.info-page-content ul { list-style: disc; }
.info-page-content ol { list-style: decimal; }
.info-page-content li { color: var(--clr-text-muted); margin-bottom: 6px; line-height: 1.6; }
.info-page-content a { color: var(--clr-btn-orange); text-decoration: underline; }
.info-page-content a:hover { color: var(--clr-gold); }
.info-page-content strong { color: #fff; }
