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

:root {
  --clr-header: #45220c;
  --clr-header-dark: #321808;
  --clr-btn-gold: #f6be26;
  --clr-btn-green: #3ce638;
  --clr-btn-green-hover: #2ecb2a;
  --clr-btn-gold-hover: #d9a610;
  --clr-bg: #bca56d;
  --clr-bg-light: #cdb98a;
  --clr-bg-card: #f5edd8;
  --clr-text: #1e0e00;
  --clr-text-light: #fff8ee;
  --clr-accent: #f6be26;
  --clr-plus: #1a7a16;
  --clr-minus: #9b1a1a;
  --radius: 12px;
  --radius-sm: 7px;
  --shadow: 0 4px 24px rgba(69,34,12,0.18);
  --shadow-card: 0 2px 12px rgba(69,34,12,0.13);
  --font-heading: 'Luckiest Guy', cursive;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--clr-bg); }
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-btn-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-gold-hover); }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); color: var(--clr-header); line-height: 1.2; }
p { line-height: 1.65; margin-bottom: 0.75rem; }
ul,ol { padding-left: 1.4rem; }
li { line-height: 1.6; margin-bottom: 0.35rem; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.12s, box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--clr-btn-gold); color: #1e0e00; }
.btn-gold:hover { background: var(--clr-btn-gold-hover); color: #1e0e00; }
.btn-green { background: var(--clr-btn-green); color: #0a2800; }
.btn-green:hover { background: var(--clr-btn-green-hover); color: #0a2800; }
.btn-outline { background: transparent; border: 2px solid var(--clr-btn-gold); color: var(--clr-btn-gold); }
.btn-outline:hover { background: var(--clr-btn-gold); color: #1e0e00; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--clr-header);
  text-align: center;
  margin-bottom: 36px;
  text-shadow: 1px 2px 0 rgba(255,215,80,0.18);
}

.a8pz1-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.a8pz1-wave svg { display: block; width: 100%; }

.hdr-xq9 {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hdr-xq9-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.hdr-logo img { height: 60px; width: auto; }
.hdr-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.hdr-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-text-light);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 5px 9px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.hdr-nav a:hover { background: rgba(246,190,38,0.18); color: var(--clr-btn-gold); }
.hdr-nav svg { width: 16px; height: 16px; flex-shrink: 0; }
.hdr-btns { display: flex; align-items: center; gap: 8px; }
.hdr-btns .btn { padding: 9px 18px; font-size: 0.9rem; }

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

.mobile-nav {
  display: none;
  background: var(--clr-header-dark);
  padding: 12px 18px 18px;
  border-top: 1px solid rgba(246,190,38,0.2);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-light);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--clr-btn-gold); }
.mobile-nav svg { width: 17px; height: 17px; }
.mobile-nav-btns { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.mobile-nav-btns .btn { flex: 1; justify-content: center; min-width: 120px; }

.hero-xp4 {
  position: relative;
  min-height: 520px;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-xp4-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/megamoolah-hero.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.45;
}
.hero-xp4-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(69,34,12,0.92) 0%, rgba(69,34,12,0.55) 60%, rgba(69,34,12,0.18) 100%);
}
.hero-xp4-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.hero-xp4-badge {
  display: inline-block;
  background: var(--clr-btn-gold);
  color: #1e0e00;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-xp4 h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.5);
  line-height: 1.1;
}
.hero-xp4 h1 span { color: var(--clr-btn-gold); }
.hero-xp4-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-xp4-stats {
  display: flex;
  gap: 22px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  background: rgba(246,190,38,0.15);
  border: 1px solid rgba(246,190,38,0.35);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  text-align: center;
}
.hero-stat-val { font-family: var(--font-heading); font-size: 1.4rem; color: var(--clr-btn-gold); }
.hero-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-xp4-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-xp4-btns .btn { font-size: 1.05rem; padding: 13px 30px; }

.proscons-xb3 { background: transparent; }
.proscons-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.proscons-col {
  flex: 1 1 300px;
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
}
.proscons-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.proscons-col-title.plus { color: var(--clr-plus); }
.proscons-col-title.minus { color: var(--clr-minus); }
.proscons-col-title svg { width: 22px; height: 22px; }
.proscons-list { list-style: none; padding: 0; }
.proscons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(69,34,12,0.09);
  font-size: 0.95rem;
}
.proscons-list li:last-child { border-bottom: none; }
.proscons-icon { flex-shrink: 0; margin-top: 2px; }
.proscons-icon.plus svg { color: var(--clr-plus); }
.proscons-icon.minus svg { color: var(--clr-minus); }

.strategies-xk7 { background: rgba(69,34,12,0.08); border-radius: var(--radius); }
.strategies-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.strategy-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.strategy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.strategy-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.strategy-img img { width: 100%; height: 100%; object-fit: cover; }
.strategy-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.strategy-name { font-family: var(--font-heading); font-size: 1.15rem; color: var(--clr-header); margin-bottom: 8px; }
.strategy-desc { font-size: 0.9rem; color: #3d2208; flex: 1; margin-bottom: 14px; }
.strategy-card .btn { width: 100%; justify-content: center; }

.demo-xm2 { background: var(--clr-header); }
.demo-xm2 .section-title { color: var(--clr-btn-gold); }
.demo-wrapper {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  position: relative;
}
.demo-wrapper iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}
.demo-money-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0 4px;
}
.demo-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

.similar-xn5 { background: transparent; }
.similar-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.similar-card {
  flex: 1 1 280px;
  max-width: 340px;
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.similar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.similar-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: contain;
  background: var(--clr-header);
  padding: 6px;
  margin-bottom: 12px;
}
.similar-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--clr-header); margin-bottom: 6px; }
.similar-desc { font-size: 0.88rem; color: #3d2208; margin-bottom: 14px; flex: 1; }
.similar-btns { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; width: 100%; }
.similar-btns .btn { font-size: 0.82rem; padding: 8px 16px; flex: 1; justify-content: center; }

.review-xr8 { background: var(--clr-bg-card); border-radius: var(--radius); margin: 0 auto; padding: 36px 40px; box-shadow: var(--shadow-card); }
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(69,34,12,0.12);
}
.review-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-header);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.review-author-avatar svg { width: 32px; height: 32px; color: var(--clr-btn-gold); }
.review-author-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--clr-header); }
.review-author-bio { font-size: 0.83rem; color: #5a3c1a; }
.review-author-link { font-size: 0.82rem; color: var(--clr-btn-gold-hover); }
.review-content h2, .review-content h3, .review-content h4 { font-family: var(--font-heading); color: var(--clr-header); margin: 1.2rem 0 0.5rem; }
.review-content p { font-size: 0.97rem; line-height: 1.7; margin-bottom: 0.85rem; color: #2a1500; }
.review-content a { color: var(--clr-btn-gold-hover); text-decoration: underline; }
.review-content ul, .review-content ol { padding-left: 1.5rem; margin-bottom: 0.85rem; }
.review-content li { font-size: 0.97rem; line-height: 1.65; }
.review-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.93rem; }
.review-content th { background: var(--clr-header); color: var(--clr-text-light); padding: 10px 14px; text-align: left; }
.review-content td { padding: 9px 14px; border: 1px solid rgba(69,34,12,0.18); background: #fff; }
.review-content tr:nth-child(even) td { background: #fdf5e2; }
.review-content strong { color: var(--clr-header-dark); }
.review-content blockquote { border-left: 4px solid var(--clr-btn-gold); padding: 10px 18px; background: #fff8e7; border-radius: 0 8px 8px 0; margin: 1rem 0; font-style: italic; color: #3d2208; }
.review-content img { border-radius: 8px; margin: 1rem 0; }
.review-content hr { border: none; border-top: 2px solid rgba(69,34,12,0.1); margin: 1.5rem 0; }
.review-content h1 { font-size: 1.9rem; }
.review-content h2 { font-size: 1.55rem; }
.review-content h3 { font-size: 1.25rem; }

.faq-xf6 { background: rgba(69,34,12,0.05); border-radius: var(--radius); }
.faq-list { margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--clr-bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(69,34,12,0.09);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--clr-header);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(246,190,38,0.12); }
.faq-question.active { background: rgba(246,190,38,0.18); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.2s;
  padding: 0 20px;
}
.faq-answer.open { max-height: 600px; padding: 4px 20px 18px; }
.faq-answer p { font-size: 0.94rem; color: #2a1500; line-height: 1.68; margin: 0; }

.reviews-xv9 { background: transparent; }
.reviews-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.review-card {
  flex: 1 1 280px;
  max-width: 340px;
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-3px); }
.review-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-card-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--clr-header);
  color: var(--clr-btn-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.review-card-name { font-family: var(--font-heading); font-size: 1rem; color: var(--clr-header); }
.review-card-stars { color: var(--clr-btn-gold); font-size: 1rem; letter-spacing: 1px; }
.review-card-text { font-size: 0.91rem; color: #2a1500; line-height: 1.65; }

.review-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
}
.review-form-title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--clr-header); margin-bottom: 20px; text-align: center; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--clr-header); }
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid rgba(69,34,12,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--clr-text);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--clr-btn-gold); }
textarea.form-input { min-height: 110px; resize: vertical; }
.form-submit-msg {
  display: none;
  background: rgba(60,230,56,0.15);
  border: 1px solid var(--clr-btn-green);
  color: #0a3a00;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 14px;
}
.form-submit-msg.visible { display: block; }
.review-form-wrap .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 13px; }

.ftr-xs3 {
  background: var(--clr-header);
  color: var(--clr-text-light);
  padding: 50px 0 24px;
}
.ftr-xs3-inner { max-width: 1200px; margin: 0 auto; padding: 0 18px; }
.ftr-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(246,190,38,0.18);
  margin-bottom: 28px;
}
.ftr-col { flex: 1 1 180px; }
.ftr-logo { margin-bottom: 12px; }
.ftr-logo-link {display: block;width: fit-content;}
.ftr-logo img { height: 60px; width: auto; }
.ftr-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.65); max-width: 220px; line-height: 1.5; }
.ftr-heading { font-family: var(--font-heading); font-size: 1rem; color: var(--clr-btn-gold); margin-bottom: 12px; }
.ftr-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.ftr-links a { color: rgba(255,255,255,0.75); font-size: 0.87rem; transition: color var(--transition); }
.ftr-links a:hover { color: var(--clr-btn-gold); }
.ftr-email { color: var(--clr-btn-gold); font-size: 0.88rem; margin-top: 6px; word-break: break-all; }
.ftr-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.ftr-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.ftr-social a:hover { background: var(--clr-btn-gold); }
.ftr-social svg { width: 17px; height: 17px; color: #fff; }
.ftr-social a:hover svg { color: #1e0e00; }

.ftr-logos-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(246,190,38,0.1);
}
.ftr-logos-row img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; transition: opacity var(--transition); }
.ftr-logos-row img:hover { opacity: 1; }

.ftr-trust { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.trust-badge.age18 {
  background: var(--clr-btn-gold);
  color: #1e0e00;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: bold;
}
.ftr-au-flag { font-size: 1.4rem; display: flex; align-items: center; gap: 6px; }
.ftr-au-flag  img {height: 20px;width: auto;}
.ftr-bottom {
  text-align: center;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.ftr-bottom strong { color: rgba(255,255,255,0.75); }
.ftr-bottom a { color: rgba(246,190,38,0.75); }
.ftr-bottom a:hover { color: var(--clr-btn-gold); }

.bonus-widget-xw1 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--clr-header) 0%, #5c2d0e 100%);
  border-top: 2px solid var(--clr-btn-gold);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  animation: slideUp 0.5s 0.8s both;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.bonus-widget-xw1 .bonus-text {
  color: var(--clr-text-light);
  font-size: 0.95rem;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
}
.bonus-widget-xw1 .bonus-text strong { color: var(--clr-btn-gold); }
.bonus-widget-xw1 .btn { font-size: 0.95rem; padding: 9px 24px; }
.bonus-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}
.bonus-close:hover { color: #fff; }

.info-content-wrap { max-width: 820px; margin: 0 auto; background: var(--clr-bg-card); border-radius: var(--radius); padding: 36px 40px; box-shadow: var(--shadow-card); }
.info-content-wrap h1 { font-size: 2rem; margin-bottom: 18px; }
.info-content-wrap h2 { font-size: 1.45rem; margin: 1.4rem 0 0.5rem; }
.info-content-wrap p { font-size: 0.97rem; line-height: 1.7; margin-bottom: 0.85rem; color: #2a1500; }
.info-content-wrap ul { padding-left: 1.5rem; margin-bottom: 0.85rem; }
.info-content-wrap li { font-size: 0.97rem; line-height: 1.65; }
.info-content-wrap a { color: var(--clr-btn-gold-hover); text-decoration: underline; }
.info-content-wrap strong { color: var(--clr-header-dark); }

.xz91p-hidden { display: none; visibility: hidden; pointer-events: none; }
.xz91p-placeholder { height: 0; overflow: hidden; }
.wp-block-unsupported, .wp-block-legacy { position: absolute; clip: rect(0,0,0,0); }
.elementor-hidden-widget { visibility: hidden; }
.yoast-seo-meta-hidden { position: absolute; left: -9999px; }
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 28px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 28px; }

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

.game-info-table { width: 100%; border-collapse: collapse; margin: 0 auto 1.5rem; background: var(--clr-bg-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.game-info-table th, .game-info-table td { padding: 11px 18px; text-align: left; border-bottom: 1px solid rgba(69,34,12,0.1); font-size: 0.93rem; }
.game-info-table th { background: var(--clr-header); color: var(--clr-text-light); font-family: var(--font-body); font-weight: 600; width: 42%; }
.game-info-table tr:last-child th, .game-info-table tr:last-child td { border-bottom: none; }
.game-info-table td { color: #2a1500; }
@media (max-width: 1024px) {
.hdr-nav a {padding: 5px 7px;}
}
@media (max-width: 900px) {
  .hdr-nav { display: none; }
  .burger-btn { display: flex; }
  .hero-xp4-content { padding: 40px 0; }
  .demo-wrapper iframe { height: 380px; }
}
@media (max-width: 640px) {
  .hdr-xq9-inner { flex-wrap: nowrap; gap: 8px; }
  .hero-xp4 { min-height: 380px; }
  .hero-xp4 h1 { font-size: 1.8rem; }
  .review-xr8, .info-content-wrap { padding: 22px 16px; }
  .review-form-wrap { padding: 22px 16px; }
  .ftr-top { gap: 20px; }
  .demo-wrapper iframe { height: 280px; }
  .bonus-widget-xw1 { flex-direction: column; gap: 8px; padding: 10px 14px; }
  .bonus-close { top: 8px; transform: none; }
  .xr7k2-section { padding: 40px 0; }
  .strategies-grid, .similar-grid, .reviews-grid { flex-direction: column; align-items: center; }
  .strategy-card, .similar-card, .review-card { max-width: 100%; }
  .proscons-grid { flex-direction: column; }
  .ftr-top {flex-direction: column;}
}
@media (max-width: 420px) {
.hdr-btns .btn-green{display: none;}
}